<!-- start of jump menue from include
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// Start Form Check 
	function validEmail(inEmail) {
		invalidChars = "/:,;"
		if (inEmail == "") {
			return false; }
		for (i=0; i<invalidChars.length; i++) {
			badChar = invalidChars.charAt(i)
			if (inEmail.indexOf(badChar,0) > -1) {
				return false; }
			}
			atPos = inEmail.indexOf("@",1)
			if (atPos == -1) {
				return false; }
			if (inEmail.indexOf("@",atPos+1) > -1) {
				return false; }
			periodPos = inEmail.indexOf(".",atPos)
			if (periodPos == -1) {
				return false; }
			if (periodPos+3 > inEmail.length) {
				return false; }
			else {
				return true; }
	}
	
function validForm(contact) {
			if (contact.name.value == "") {
			alert("Please enter your name")
			contact.name.focus()
			return false; }
			
			if (contact.company.value == "") {
			alert("Please enter the name of your compay")
			contact.company.focus()
			return false; }
			
			if (contact.state.value == "") {
			alert("select a state")
			contact.state.focus()
			return false; }
			
			if (contact.zip.value == "") {
			alert("What is your zip code?")
			contact.zip.focus()
			return false; }
			
					if (contact.submit_by.value == "") {
			alert("You must enter an email address")
			contact.submit_by.focus()
			return false; }
			
		if (!validEmail(contact.submit_by.value)) {
			alert("You must enter a valid email address")
			contact.submit_by.focus()
			return false; }
			
			if (contact.areacode.value == "") {
			alert("Please enter your area code")
			contact.areacode.focus()
			return false; }

			if (contact.prefix.value == "") {
			alert("Enter your phone Number")
			contact.prefix.focus()
			return false; }
			
			if (contact.sufix.value == "") {
			alert("Enter your phone number")
			contact.sufix.focus()
			return false; }
			
			if (contact.comments.value == "") {
			alert("Your comments are important")
			contact.comments.focus()
			return false; }
			
			}
			//-->
