//
// 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();

}

