<!--
  var   imgObj;   
  function   checkImg(theURL,winName){   
  if   (typeof(imgObj)   ==   "object"){   
  if   ((imgObj.width   !=   0)   &&   (imgObj.height   !=   0))    
  OpenFullSizeWindow(theURL,winName,   ",width="   +   (imgObj.width+20)   +   ",height="   +   (imgObj.height+30));   
  else     
  setTimeout("checkImg('"   +   theURL   +   "','"   +   winName   +   "')",   100)   
  }   
  }       
  function   OpenFullSizeWindow(theURL,winName,features)   {   
  var   aNewWin,   sBaseCmd;     
  sBaseCmd   =   "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,";      
  if   (features   ==   null   ||   features   ==   ""){   
  imgObj   =   new   Image();   
  imgObj.src   =   theURL;      
  checkImg(theURL,   winName)   
  }   
  else{    
  aNewWin=window.open("",winName,   sBaseCmd   +   features);
  aNewWin.document.write("<body");
  aNewWin.document.write(" onmousedown='return false' oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onbeforecopy='return false'>");
  aNewWin.document.write("<img src='"+theURL+"'>");
  aNewWin.document.write("</body>");
  aNewWin.focus(); 
  }   
  } 
//-->