
formSetmain(document.SUPPORTER);
onunload = fileClose;
function CheckForm2(thisform) {
	focus_field = "";
	warning = "";
	warning=checkField(thisform.first_name,"First Name",warning);warning=checkField(thisform.last_name,"Last Name",warning);warning=checkField(thisform.email_address,"Email",warning);	
	if (warning != "") {
		warning = "Please enter the following fields to continue:\n- "+warning+"";
		alert(warning);
		if (focus_field != "")
			focus_field.focus();
		return false;
	}
	if (thisform.email_address != null)
		if (thisform.email_address.value != "")
			if (validEmail(thisform.email_address.value) == false) {
				thisform.email_address.focus();
				return false;
			}
	if ((thisform.zip != null) && (thisform.country != null)) { 
		if (checkCountryZip(thisform.zip,thisform.country) == false) {
			thisform.zip.focus();
			return false;
		}
	}
	
	thisform.action = "http://www.angelfood.org/site/apps/ka/ct/contactadd.asp?c=etIQK6OYG&b=486839"; 
	return true;
}