function check_App() {
	var er = "";
	
	if (document.frm.Organization.value == "") { er += "Please fill in the Organization.\n"; }
	if (document.frm.City.value == "") { er += "Please fill in the City.\n"; }
	if (document.frm.State.value == "") { er += "Please fill in the State.\n"; }
	if (document.frm.zip.value == "") { er += "Please fill in the Zip Code/Postal Code.\n"; }
	if (document.frm.contact.value == "") { er += "Please fill in the Contact Person.\n"; }
	if (document.frm.email.value == "") { er += "Please fill in the E-mail Address.\n"; }
	if (document.frm.phone.value == "") { er += "Please fill in the Telephone.\n"; }
	if (document.frm.description.value == "") { er += "Please fill in the Description of Project or Program.\n"; }
	if (document.frm.GrantAmount.value == "") { er += "Please fill in the Grant Amount Requested.\n"; }
	if (document.frm.AnnualRevenue.value == "") { er += "Please fill in the Annual Revenue.\n"; }
	if (document.frm.capCode.value != document.frm.hidden_capCode.value) { er += "The Code entered does not match the Code displayed.\n"; }
		
	if (er != "") {
		alert(er);
		return false;
	}
}

