function cssSelector() {



	var mBasePath = "";



	if (navigator.appName == "Netscape") {

		document.write('<link rel="stylesheet" href="' + mBasePath + '/css/netscape.css" type="text/css" media="screen" />\n');

	}

}



cssSelector();



function MM_reloadPage(init) {  //reloads the window if Nav4 resized

	if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {

		document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }

	} else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) 

		location.reload();

}



MM_reloadPage(true);


		// Clear's the value of a text field if it's current value matches strDefaultValue
		// for use on search text fields as such:
		// onfocus="clearValue(this,'Enter text here');"
		function clearValue(objTextField,strDefaultValue){
			if(objTextField.value.toLowerCase() == strDefaultValue.toLowerCase())
				objTextField.value = "";
			return true;
		}