Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
<HTML>
<HEAD>
 <TITLE>Fit the Pic Script</TITLE>
<!--
 <script language='javascript'>
  var Popper = {} ;
  alert("[Popper.html::main()] window.location.href: "+window.location.href) ;
  Popper.arrTemp = window.location.href.split("?");
  Popper.picUrl  = (Popper.arrTemp.length>0)?Popper.arrTemp[1]:"";
  Popper.NS	 = (navigator.appName=="Netscape")?true:false;

//  alert("[Popper.html::main()] PicUrl: "+Popper.picUrl) ;

  Popper.FitPic = function() 
  {
   var iWidth  = (Popper.NS)?window.innerWidth:document.body.clientWidth;
   var iHeight = (Popper.NS)?window.innerHeight:document.body.clientHeight;
   iWidth      = document.images[0].width  - iWidth;
   iHeight     = document.images[0].height - iHeight;
   window.resizeBy(iWidth, iHeight);
   window.focus();
  };
 </script>
-->
</HEAD>
<BODY bgcolor     ="#414141" 
      topmargin   ="0"  
      marginheight="0" 
      leftmargin  ="0" 
      marginwidth ="0">
<!--
 <script language='javascript'>
  document.write( "<img src='" + Popper.picUrl + "' border=0>" );
 </script>
-->
<!--   <img src="../../TrackerCommon/test/images/loading.gif" border="0"> -->
   <img src="images/loading.gif" border="0"> 
</BODY>
</HTML>