function Validate() {

var f1 = document.wpmpls
	
			return(
			checkString(f1.first_name, "First Name") &&
			checkString(f1.last_name, "Last Name") &&		
			checkString(f1.title, "Title") &&
			checkString(f1.company, "Company") &&
			checkString(f1.street, "Street") &&
			checkString(f1.city, "City") &&			 											
			checkString(f1.state, "State") &&
			checkZIPCode(f1.zip,"Zip") &&
			checkEmail(f1.email,"Email") &&								
			checkUSPhone(f1.phone,"Phone")
			);
		}
	
