function submitIT(theForm) { 
if (!validEntry(theForm.Subject.value)) {
	alert("Enter the subject of your email to us.")
	theForm.Subject.focus()
	theForm.Subject.select()
	return false
}
if (theForm.DomainName.value.length > 0) {
	if (!validDomain(theForm.DomainName.value)) {
		alert("Please enter a valid Domain Name like Mine.com.\nOmit www and http\nOr leave blank")
		theForm.DomainName.focus()
		theForm.DomainName.select()
		return false
	} 
}
 
if (!validEntry(theForm.FirstName.value)) {
	alert("Enter your first name.")
	theForm.FirstName.focus()
	theForm.FirstName.select()
	return false
}
if (!validEntry(theForm.LastName.value)) {
	alert("Enter your last name.")
	theForm.LastName.focus()
	theForm.LastName.select()
	return false
}
 if (!validEmail(theForm.Email.value)) {
	alert("Please enter your valid Email address\nSo we may reply to you")
	theForm.Email.focus()
	theForm.Email.select()
	return false
} 
 
if (!validEntry(theForm.MessageToSend.value)) {
	alert("Enter your question or comment.")
	theForm.MessageToSend.focus()
	theForm.MessageToSend.select()
	return false
}

return true		
} 
