function submitIT(theForm) { 
if (!validDomain(theForm.DomainName.value)) {
	alert("Please enter your Domain Name like Mine.com.\nOmit www and http")
	theForm.DomainName.focus()
	theForm.DomainName.select()
	return false
} 
if (!validInteger(theForm.AskingPrice.value)) {
	alert("Enter a valid whole-dollar amount for your asking price, such as 250 (meaning $250)")
	theForm.AskingPrice.focus()
	theForm.AskingPrice.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.")
	theForm.Email.focus()
	theForm.Email.select()
	return false
}
 if (!validPhone(theForm.Phone.value)) {
	alert("Please enter your valid Phone Number")
	theForm.Phone.focus()
	theForm.Phone.select()
	return false
}
 if (!validEntry(theForm.Addr1.value)) {
	alert("Please enter your valid Address where your sales proceeds should be mailed")
	theForm.Addr1.focus()
	theForm.Addr1.select()
	return false
}
 if (!validEntry(theForm.City.value)) {
	alert("Please enter your City")
	theForm.City.focus()
	theForm.City.select()
	return false
}
 if (!validEntry(theForm.State.value)) {
	alert("Please enter your State")
	theForm.State.focus()
	theForm.State.select()
	return false
}
 if (!validEntry(theForm.Country.value)) {
	alert("Please enter your Country")
	theForm.Country.focus()
	theForm.Country.select()
	return false
}
 if (!validZip(theForm.Zip.value,theForm.Country.value)) {
	alert("Please enter your Zip Code for a United States address")
	theForm.Zip.focus()
	theForm.Zip.select()
	return false
}

if (!theForm.SellerAgree.checked) {
	alert("You must agree to the User Agreement / How it Works")
	theForm.SellerAgree.focus();
	return false
} 

return true		
} 
