<!--
function validate(emailad) {
	var exclude=/[^@\-\.\w]|^[_@\.\-]|[\._\-]{2}|[@\.]{2}|(@)[^@]*\1/;
	var check=/@[\w\-]+\./;
	var checkend=/\.[a-zA-Z]{2,3}$/;
        if(((emailad.search(exclude) != -1)||(emailad.search(check)) == -1)||(emailad.search(checkend) == -1)){
                return false
				}
        else {
				return true
		}
}

function submitFunction() {
	if(document.contactUs.yourName.value == "") {
		alert("You must enter your name")
		document.contactUs.yourName.focus()
		document.contactUs.yourName.select()
		return false
	}
	if(document.contactUs.phone1.value == "") {
		alert("You must enter the information in all the Phone Number fields")
		document.contactUs.phone1.focus()
		document.contactUs.phone1.select()
		return false
	}
	if(document.contactUs.phone2.value == "") {
		alert("You must enter the information in all the Phone Number fields")
		document.contactUs.phone2.focus()
		document.contactUs.phone2.select()
		return false
	}
	if(document.contactUs.phone3.value == "") {
		alert("You must enter the information in all the Phone Number fields")
		document.contactUs.phone3.focus()
		document.contactUs.phone3.select()
		return false
	}
	if(!validate(document.contactUs.email.value)) {
		alert("Invalid email address, please re-enter")
		document.contactUs.email.focus()
		document.contactUs.email.select()
		return false
	}
	if(document.contactUs.comments.value == "") {
		alert("You must enter your questions/comments")
		document.contactUs.comments.focus()
		document.contactUs.comments.select()
		return false
	}
	document.contactUs.submit()
}
-->