function Verify(f) {
	// set up params
	var ErrorString  = "";
	f.jsEnabled.value = 0;
	
	if (isBlank(f.firstName)) ErrorString += "\n - First name is required";
	if (isBlank(f.lastName)) ErrorString += "\n - Last name is required";	
	if (isBlank(f.companyName)) ErrorString += "\n - Company name is required";
	if (isBlank(f.address)) ErrorString += "\n - Mailing address is required";
	if (isBlank(f.city)) ErrorString += "\n - Mailing city is required";
	if (isSelected(f.state, 0)) ErrorString +=  "\n - Mailing state is required (If no state, select N/A)";	
	if (isBlank(f.zipCode)) ErrorString += "\n - Mailing Postal Code is required";
	if (isBlank(f.email)) ErrorString += "\n - E-Mail Address is required";
	if (!isBlank(f.email) && testSimpleEmail(f.email)) ErrorString += "\n - E-Mail Address is formatted improperly";
	if (isSelected(f.country, 0)) ErrorString +=  "\n - Mailing country is required";	
	if (isSelected(f.busType, 0)) ErrorString +=  "\n - Please select your business type";	
	if (isSelected(f.heardFrom, 0)) ErrorString +=  "\n - Please tell us how you heard of Blancett";			

	
	return errorAlert(ErrorString);
}