function Validate() {

var f1 = document.pricequote


			return(
			
			checkString(f1.first_name, "First Name") &&
			checkString(f1.last_name, "Last Name") &&
			checkString(f1.first_name, "Title") &&
			checkString(f1.company, "Company") &&
			checkString(f1.street, "Address") &&
			checkString(f1.city, "City") &&
			checkString(f1.state, "State") &&
			checkString(f1.zip, "Zip") &&				
			checkEmail(f1.email,"E-mail") &&
			checkString(f1.phone,"Phone") &&
			checkString(f1.elements['00N30000000drvn'],"Number of Locations") &&
			checkString(f1.industry,"Industry") &&
			checkString(f1.elements['00N30000000cWK6'],"Type of Business") &&
			checkString(f1.elements['00N30000000h7IW'],"Product Interest") &&
			checkString(f1.elements['00N30000000gnYD'],"How Did You Hear About Us") &&
			checkString(f1.elements['00N40000001ZCdu'],"Spam Protection")
			);
		}
		