
<!--// Hide from old browsers
   function PopupFile(file, iX, iY, iWidth, iHeight, time)
    {
      iWidth  -= 10; // Subtract Normal border widths.
      iHeight -= 20; // Subtract Normal caption bar height.
      iX = (screen.width  - iWidth)  / 2;
      iY = (screen.height - iHeight) / 2;
      if(iX < 0) { iX = 0;  };
      if(iY < 0) { iY = 0; };
      style="left=" +iX+ ",top=" +iY+ ",width=" +iWidth+ ",height=" +iHeight+ ",toolbar=0,resizable=0,menubar=0,scrollbars=1,alwaysRaised=1,copyhistory=0";
      NewWindow = window.open(file, 'RunWindow', style);
     };
//-->
