<!--
function VerifyApplication()
{







	// APPLICANT INFORMATION
							
	if (window.document.MyForm1.ApplicantFirstName.value=="") {
		alert ("Child’s First Name is required.");
		window.document.MyForm1.ApplicantFirstName.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantLastName.value=="") {
		alert ("Child’s Last Name is required.");
		window.document.MyForm1.ApplicantLastName.focus();
		return false;
	}
	
	// gender is different because it's a radio box!!!!	
	if (!window.document.MyForm1.ApplicantGender[0].checked &&
		 !window.document.MyForm1.ApplicantGender[1].checked) {
	 	// no radio button is selected
		alert ("Child’s Gender is required.");	
		window.document.MyForm1.ApplicantGender[0].focus();			
		return false;
	}

	
	if (window.document.MyForm1.ApplicantBirthday.value=="") {
		alert ("Child’s Date of Birth is required.");
		window.document.MyForm1.ApplicantBirthday.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantApplyingForGrade.value=="") {
		alert ("'Applying for Grade' field is required.");
		window.document.MyForm1.ApplicantApplyingForGrade.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantInFallOf.value=="") {
		alert ("'In Fall of' field is required.");
		window.document.MyForm1.ApplicantInFallOf.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantHomeAddress.value=="") {
		alert ("Home Address is required.");
		window.document.MyForm1.ApplicantHomeAddress.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantCity.value=="") {
		alert ("City is required.");
		window.document.MyForm1.ApplicantCity.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantState.value=="") {
		alert ("State is required.");
		window.document.MyForm1.ApplicantState.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantZip.value=="") {
		alert ("Zip is required.");
		window.document.MyForm1.ApplicantZip.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantPhoneAreaCode.value=="") {
		alert ("Area Code is required.");
		window.document.MyForm1.ApplicantPhoneAreaCode.focus();
		return false;
	}	
	
	if (window.document.MyForm1.ApplicantPhone.value=="") {
		alert ("Phone is required.");
		window.document.MyForm1.ApplicantPhone.focus();
		return false;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	//	APPLICANT’S SCHOOL HISTORY
	
	if (window.document.MyForm1.ApplicantCurrentSchool.value=="") {
		alert ("Current School is required.");
		window.document.MyForm1.ApplicantCurrentSchool.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantCurrentSchoolGrade.value=="") {
		alert ("Grade is required.");
		window.document.MyForm1.ApplicantCurrentSchoolGrade.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantCurrentSchoolYearsAttended.value=="") {
		alert ("Years Attended is required.");
		window.document.MyForm1.ApplicantCurrentSchoolYearsAttended.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantCurrentSchooAddress.value=="") {
		alert ("School Address is required.");
		window.document.MyForm1.ApplicantCurrentSchooAddress.focus();
		return false;
	}
	
	if (window.document.MyForm1.ApplicantCurrentSchoolPhoneAreaCode.value=="") {
		alert ("School Phone Area Code is required.");
		window.document.MyForm1.ApplicantCurrentSchoolPhoneAreaCode.focus();
		return false;
	}
	
	
	if (window.document.MyForm1.ApplicantCurrentSchoolPhone.value=="") {
		alert ("School Phone is required.");
		window.document.MyForm1.ApplicantCurrentSchoolPhone.focus();
		return false;
	}
	
	// it's a radio box!!!!	
	if (!window.document.MyForm1.ApplicantSkippedAGrade[0].checked &&
		 !window.document.MyForm1.ApplicantSkippedAGrade[1].checked) {
	 	// no radio button is selected
		alert ("'Skipped Grade' field is required.");	
		window.document.MyForm1.ApplicantSkippedAGrade[0].focus();			
		return false;
	}	

	if (window.document.MyForm1.ApplicantSkippedAGrade[0].checked) {
		if (window.document.MyForm1.GradeSkippedExplain.value=="") {
			alert ("The applicant has skipped or repeated a grade. Please explain.");
			window.document.MyForm1.GradeSkippedExplain.focus();
			return false;
		}
	}		
	
	
	
	
	
	
	
	
	
	
	
	// FAMILY INFORMATION
	
	if (window.document.MyForm1.Family1ParentsFirstName.value=="") {
		alert ("Parent's First Name is required.");
		window.document.MyForm1.Family1ParentsFirstName.focus();
		return false;
	}
	
	if (window.document.MyForm1.Family1ParentsLastName.value=="") {
		alert ("Parent's Last Name is required.");
		window.document.MyForm1.Family1ParentsLastName.focus();
		return false;
	}
	
	if (window.document.MyForm1.Family1PreferToBeCalled.value=="") {
		alert ("'Prefer To Be Called' field is required.");
		window.document.MyForm1.Family1PreferToBeCalled.focus();
		return false;
	}
	
	if (window.document.MyForm1.Family1Address.value=="") {
		alert ("Home Address is required.");
		window.document.MyForm1.Family1Address.focus();
		return false;
	}
	
	if (window.document.MyForm1.Family1City.value=="") {
		alert ("City is required.");
		window.document.MyForm1.Family1City.focus();
		return false;
	}
	
	if (window.document.MyForm1.Family1State.value=="") {
		alert ("State is required.");
		window.document.MyForm1.Family1State.focus();
		return false;
	}
	
	if (window.document.MyForm1.Family1Zip.value=="") {
		alert ("Zip is required.");
		window.document.MyForm1.Family1Zip.focus();
		return false;
	}
	
	if (window.document.MyForm1.Family1PhoneAreaCode.value=="") {
		alert ("Home Phone Area Code is required.");
		window.document.MyForm1.Family1PhoneAreaCode.focus();
		return false;
	}
		
	if (window.document.MyForm1.Family1Phone.value=="") {
		alert ("Home Phone is required.");
		window.document.MyForm1.Family1Phone.focus();
		return false;
	}
	
	if (window.document.MyForm1.Family1Occupation.value=="") {
		alert ("Occupation is required.");
		window.document.MyForm1.Family1Occupation.focus();
		return false;
	}
	
	
	
	

	
	// it's a radio box!!!!	
	if (!window.document.MyForm1.RacialCulturalHeritage[0].checked &&
		 !window.document.MyForm1.RacialCulturalHeritage[1].checked &&
		 !window.document.MyForm1.RacialCulturalHeritage[2].checked &&
		 !window.document.MyForm1.RacialCulturalHeritage[3].checked &&
		 !window.document.MyForm1.RacialCulturalHeritage[4].checked &&
		 !window.document.MyForm1.RacialCulturalHeritage[5].checked) {
	 	// no radio button is selected
		alert ("Your child’s racial/cultural heritage is required.");	
		window.document.MyForm1.RacialCulturalHeritage[0].focus();			
		return false;
	}	

	
	
	

	
	if (window.document.MyForm1.RacialCulturalHeritage[5].checked) {
		if (window.document.MyForm1.MultiracialExplain.value=="") {
	alert ("You selected Multiracial as your child's racial or cultural heritage. Please explain.");
			window.document.MyForm1.MultiracialExplain.focus();
			return false;
		}
	}		
		
	
	
	if (window.document.MyForm1.ALLCORRECT.value=="") {
//		alert ("Occupation is required.");
//		window.document.MyForm1.ALLCORRECT.focus();
		return false;
	}
	
	
	
	
	else {
		window.document.MyForm1.submit();
		return true;
	}
}




























function VerifyFacts()
{
	
	if (window.document.MyForm2.ParentsName.value=="") {
		alert ("Parent(s) Name is required.");
		window.document.MyForm2.ParentsName.focus();
		return false;
	}
	
	if (window.document.MyForm2.StreetAddress.value=="") {
		alert ("Street Address is required.");
		window.document.MyForm2.StreetAddress.focus();
		return false;
	}

	if (window.document.MyForm2.City.value=="") {
		alert ("City is required.");
		window.document.MyForm2.City.focus();
		return false;
	}
	
	if (window.document.MyForm2.State.value=="") {
		alert ("State is required.");
		window.document.MyForm2.State.focus();
		return false;
	}
	
	if (window.document.MyForm2.Zip.value=="") {
		alert ("Zip is required.");
		window.document.MyForm2.Zip.focus();
		return false;
	}
	
	if (window.document.MyForm2.PhoneAreaCode.value=="") {
		alert ("Phone Area Code is required.");
		window.document.MyForm2.PhoneAreaCode.focus();
		return false;
	}
		
	if (window.document.MyForm2.Phone.value=="") {
		alert ("Phone is required.");
		window.document.MyForm2.Phone.focus();
		return false;
	}
	
	if (window.document.MyForm2.Email.value=="") {
		alert ("Email is required.");
		window.document.MyForm2.Email.focus();
		return false;
	}
	
		
	else {
		window.document.MyForm2.submit();
		return true;
	}
}









function VerifyCamp()
{
	
	if (window.document.MyForm3.ParentsName.value=="") {
		alert ("Parent(s) Name is required.");
		window.document.MyForm3.ParentsName.focus();
		return false;
	}
	
	if (window.document.MyForm3.StreetAddress.value=="") {
		alert ("Street Address is required.");
		window.document.MyForm3.StreetAddress.focus();
		return false;
	}

	if (window.document.MyForm3.City.value=="") {
		alert ("City is required.");
		window.document.MyForm3.City.focus();
		return false;
	}
	
	if (window.document.MyForm3.State.value=="") {
		alert ("State is required.");
		window.document.MyForm3.State.focus();
		return false;
	}
	
	if (window.document.MyForm3.Zip.value=="") {
		alert ("Zip is required.");
		window.document.MyForm2.Zip.focus();
		return false;
	}
	
	if (window.document.MyForm3.PhoneAreaCode.value=="") {
		alert ("Phone Area Code is required.");
		window.document.MyForm3.PhoneAreaCode.focus();
		return false;
	}
		
	if (window.document.MyForm3.Phone.value=="") {
		alert ("Phone is required.");
		window.document.MyForm3.Phone.focus();
		return false;
	}
	
	if (window.document.MyForm3.Email.value=="") {
		alert ("Email is required.");
		window.document.MyForm3.Email.focus();
		return false;
	}
	
		
	else {
		window.document.MyForm3.submit();
		return true;
	}
}



























						
function Verify13()
{

	//	Store Number	
	if (window.document.MyForm23.StoreNumber.value=="") {
		alert ("Four digit \"Store Number\" is required!");
		MyForm23.StoreNumber.focus();
		return (false);}	
		
	if (isNaN(parseInt(window.document.MyForm23.StoreNumber.value))) {
		alert("\"Store Number\" can contain only digits! Please enter the four digit \"Store Number\"");
		MyForm23.StoreNumber.focus();
		return (false);}	
				
	if (window.document.MyForm23.StoreNumber.value.length > 4) {
		alert("\"Store Number\" you entered has more than four digits! Please enter the four digit \"Store Number\"");
		MyForm23.StoreNumber.focus();
		return (false);}	
	if (window.document.MyForm23.StoreNumber.value.length < 4) {
		alert("\"Store Number\" you entered has less than four digits! Please enter the four digit \"Store Number\"");
		MyForm23.StoreNumber.focus();
		return (false);}		
			
	//	District				
	if (window.document.MyForm23.RegionDistrict.value=="-- PLEASE SELECT --") {
		alert ("Please select a district.");
		window.document.MyForm23.RegionDistrict.focus();
		return false;
	}		
			
	//	Address				
	if (window.document.MyForm23.AddressLine1.value=="") {
		alert ("Address is required.");
		window.document.MyForm23.AddressLine1.focus();
		return false;
	}
	
	//	City		
	if (window.document.MyForm23.City.value=="") {
		alert ("City is required.");
		window.document.MyForm23.City.focus();
		return false;
	}
	
	//	State		
	if (window.document.MyForm23.State.value=="") {
		alert ("State is required.");
		window.document.MyForm23.State.focus();
		return false;
	}
	
	// Zip Code
	if (window.document.MyForm23.ZipCode.value=="") {
		alert ("Five digit \"Zip Code\" is required!");
		MyForm23.ZipCode.focus();
		return (false);}	
		
	if (isNaN(parseInt(window.document.MyForm23.ZipCode.value))) {
		alert("\"Zip Code\" can contain only digits! Please enter the five digit \"Zip Code\"");
		MyForm23.ZipCode.focus();
		return (false);}	
				
	if (window.document.MyForm23.ZipCode.value.length > 5) {
		alert("\"Zip Code\" you entered has more than five digits! Please enter the five digit \"Zip Code\"");
		MyForm23.ZipCode.focus();
		return (false);}	
	if (window.document.MyForm23.ZipCode.value.length < 5) {
		alert("\"Zip Code\" you entered has less than five digits! Please enter the five digit \"Zip Code\"");
		MyForm23.ZipCode.focus();
		return (false);}	
	
	
	
	else {
		window.document.MyForm23.submit();
		return true;
	}
}



//-->