function submitIt(farmLocator){
	if(farmLocator.name.value == ""){		
		farmLocator.name.focus();
		farmLocator.name.select();
		alert("Please enter your name.");

		return false;
	}
	if(farmLocator.phone.value == ""){
		farmLocator.phone.focus();
		farmLocator.phone.select();
		alert("Please enter your phone number.");
		return false;
	}
	if(!validEmail(farmLocator.from.value)) {
		farmLocator.from.select();
		farmLocator.from.focus();
		alert("Please enter a valid email address.");
		return false;
	}
	if(farmLocator.milesns.value == ""){
		farmLocator.milesns.focus();
		farmLocator.milesns.select();
		alert("Please tell us how many miles North or South you are from the nearest town.")
		return false;
	}
	if(farmLocator.milesew.value == ""){
		farmLocator.milesew.focus();
		farmLocator.milesew.select();
		alert("Please tell us how many miles East or West you are from the nearest town.")
		return false;
	}
	if(farmLocator.town.value == ""){
		farmLocator.town.focus();
		farmLocator.town.select();
		alert("Please tell us the town you live nearest to.")
		return false;
	}
	if(farmLocator.house.value == ""){
		farmLocator.house.focus();
		farmLocator.house.select();
		alert("Please give us a DETAILED description of your yard, and all the buildings in it. It must include a description of the house.")
		return false;
	}
	if(farmLocator.houseType.value == "") {
		farmLocator.houseType.focus();
		alert("Please select the type of your house")
		return false;
	}
	if(farmLocator.address.value == ""){
		farmLocator.address.focus();
		farmLocator.address.select();
		alert("Please tell us the address to which we can mail your proof");
		return false;
	}
	if(farmLocator.mostRecent.checked == 1 || farmLocator.early2000.checked == 1 || farmLocator.late90.checked == 1 || farmLocator.early90.checked == 1 || farmLocator.late80.checked == 1 || farmLocator.allYears.checked == 1){
// 		return true;
	}
	else {
		farmLocator.mostRecent.focus();
		alert("Please select which years you wish to see. (Most Recent, Early 2000's, etc.)")
		return false;
	}
// 	if(farmLocator.mfp01.value == "map"){
// 		farmLocator.mfp01.value = ""
// 	}
// 	if(farmLocator.mfp02.value == "film"){
// 		farmLocator.mfp02.value = ""
// 	}
// 	if(farmLocator.mfp03.value == "print"){
// 		farmLocator.mfp03.value = ""
// 	}
// 	else {
// // 		return true;
// 	}
	if(farmLocator.quansetNumber.value == "") {
		farmLocator.quansetNumber.focus();
		alert("Please select the number of Quansets you have");
		return false;
	}
	if(farmLocator.binNumber.value == "") {
		farmLocator.binNumber.focus();
		alert("Please select the number of Bins you have")
		return false;
	}
	if(farmLocator.barnNumber.value == "") {
		farmLocator.barnNumber.focus();
		alert("Please select the number of Barns you have")
		return false;
	}
}
