var browser = navigator.appName;
var version = parseFloat(navigator.appVersion);


if (browser == "Netscape" && version >= 4) {
	window.moveTo(0,0)
	window.innerWidth = 575
	window.innerHeight = 510
}




//Used by the pop-up menu in the footer of FESSM pages
function change(y) {	
	var theURL = document.forms[0].elements[0].options[document.forms[0].elements[0].selectedIndex].value
	
	//This allows the navigational bar to work locally and on the server
	if (location.protocol.indexOf("file:") == -1) {
		var x = "http://www.edc.org/CCT/CSSN/"
	}
	else {
		var x = "file:///EDC-CCT.PROJECT_RELATED/CSSN/website/"
	}
	
	window.location = x + theURL + y + ".htm"
}




//Used by the pop-up menu in the footer of FESSM pages
function deselect(x) {
	var test = x.options[x.selectedIndex].value
	if (test == "---") {
		document.forms[0].reset()
	}
}

