var windowLogon = null;

var browser= new String ("unknown");
browserversion = new String(parseFloat(navigator.appVersion))
if (navigator.appName == "Microsoft Internet Explorer") browser="MSIE";
if (navigator.appName == "Netscape") browser="Netscape";
popupResize=1;
newWindow = null;

window.name = null;
	
function openEditWindow(purl,pheight,pwidth,scroll) {
	window.name = 'winMain';
	newWindow = window.open (purl,'_popup','"alwaysLowered=0,alwaysRaised=yes,dependent=no,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars='+scroll+',status=1,titlebar=1,toolbar=0,z-lock=0,height='+pheight+',width='+pwidth+'"');
	// only on Netscape and MSIE v4 and up
	if (!(browser=="MSIE" && browserversion < 4)) {
		setTimeout("newWindow.focus()", 250);
	}
}

	
function popupNotify(strProductID) {
	openEditWindow('customerNotify.asp?ProductID=' + strProductID,170,350,0);
}
