<!--// *****************************************************************************************************************// this code determines whether the clients browser is netscape or ie// *****************************************************************************************************************ns4 = (document.layers)? true:falseie = (document.all)? true:falsens6 = (!document.all && document.getElementById) ? true : false;mac = (navigator.userAgent.toLowerCase().indexOf("mac")!=-1)? true:falsefunction handleResize () {	location.reload();	return false;}if ((mac) & (ns4)) {	window.captureEvents(Event.RESIZE);	window.onresize = handleResize;}// *****************************************************************************************************************// this code launches the pop up windows// simply call this function from within the href tag, i.e. <a href="javascript:launchPopup();">my pop up window</a>// *****************************************************************************************************************function launchPopup(url){	if ((ie) || (ns6)){		myWindow1 = window.open(url,'printablePopup','width=600,height=480,scrollbars=yes');	} else if (ns4){		myWindow1 = window.open(url,'printablePopup','width=616,height=480,scrollbars=yes');	} else if (mac){		myWindow1 = window.open(url,'printablePopup','width=616,height=480,toolbar=yes,scrollbars=yes');	}}function launchPopupRaceMap(){	if (ns6){		myWindow2 = window.open('popUpRaceMap.html','raceMap1','width=815,height=262,scrollbars=yes');	} else if ((ie) & (!mac)){		myWindow2 = window.open('popUpRaceMap.html','raceMap1','width=815,height=262,scrollbars=yes');	} else if ((ie) & (mac)){		myWindow2 = window.open('popUpRaceMap.html','raceMap2','width=800,height=262,scrollbars=yes');	} else if (ns4){		myWindow2 = window.open('popUpRaceMap.html','raceMap3','width=800,height=262,scrollbars=yes');	}}function launchPopupRaceMapPrintable(){	if (ns6){		myWindow2 = window.open('popUpRaceMapPrintable.html','raceMap1','width=815,height=362,scrollbars=yes');	} else if ((ie) & (!mac)){		myWindow2 = window.open('popUpRaceMapPrintable.html','raceMap1','width=815,height=362,scrollbars=yes');	} else if (ns4){		myWindow2 = window.open('popUpRaceMapPrintable.html','raceMap3','width=800,height=362,scrollbars=yes');	} else if (mac){		myWindow2 = window.open('popUpRaceMapPrintable.html','raceMap3','width=800,height=362,toolbar=yes,scrollbars=yes');	}}	function launchPopupStartMap(){	if (ns6){		myWindow3 = window.open('popUpStartMap.html','startMap','width=659,height=548,scrollbars=no');	} else if ((ie) & (!mac)){		myWindow3 = window.open('popUpStartMap.html','startMap','width=659,height=548,scrollbars=no');	} else if (ns4){		myWindow3 = window.open('popUpStartMap.html','startMap','width=659,height=548,scrollbars=no');	} else if (mac){		myWindow3 = window.open('popUpStartMap.html','startMap','width=659,height=588,scrollbars=no,toolbar=yes');	}}			function launchPhoto(url){		myWindow4 = window.open(url,'photos','width=260,height=260,scrollbars=no');	}			//-->
