//Reloads the window on resize if the user is using Netscape 4function NetscapeReload(nav) {    if (nav == true) with (navigator) {  	if ((appName == "Netscape") && (parseInt(appVersion) == 4)) {    		document.pageWidth = innerWidth;     		document.pageHieght = innerHeight;     		onresize = NetscapeReload;     	}   }  else if (innerWidth != document.pageWidth || innerHeight != document.pageHieght) location.reload();}NetscapeReload(true);//Function to open pop up windowfunction openWin(theURL,winName,features) {  	window.open(theURL,winName,features);}//Navigation rolloverfunction SubNavIn(menItem) {	menItem.style.backgroundColor='#CECECE';	menItem.style.cursor="hand";}function SubNavOut(menItem) {	menItem.style.backgroundColor='#E5E5E5';	menItem.style.cursor="pointer";}function NavIn(menItem) {	menItem.style.backgroundColor='#D8D8D8';	menItem.style.cursor="hand";}function NavOut(menItem) {	menItem.style.backgroundColor='#E5E5E5';	menItem.style.cursor="pointer";}