
function makeWin(windowLoc,w,h) 
{
     if (navigator.appName == "Microsoft Internet Explorer") { w=w+20; h=h+20;}
     
     if (parseInt(navigator.appVersion) < 4)  
	{ 
	  w=w+20; 
	  h=h+20; 
	}
	
     newWindow = window.open(windowLoc,"PopupWindow","dependent=yes,toolbar=no,location=no,status=yes,scrollbars=yes,resizable=yes,width="+w+",height="+h);
	

    if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) < 3) 
	window.open(windowLoc,"PopupWindow","status=YES,scrollbars=yes,resizable=Yes,width="+w+",height="+h);


    if (parseInt(navigator.appVersion) >= 3 && navigator.appName == "Netscape")
	newWindow.focus();

}
