<!--
/*function for checking if browser is netscape and, if so, redirect to netscape version of page*/
function checkForNetscape( sNsUrl ) {
	if( navigator.appName == "Netscape" ){
		document.location.href = sNsUrl;
	}
}
//-->