﻿// JScript File
function HelpWindow(url,w, h) 
{
   if (document.all)var xMax = screen.width, yMax = screen.height;
   else
   {  if (document.layers) var xMax = window.outerWidth, yMax = window.outerHeight;
       else                 var xMax = 640, yMax=480;
   }
   if (w>xMax) w = xMax * .9;
   if (h>yMax) h = yMax * .9;
   var l = (xMax - w)/2, t = (yMax-h)/2;
   handle_PUH = window.open(url,"Help",'screenX='+l+',left='+l+',screenY='+t+',top='+t+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,fullscreen=0,width='+w+',height='+h);
}
