// Function to open any content in a popup window

function popupWin(file,width,height) 
{
	if (navigator.appName == "Microsoft Internet Explorer") { width=width+20; height=height+20;}

	if (parseInt(navigator.appVersion) < 4) 
	{ 
		width=width+20; 
		height=height+20; 
	}

	newWindow = window.open(file,"PopupWindow","dependent=yes,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no,width="+width+",height="+height);
	if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) < 3) 
window.open(windowLoc,"PopupWindow","status=no,scrollbars=yes,resizable=no,width="+width+",height="+height);


	if (parseInt(navigator.appVersion) >= 3 && navigator.appName == "Netscape")
	newWindow.focus();

}


/* External Pop-up Window*/

function Popup_ext(file,width,height,left,top)
{
        if (navigator.appName == "Microsoft Internet Explorer") { width=width+0; height=height+0;}
 		if (parseInt(navigator.appVersion) < 4){width=width+0;height=height+0;}
		newWindow = window.open(file,"PopupWindow","dependent=yes,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no,width="+width+",height="+height+",left="+left+",top="+top);
		if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) < 3)
	window.open(windowLoc,"PopupWindow","status=no,scrollbars=yes,resizable=no,width="+width+",height="+height+",left="+left+",top="+top);
    	if (parseInt(navigator.appVersion) >= 3 && navigator.appName == "Netscape")
        newWindow.focus();
}
