var popUpWin=null;


function PopUpWinImg(imgname,w,h)
{
 w+=24; h+=24;
 if (popUpWin && !popUpWin.closed) popUpWin.close();
 winFeatures="width="+w+",height="+h+",toolbar=no,location=no,"+
             "directories=no,status=no,menubar=no,resizable=yes,scrollbars=no";
 popUpWin = window.open(imgname, "ImageWindow", winFeatures);
 if (!popUpWin.opener) popUpWin.opener = self;
}


function PopUpWinHTM(htmname,w,h)
{
 if (popUpWin && !popUpWin.closed) popUpWin.close();
 winFeatures="width="+w+",height="+h+",toolbar=no,location=no,"+
             "directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes";
 popUpWin = window.open(htmname, "SecondWindow", winFeatures);
 if (!popUpWin.opener) popUpWin.opener = self;
}

