function submitIT(theForm) {
if (!validDollar(theForm.OfferPrice.value)) {
	alert("Enter a valid dollar amount for your offering price, such as 100.00\Whole dollars only")
	theForm.OfferPrice.focus()
	theForm.OfferPrice.select()
	return false
} 
if (theForm.OfferPrice.value < 35) {
	alert("Enter a valid offer greater than 35.00")
	theForm.OfferPrice.focus()
	theForm.OfferPrice.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 your offer.")
	theForm.Email.focus()
	theForm.Email.select()
	return false
}  
 if (!validPhone(theForm.Phone.value)) {
	alert("Please enter your Phone number\nLike 999-999-9999")
	theForm.Phone.focus()
	theForm.Phone.select()
	return false
}  
if (!theForm.BuyerAgree.checked) {
	alert("You must agree to the User Agreement / How it Works")
	theForm.BuyerAgree.focus();
	return false
}  

return true		
} 
 
function submitCart(theForm) { 
if (!theForm.Selection3.checked) {
	alert("You must agree to the User Agreement / How it Works")
	theForm.Selection3.focus();
	return false
}  
return true		
} 
