function IsFormComplete() {
	formy = document.bva_arts_application;
	if (formy.organization_name.value == "") {
		alert("Please enter the organization's name.");
		formy.organization_name.focus();
		return false;
	}
	else if (formy.organization_address.value == "") {
		alert("Please enter the organization's address.");
		formy.organization_address.focus();
		return false;
	}
	else if (formy.organization_city.value == "") {
		alert("Please enter the organization's city.");
		formy.organization_city.focus();
		return false;
	}
	else if (formy.organization_state.selectedIndex == 0) {
		alert("Please choose the organization's state.");
		formy.organization_state.focus();
		return false;
	}
	else if (formy.organization_zip.value == "") {
		alert("Please enter the organization's zip code.");
		formy.organization_zip.focus();
		return false;
	}
	else if (formy.organization_phone.value == "") {
		alert("Please enter the organization's phone number.");
		formy.organization_phone.focus();
		return false;
	}
	else if (formy.organization_email.value == "") {
		alert("Please enter the organization's e-mail address.");
		formy.organization_email.focus();
		return false;
	}
	else if (formy.organization_email.value.indexOf ('@', 0) == -1){
		alert("Please enter a valid organization e-mail address.");
		formy.organization_email.focus();
		return false;
	}
	else if (formy.contact_name_first.value == "") {
		alert("Please enter the primary contact's first name.");
		formy.contact_name_first.focus();
		return false;
	}
	else if (formy.contact_name_last.value == "") {
		alert("Please enter the primary contact's last name.");
		formy.contact_name_last.focus();
		return false;
	}
	else if (formy.contact_title.value == "") {
		alert("Please enter the primary contact's title.");
		formy.contact_title.focus();
		return false;
	}
	if (formy.assistance_areas_board.selectedIndex == 0 && formy.assistance_areas_development.selectedIndex == 0 && formy.assistance_areas_finance.selectedIndex == 0 && formy.assistance_areas_hr.selectedIndex == 0 && formy.assistance_areas_legal.selectedIndex == 0 && formy.assistance_areas_marketing.selectedIndex == 0 && formy.assistance_areas_operations.selectedIndex == 0 && formy.assistance_areas_planning.selectedIndex == 0 && formy.assistance_areas_pr.selectedIndex == 0 && formy.assistance_areas_realestate.selectedIndex == 0 && formy.assistance_areas_technology.selectedIndex == 0 && formy.assistance_areas_other.selectedIndex == 0) {
		alert("Please indicate a top assistance area.");
		formy.assistance_areas_board.focus();
		return false;
	}
return true;
}