		function ShowMenu(x)
			{
				document.getElementById(x).style.background='#01661E';
				if(document.getElementById('Sub'+x))
				document.getElementById('Sub'+x).style.visibility='visible';
			}
			
		function HideMenu(x)
			{
				document.getElementById(x).style.background='#F1AF34'
				if(document.getElementById('Sub'+x))
				document.getElementById('Sub'+x).style.visibility='hidden';
			}
			
		function SIOver(x)
			{x.style.background='#049033'}
			
		function SIOut(x)
			{x.style.background='#00B03B'}
		
	//-------------
	
		function PopUp(URL,PopUpHeight,PopUpWidth,HTMLname)
		{
		var TheTop = (screen.height-PopUpHeight)/2
		var TheLeft = (screen.width-PopUpWidth)/2
		window.open(URL,HTMLname,"location=0,scrollbars=1,resizable=0,toolbar=1,menubar=1,width="+PopUpWidth+",height="+PopUpHeight+",screenx="+TheLeft+",screeny="+TheTop+",left="+TheLeft+",top="+TheTop+"")
		}

	//------------
	
		function validate()
		{
		var problem = 0
		var errormessage = "Please correct the following \n \n"
		if(window.document.forms[0].name.value == "")
			{
			problem = 1 
			errormessage = errormessage + "* Enter your name \n"
			window.document.forms[0].name.style.background="#FFFF00"
			window.document.forms[0].name.focus()
			}
			else {window.document.forms[0].email.style.background="#FFFFFF"}	
		if(window.document.forms[0].email.value == "")
			{
			problem = 1 
			errormessage = errormessage + "* Enter your email \n"
			window.document.forms[0].email.style.background="#FFFF00"
			window.document.forms[0].email.focus()
			}
			else {window.document.forms[0].email.style.background="#FFFFFF"}
		if (problem ==1)
			{
			alert(errormessage)
			return false
			}				
		if (problem == 0)
			{
			alert("Thank You! Your information has been sent.")
			}
		}
	
function openPDF()
			{window.open('map.pdf','PDF','height=800,width=800')}	