
	
	function verifyForm(theForm){
		if(theForm.contact.value == ""){
			alert("Please fill in your name.")
			theForm.contact.focus()
			return false;
		}
		
		if(theForm.phone.value == ""){
			alert("Please fill in your phone number.")
			theForm.phone.focus()
			return false;
		}
		
		if(theForm.email.value==""){
			alert("Please fill in your email address.")
			theForm.email.focus()
			return false;
		}
	}