function Validate() {

var f1 = document.request_hba
	
			return(
			
			checkString(f1.first_name, "First Name") &&
			checkString(f1.last_name, "Last Name") &&
			checkString(f1.first_name, "Title") &&
			checkString(f1.company, "Company") &&
			checkZIPCode(f1.zip, "Zip") &&				
			checkEmail(f1.email,"E-mail") &&
			checkUSPhone(f1.phone,"Phone") &&
			checkString(f1.locations,"Number of Locations") 
			);
		}
		