function submitIt(theForm) {
	if (!validName(theForm.Name.value)) { 
		theForm.Name.focus()
		theForm.Name.select() 
		alert("Enter your name")
		return false
	}
	if (!validEmail(theForm.Email.value)) { 
		theForm.Email.focus()
		theForm.Email.select() 
		alert("Please enter your valid Email address.")
		return false
	}  
	if (!validEntry(theForm.MessageToSend.value,3)) { 
		theForm.MessageToSend.focus()
		theForm.MessageToSend.select() 
		alert("Please enter your Message.")
		return false
	} 
	 
}  
