function OpenPopUp(StaticPage,dow,WindowWidth,WindowHeight) {
   scott=window.open(StaticPage,'desc','toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=no,width='+WindowWidth+',height='+WindowHeight)
   scott.focus()
}

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if (browserVer >= 3) version = "n3";
else version = "n2";
if (version == "n3") {
	home_dn = new Image;	 		home_dn.src = "images/nav/home-dn.gif";
	home_up = new Image;	 		home_up.src = "images/nav/home-up.gif";
	overview_dn = new Image;	 	overview_dn.src = "images/nav/overview-dn.gif";
	overview_up = new Image;	 	overview_up.src = "images/nav/overview-up.gif";
	solutions_dn = new Image;	 	solutions_dn.src = "images/nav/solutions-dn.gif";
	solutions_up = new Image;	 	solutions_up.src = "images/nav/solutions-up.gif";
	customers_dn = new Image;	 	customers_dn.src = "images/nav/customers-dn.gif";
	customers_up = new Image;	 	customers_up.src = "images/nav/customers-up.gif";
	contact_dn = new Image;	 		contact_dn.src = "images/nav/contact-dn.gif";
	contact_up = new Image;	 		contact_up.src = "images/nav/contact-up.gif";
}

function flip (imageID,objectName) {
	if (version == "n3") {document.images[imageID].src = eval(objectName + ".src");}
}

