if (document.all)    {n=0;ie=1;fShow="visible";fHide="hidden";}
if (document.layers) {n=1;ie=0;fShow="show";   fHide="hide";}

function smallWin(page,h,w,WinName) {
if (WinName == null) 
 { WinName = "new";};
parm = "height=" + h + ",width=" + w + ",toolbar=no,menubar=yes,location=no,scrollbars=no,resizable=yes,screenY=200,screenX=100 ";
OpenWin = this.open(page,WinName,parm);
}

function bigWin(page,WinName,Height,Width) {

if (WinName == null) 
 { WinName = "new";};

if (Height == null)
 {Height = 400;};

if (Width == null)
 {Width = 650;};

parm ="height=" + Height + ",width=" + Width
+ ",toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes";

OpenWin = this.open(page,WinName,parm);
}
