<!--

function clearTextField( fname )
{
   fname.value = ''; 
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function imgfix(i)
{
   var h = i.height;
   var w = i.width;
   //   alert(i.src + "\n" + h + "x" + w);
   if ( h==0 || w==0 )
   {
       var cmd = "imgfix( document.getElementById('" + i.id + "') )"
       // alert( cmd );
       setTimeout( cmd, 500 );
       return;
   }
   if ( h > 100 )
   {
       w = parseInt( w * 100 / h );
       h = 100;
   }
   if ( w > 80 )
   {
       h = parseInt( h * 80 / w );
       w = 80;
   }
   i.height = h;
   i.width = w;
   i.style.visibility = "visible";
}

//-->