// 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.first.value == "") {
			alert("Please enter your name")
			contact.first.focus()
			return false; }
			
		if (contact.email.value == "") {
			alert("You must enter an email address")
			contact.email.focus()
			return false; }
			
		if (!validEmail(contact.email.value)) {
			alert("You must enter a valid email address")
			contact.email.focus()
			return false; }
			
		if (contact.phone.value == "") {
			alert("Please enter your phone number")
			contact.phone.focus()
			return false; }
				
		if (contact.comments.value == "") {
			alert("Please enter your comments")
			contact.comments.focus()
			return false; }
			
		if (contact.found.value == "") {
			alert("Please let us know how you fond us")
			contact.found.focus()
			return false; }
			
			
}
