<!-- hide

var timeID
var versionNo = parseInt(navigator.appVersion)
 
if(versionNo > 3) {
	// WE HAVE A WINNER
	
	// OPENS SELECTED MENU
	function startIt(x,y) {
		clearTimeout(timeID)  //KILLS KILL
		var showBox = "box" + x
		var fromTop = y
		if(document.layers){var isNS4 = true;}
		else if(document.all && !document.getElementById){var isIE4 = true;}
		else if(document.all && document.getElementById){var isIE5 = true;}
		else if(!document.all && document.getElementById){var isNS6 = true;}

		//-- 6 is the number of menus
		for (var i=1; i <= 8; i++) {

		var thisBox = "box" + i

		
		// IF NETSCAPE 4
		if(isNS4) {
			if(thisBox != showBox) {
				nsObject = eval("document.layers[\"" + thisBox + "\"]")
				nsObject.visibility = 'hide'
				}
			else {
				nsObject = eval("document.layers[\"" + showBox + "\"]")
				nsObject.visibility = 'show'
				nsObject.top = fromTop
				nsObject.left = 134
				}  
			}
		
		// IF INTERNET EXPLORER
		else if(isIE4 || isIE5) {
			if(thisBox != showBox) {
				ieObject = eval("document.all." + thisBox)
				if (ieObject.style)
					ieObject.style.visibility = 'hidden';
				
				}
			else {
				ieObject = eval("document.all." + showBox)
				if (ieObject.style)
					{
						ieObject.style.visibility = 'visible'
						ieObject.style.pixelTop = fromTop
						ieObject.style.pixelLeft = 134
				  }
				}
			}
		
		// IF NETSCAPE 6
		else if(isNS6) {
			if(thisBox != showBox) {
				nsObject = eval("document.getElementById('" + thisBox + "').style")
				nsObject.visibility = 'hidden'
				}
			else {
				nsObject = eval("document.getElementById('" + showBox + "').style")
				nsObject.visibility = 'visible'
				nsObject.top = fromTop
				nsObject.left = 134
				}
			}
		}
		
		// FINALLY, KILLS MENU IF NO FOCUS
		timeID = setTimeout("stopIt()", "3000")
	}
	
	// KEEPS MENU ALIVE
	function live() {
		clearTimeout(timeID)
		}
		
	
	
	// STARTS TO KILL MENU
	function die() {
		timeID = setTimeout("stopIt()", "1000")
		}
	
	
	// THIS FUNCTION KILLS ALL MENUS
	function stopIt() {
		if(document.layers){var isNS4 = true;}
		else if(document.all && !document.getElementById){var isIE4 = true;}
		else if(document.all && document.getElementById){var isIE5 = true;}
		else if(!document.all && document.getElementById){var isNS6 = true;}
		
		//-- 6 is the number of menus
		for (var i=1; i <= 8; i++) {
			if(isNS4) {
				nsObject = eval("document.layers[\"box" + i + "\"]")
				nsObject.visibility = 'hide'
			}
			else if(isIE4 || isIE5) {	
				ieObject = eval("document.all.box" + i)
				if (ieObject.style)
					ieObject.style.visibility = 'hidden';
			}
			else if (isNS6) {
				nsObject = eval("document.getElementById('box" + i + "').style")
				nsObject.visibility = 'hidden'
			}
		}
	}
}

function goSection(){
	
	var myPage = document.topics.section.options[document.topics.section.selectedIndex].value
	document.location = myPage
	
	}
	

function searchMsg() {
	
	var message = "<html><head><title>Untitled</title></head><body><p style='font-family: arial, helvetica; font-size: 12px'><b>Search Available March 31</b><br><br>Our new site just went live on February 26 and Google has not yet indexed it.</body></html>"

	var myWin = window.open('','jav','width=300,height=200,resizable=no');
	myWin.document.write(message)
	myWin.document.close()
	}

// -->

