//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 NavIn(menItem) {
	menItem.style.borderColor='#999999'; 
	menItem.style.backgroundColor='#aCCCCC';
}

function NavOut(menItem) {
	menItem.style.borderColor='#E7E7E7'; 
	menItem.style.backgroundColor='#E7E7E7';
}

function NavCat(menItem) {
	menItem.style.borderColor='#FFFFFF'; 
	menItem.style.backgroundColor='#FFFFFF';
}