function Validate() {

var f1 = document.pricequote


			return(
			
			checkString(f1.first_name, "First Name") &&
			checkString(f1.last_name, "Last Name") &&
			checkString(f1.title, "Title") &&
			checkString(f1.company, "Company") &&
			checkString(f1.street, "Address") &&
			checkString(f1.city, "City") &&
			checkString(f1.state, "State") &&
			checkString(f1.zipcode, "Zip") &&				
			checkEmail(f1.email,"E-mail") &&
			checkString(f1.phone,"Phone") &&
			checkString(f1.fax,"Fax") &&
			checkString(f1.elements['locations'],"Number of Locations") &&
			checkString(f1.industry,"Industry") &&
			checkString(f1.elements['products'],"Product Interest") &&
			checkString(f1.elements['referral'],"How Did You Hear About Us")
			);
		}
		