 <!--top menu nav links-->
 <!-- Hide from older browsers
		
		if (document.getElementById) {
			stdBrowser = true
		}
		else {
			stdBrowser = false
		}

		function toggleMenu(currElem,nextPos) {
			if (stdBrowser) {
				menuObj = document.getElementById(currElem).style
			}
			else {
				menuObj = eval("document." + currElem)
			}
			if (toggleMenu.arguments.length == 1) {
				if (parseInt(menuObj.top) == -5) {
					nextPos = -90
				}
				else {
					nextPos = -5
				}
			}
			if (stdBrowser) {
				menuObj.top = nextPos + "px"
			}
			else {
				menuObj.top = nextPos
			}
		}

		// End hiding -->

 <!--Print window code-->
 
<!--//
function printWindow(){
browserVersion = parseInt(navigator.appVersion)
if (browserVersion >= 4) window.print()
}

// -->
