<!--
function check_personal(theForm) {
	if (theForm.fname.value == "") {
		alert("Please Enter Your First Name");
		theForm.fname.focus();
		return (false);
	}
	if (theForm.lname.value == "") {
		alert("Please Enter Your Last Name");
		theForm.lname.focus();
		return (false);
	}
	if (theForm.ssn.value != "") {
		if (theForm.ssn.value.length < 9 || isNaN(theForm.ssn.value)) {
			alert("Please Enter Your Correct Social Security Number - Ex. 111223333");
			theForm.ssn.focus();
			return (false);
		}
	}
	if (theForm.address.value == "") {
		alert("Please Enter Your Present Mailing Address");
		theForm.address.focus();
		return (false);
	}
	if (theForm.city.value == "") {
		alert("Please Enter Your Present City of Residence");
		theForm.city.focus();
		return (false);
	}
	if (theForm.state.value == "") {
		alert("Please Choose Your Present State of Residence");
		theForm.state.focus();
		return (false);
	}
	if (theForm.zip.value == "" || isNaN(theForm.zip.value) || theForm.zip.value.length < 5) {
		alert("Please Enter Your Present Mailing Zip Code");
		theForm.zip.focus();
		return (false);
	}
	if (theForm.h_phone.value == "" || isNaN(theForm.h_phone.value) || theForm.h_phone.value.length < 10) {
		alert("Please Enter Your Correct Home Phone Number - Ex. 8124651080");
		theForm.h_phone.focus();
		return (false);
	}
	if (theForm.a_phone.value != "") {
		if (theForm.a_phone.value == "" || isNaN(theForm.a_phone.value) || theForm.a_phone.value.length < 10) {
			alert("Please Enter A Valid Alternate Phone Number - Ex. 8124651080");
			theForm.a_phone.focus();
			return (false);
		}
	}
	if (theForm.email.value != "") {
		if (theForm.email.value.indexOf(".") == -1 || theForm.email.value.indexOf("@") == -1 || theForm.email.value.value == "") {
			alert("Please Enter A Valid Email Address - mike@usi.edu");
			theForm.email.focus();
			return false;
		}
	}
	if (theForm.age.value == "") {
		alert("Are you 18 years of age or older?  Please Choose Your Status");
		theForm.age.focus();
		return (false);
	}
	if (theForm.age.value == "0" && theForm.age_no.value == "") {
		alert("Please Enter Your Birthdate Since Your Are Not 18 Years of Age");
		theForm.age_no.focus();
		return (false);
	}
	if (theForm.position1.value == "") {
		alert("Please Enter The Desired Position And Include Job Reference Number, If Possible");
		theForm.position1.focus();
		return (false);
	}
	
	var refer_choices = 0;
	
	for (counter = 0; counter < theForm.referred.length; counter++) {
		if (theForm.referred[counter].checked) {
			refer_choices = refer_choices + 1;
		}
	}
	
	if (refer_choices == 0) {
		alert("Please Indicate How You Were Referred To USI.  Check All That Apply");
		return (false);
	}
	
	if (theForm.referred[0].checked && theForm.referred_ad.value == "") {
		alert("Please Specify The Newspaper Ad Information");
		theForm.referred_ad.focus();
		return (false);
	}
	if (theForm.referred[4].checked && theForm.referred_other.value == "") {
		alert("Please Specify How You Were Referred To USI");
		theForm.referred_other.focus();
		return (false);
	}
	
	if (theForm.citizen.value == "") {
		alert("Are you a U.S. Citizen?  Please Choose Your Status");
		theForm.citizen.focus();
		return (false);
	}
	if (theForm.citizen.value == "0" && theForm.citizen_visa.value == "") {
		alert("What type of visa do you currently hold?");
		theForm.citizen_visa.focus();
		return (false);
	}	
	if (theForm.usi_rel_name.value != "" && (theForm.usi_rel_dept.value == "" || theForm.usi_rel_relation.value == "")) {
		alert("Please Complete The Department Name and Relationship For Any USI Relatives");
		theForm.usi_rel_dept.focus();
		return (false);
	}
	if (theForm.felony.value == "") {
		alert("Have you ever been convicted of a felony?  Please Choose An Option");
		theForm.felony.focus();
		return (false);
	}
	if (theForm.felony.value == "1" && theForm.felony_yes.value == "") {
		alert("Please Explain Your Felony Conviction");
		theForm.felony_yes.focus();
		return (false);
	}
	
return (true);
}

function check_education(theForm) {
	if (theForm.institution1.value == "") {
		alert("Please Enter The Name Of The Institution Where You Received Your Degree");
		theForm.institution1.focus();
		return (false);
	}
	if (theForm.month_from1.value == "") {
		alert("Please Choose The Month You Started At " + theForm.institution1.value + " - Ex. Jan 2001");
		theForm.month_from1.focus();
		return (false);
	}
	if (theForm.year_from1.value == "" || theForm.year_from1.value.length < 4 || isNaN(theForm.year_from1.value)) {
		alert("Please Enter The Year You Started At " + theForm.institution1.value + " - Ex. Jan 2001");
		theForm.year_from1.focus();
		return (false);
	}
	if (theForm.month_to1.value == "") {
		alert("Please Choose The Month You Finished At " + theForm.institution1.value + " - Ex. Jan 2001");
		theForm.month_to1.focus();
		return (false);
	}
	if (theForm.year_to1.value == "" || theForm.year_to1.value.length < 4 || isNaN(theForm.year_to1.value)) {
		alert("Please Enter The Year You Finished At " + theForm.institution1.value + " - Ex. Jan 2001");
		theForm.year_to1.focus();
		return (false);
	}
	if (theForm.major1.value == "") {
		alert("Please Enter The Major Area of Study At " + theForm.institution1.value);
		theForm.major1.focus();
		return (false);
	}
	if (theForm.degree1.value == "") {
		alert("Please Enter The Degree You Received At " + theForm.institution1.value);
		theForm.degree1.focus();
		return (false);
	}
	if (theForm.degree_month1.value == "") {
		alert("Please Choose The Month You Received Your Degree - Ex. Jan 2001");
		theForm.degree_month1.focus();
		return (false);
	}
	if (theForm.degree_year1.value == "" || theForm.degree_year1.value.length < 4 || isNaN(theForm.degree_year1.value)) {
		alert("Please Choose The Year You Received Your Degree - Ex. Jan 2001");
		theForm.degree_year1.focus();
		return (false);
	}
	
	if (theForm.institution2.value != "") {
		if (theForm.month_from2.value == "") {
			alert("Please Choose The Month You Started At " + theForm.institution2.value + " - Ex. Jan 2001");
			theForm.month_from2.focus();
			return (false);
		}
		if (theForm.year_from2.value == "" || theForm.year_from2.value.length < 4 || isNaN(theForm.year_from2.value)) {
			alert("Please Enter The Year You Started At " + theForm.institution2.value + " - Ex. Jan 2001");
			theForm.year_from2.focus();
			return (false);
		}
		if (theForm.month_to2.value == "") {
			alert("Please Choose The Month You Finished At " + theForm.institution2.value + " - Ex. Jan 2001");
			theForm.month_to2.focus();
			return (false);
		}
		if (theForm.year_to2.value == "" || theForm.year_to2.value.length < 4 || isNaN(theForm.year_to2.value)) {
			alert("Please Enter The Year You Finished At " + theForm.institution2.value + " - Ex. Jan 2001");
			theForm.year_to2.focus();
			return (false);
		}
		if (theForm.major2.value == "") {
			alert("Please Enter The Major Area of Study At " + theForm.institution2.value);
			theForm.major2.focus();
			return (false);
		}
		if (theForm.degree2.value == "") {
			alert("Please Enter The Degree You Received At " + theForm.institution2.value);
			theForm.degree2.focus();
			return (false);
		}
		if (theForm.degree_month2.value == "") {
			alert("Please Choose The Month You Received Your Degree - Ex. Jan 2001");
			theForm.degree_month2.focus();
			return (false);
		}
		if (theForm.degree_year2.value == "" || theForm.degree_year2.value.length < 4 || isNaN(theForm.degree_year2.value)) {
			alert("Please Choose The Year You Received Your Degree - Ex. Jan 2001");
			theForm.degree_year2.focus();
			return (false);
		}
	}
	
	if (theForm.institution3.value != "") {
		if (theForm.month_from3.value == "") {
			alert("Please Choose The Month You Started At " + theForm.institution3.value + " - Ex. Jan 2001");
			theForm.month_from3.focus();
			return (false);
		}
		if (theForm.year_from3.value == "" || theForm.year_from3.value.length < 4 || isNaN(theForm.year_from3.value)) {
			alert("Please Enter The Year You Started At " + theForm.institution3.value + " - Ex. Jan 2001");
			theForm.year_from3.focus();
			return (false);
		}
		if (theForm.month_to3.value == "") {
			alert("Please Choose The Month You Finished At " + theForm.institution3.value + " - Ex. Jan 2001");
			theForm.month_to3.focus();
			return (false);
		}
		if (theForm.year_to3.value == "" || theForm.year_to3.value.length < 4 || isNaN(theForm.year_to3.value)) {
			alert("Please Enter The Year You Finished At " + theForm.institution3.value + " - Ex. Jan 2001");
			theForm.year_to3.focus();
			return (false);
		}
		if (theForm.major3.value == "") {
			alert("Please Enter The Major Area of Study At " + theForm.institution3.value);
			theForm.major3.focus();
			return (false);
		}
		if (theForm.degree3.value == "") {
			alert("Please Enter The Degree You Received At " + theForm.institution3.value);
			theForm.degree3.focus();
			return (false);
		}
		if (theForm.degree_month3.value == "") {
			alert("Please Choose The Month You Received Your Degree - Ex. Jan 2001");
			theForm.degree_month3.focus();
			return (false);
		}
		if (theForm.degree_year3.value == "" || theForm.degree_year3.value.length < 4 || isNaN(theForm.degree_year3.value)) {
			alert("Please Choose The Year You Received Your Degree - Ex. Jan 2001");
			theForm.degree_year3.focus();
			return (false);
		}
	}
	
	if (theForm.institution4.value != "") {
		if (theForm.month_from4.value == "") {
			alert("Please Choose The Month You Started At " + theForm.institution4.value + " - Ex. Jan 2001");
			theForm.month_from4.focus();
			return (false);
		}
		if (theForm.year_from4.value == "" || theForm.year_from4.value.length < 4 || isNaN(theForm.year_from4.value)) {
			alert("Please Enter The Year You Started At " + theForm.institution4.value + " - Ex. Jan 2001");
			theForm.year_from4.focus();
			return (false);
		}
		if (theForm.month_to4.value == "") {
			alert("Please Choose The Month You Finished At " + theForm.institution4.value + " - Ex. Jan 2001");
			theForm.month_to4.focus();
			return (false);
		}
		if (theForm.year_to4.value == "" || theForm.year_to4.value.length < 4 || isNaN(theForm.year_to4.value)) {
			alert("Please Enter The Year You Finished At " + theForm.institution4.value + " - Ex. Jan 2001");
			theForm.year_to4.focus();
			return (false);
		}
		if (theForm.major4.value == "") {
			alert("Please Enter The Major Area of Study At " + theForm.institution4.value);
			theForm.major4.focus();
			return (false);
		}
		if (theForm.degree4.value == "") {
			alert("Please Enter The Degree You Received At " + theForm.institution4.value);
			theForm.degree4.focus();
			return (false);
		}
		if (theForm.degree_month4.value == "") {
			alert("Please Choose The Month You Received Your Degree - Ex. Jan 2001");
			theForm.degree_month4.focus();
			return (false);
		}
		if (theForm.degree_year4.value == "" || theForm.degree_year4.value.length < 4 || isNaN(theForm.degree_year4.value)) {
			alert("Please Choose The Year You Received Your Degree - Ex. Jan 2001");
			theForm.degree_year4.focus();
			return (false);
		}
	}
return (true);
}

function check_scholar(theForm) {
	if (theForm.institution1.value != "") {
		if (theForm.location1.value == "") {
			alert("Please Enter The Institution Location");
			theForm.location1.focus();
			return (false);
		}
		if (theForm.grant_month1.value == "") {
			alert("Please Choose The Month You Received The Scholarship - Ex. Jan 2001");
			theForm.grant_month1.focus();
			return (false);
		}
		if (theForm.grant_year1.value == "" || theForm.grant_year1.value.length < 4 || isNaN(theForm.grant_year1.value)) {
			alert("Please Enter The Year You Received The Scholarship - Ex. Jan 2001");
			theForm.grant_year1.focus();
			return (false);
		}
	}
	
	if (theForm.institution2.value != "") {
		if (theForm.location2.value == "") {
			alert("Please Enter The Institution Location");
			theForm.location2.focus();
			return (false);
		}
		if (theForm.grant_month2.value == "") {
			alert("Please Choose The Month You Received The Scholarship - Ex. Jan 2001");
			theForm.grant_month2.focus();
			return (false);
		}
		if (theForm.grant_year2.value == "" || theForm.grant_year2.value.length < 4 || isNaN(theForm.grant_year2.value)) {
			alert("Please Enter The Year You Received The Scholarship - Ex. Jan 2001");
			theForm.grant_year2.focus();
			return (false);
		}
	}
	
	if (theForm.institution3.value != "") {
		if (theForm.location3.value == "") {
			alert("Please Enter The Institution Location");
			theForm.location3.focus();
			return (false);
		}
		if (theForm.grant_month3.value == "") {
			alert("Please Choose The Month You Received The Scholarship - Ex. Jan 2001");
			theForm.grant_month3.focus();
			return (false);
		}
		if (theForm.grant_year3.value == "" || theForm.grant_year3.value.length < 4 || isNaN(theForm.grant_year3.value)) {
			alert("Please Enter The Year You Received The Scholarship - Ex. Jan 2001");
			theForm.grant_year3.focus();
			return (false);
		}
	}
	
	if (theForm.institution4.value != "") {
		if (theForm.location4.value == "") {
			alert("Please Enter The Institution Location");
			theForm.location4.focus();
			return (false);
		}
		if (theForm.grant_month4.value == "") {
			alert("Please Choose The Month You Received The Scholarship - Ex. Jan 2001");
			theForm.grant_month4.focus();
			return (false);
		}
		if (theForm.grant_year4.value == "" || theForm.grant_year4.value.length < 4 || isNaN(theForm.grant_year4.value)) {
			alert("Please Enter The Year You Received The Scholarship - Ex. Jan 2001");
			theForm.grant_year4.focus();
			return (false);
		}
	}
return (true);
}

function check_employment(theForm) {
	if (theForm.employer1.value == "") {
		alert("Please Enter Your Most Current Employer");
		theForm.employer1.focus();
		return (false);
	}
	if (theForm.address1.value == "") {
		alert("Please Enter " + theForm.employer1.value + "'s Street Address");
		theForm.address1.focus();
		return (false);
	}
	if (theForm.city1.value == "") {
		alert("Please Enter " + theForm.employer1.value + "'s City of Business");
		theForm.city1.focus();
		return (false);
	}
	if (theForm.state1.value == "") {
		alert("Please Choose " + theForm.employer1.value + "'s State of Business");
		theForm.state1.focus();
		return (false);
	}
	if (theForm.zip1.value == "" || isNaN(theForm.zip1.value) || theForm.zip1.value.length < 5) {
		alert("Please Enter " + theForm.employer1.value + "'s Zip Code");
		theForm.zip1.focus();
		return (false);
	}
	if (theForm.phone1.value == "" || isNaN(theForm.phone1.value) || theForm.phone1.value.length < 10) {
		alert("Please Enter " + theForm.employer1.value + "'s Phone Number");
		theForm.phone1.focus();
		return (false);
	}
	if (theForm.month_from1.value == "") {
		alert("Please Enter Your Starting Employment Date At " + theForm.employer1.value);
		theForm.month_from1.focus();
		return (false);
	}
	if (theForm.year_from1.value == "" || theForm.year_from1.value.length < 4 || isNaN(theForm.year_from1.value)) {
		alert("Please Enter A Valid Starting Employment Date At " + theForm.employer1.value + " - Ex. Jan 2001");
		theForm.year_from1.focus();
		return (false);
	}
	if (theForm.month_to1.value != "" && theForm.year_to1.value == "") {
		alert("Please Enter Your Ending Employment Date At " + theForm.employer1.value + " - Ex. Mar 2003");
		theForm.year_to1.focus();
		return (false);
	}
	if (theForm.year_to1.value != "" && (theForm.year_to1.value.length < 4 || isNaN(theForm.year_to1.value))) {
		alert("Please Enter A Valid Ending Employment Date At " + theForm.employer1.value + " - Ex. Mar 2003");
		theForm.year_to1.focus();
		return (false);
	}
	if (theForm.start_sal1.value == "" || isNaN(theForm.start_sal1.value)) {
		alert("Please Enter Your Starting Salary At " + theForm.employer1.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
		theForm.start_sal1.focus();
		return (false);
	}
	if (theForm.start_sal_type1.value == "") {
		alert("Please Enter Your Starting Salary Payment Schedule At " + theForm.employer1.value + " - Ex. 30000 yearly or 8.60 hourly");
		theForm.start_sal_type1.focus();
		return (false);
	}
	if (theForm.month_to1.value != "" && (theForm.end_sal1.value == "" || isNaN(theForm.end_sal1.value))) {
		alert("Please Enter Your Ending Salary At " + theForm.employer1.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
		theForm.end_sal1.focus();
		return (false);
	}
	if (theForm.month_to1.value != "" && theForm.end_sal_type1.value == "") {
		alert("Please Enter Your Ending Salary Payment Schedule At " + theForm.employer1.value + " - Ex. 30000 yearly or 8.60 hourly");
		theForm.end_sal_type1.focus();
		return (false);
	}
	if (theForm.end_sal1.value != "" && isNaN(theForm.end_sal1.value)) {
		alert("Please Enter Your Ending Salary At " + theForm.employer1.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
		theForm.start_sal1.focus();
		return (false);
	}
	if (theForm.job_title1.value == "") {
		alert("Please Enter Your Job Title At " + theForm.employer1.value);
		theForm.job_title1.focus();
		return (false);
	}
	if (theForm.supervisor1.value == "") {
		alert("Please Enter Your Immediate Supervisor At " + theForm.employer1.value);
		theForm.supervisor1.focus();
		return (false);
	}
	if (theForm.duties1.value == "") {
		alert("Please Summarize Your Job Duties At " + theForm.employer1.value);
		theForm.duties1.focus();
		return (false);
	}
	if (theForm.month_to1.value != "" && theForm.leaving1.value == "") {
		alert("Please Specify The Reason For Leaving " + theForm.employer1.value);
		theForm.leaving1.focus();
		return (false);
	}
	if (theForm.contact1.value == "") {
		alert("May We Contact " + theForm.supervisor1.value + " At " + theForm.employer1.value + "?");
		theForm.contact1.focus();
		return (false);
	}
	
	if (theForm.employer2.value != "") {
		if (theForm.address2.value == "") {
			alert("Please Enter " + theForm.employer2.value + "'s Street Address");
			theForm.address2.focus();
			return (false);
		}
		if (theForm.city2.value == "") {
			alert("Please Enter " + theForm.employer2.value + "'s City of Business");
			theForm.city2.focus();
			return (false);
		}
		if (theForm.state2.value == "") {
			alert("Please Choose " + theForm.employer2.value + "'s State of Business");
			theForm.state2.focus();
			return (false);
		}
		if (theForm.zip2.value == "" || isNaN(theForm.zip2.value) || theForm.zip2.value.length < 5) {
			alert("Please Enter " + theForm.employer2.value + "'s Zip Code");
			theForm.zip2.focus();
			return (false);
		}
		if (theForm.phone2.value == "" || isNaN(theForm.phone2.value) || theForm.phone2.value.length < 10) {
			alert("Please Enter " + theForm.employer2.value + "'s Phone Number");
			theForm.phone2.focus();
			return (false);
		}
		if (theForm.month_from2.value == "") {
			alert("Please Enter Your Starting Employment Date At " + theForm.employer2.value);
			theForm.month_from2.focus();
			return (false);
		}
		if (theForm.year_from2.value == "" || theForm.year_from2.value.length < 4 || isNaN(theForm.year_from2.value)) {
			alert("Please Enter A Valid Starting Employment Date At " + theForm.employer2.value + " - Ex. Jan 2001");
			theForm.year_from2.focus();
			return (false);
		}
		if (theForm.month_to2.value != "" && theForm.year_to2.value == "") {
			alert("Please Enter Your Ending Employment Date At " + theForm.employer2.value + " - Ex. Mar 2003");
			theForm.year_to2.focus();
			return (false);
		}
		if (theForm.year_to2.value != "" && (theForm.year_to2.value.length < 4 || isNaN(theForm.year_to2.value))) {
			alert("Please Enter A Valid Ending Employment Date At " + theForm.employer2.value + " - Ex. Mar 2003");
			theForm.year_to2.focus();
			return (false);
		}
		if (theForm.start_sal2.value == "" || isNaN(theForm.start_sal2.value)) {
			alert("Please Enter Your Starting Salary At " + theForm.employer2.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.start_sal2.focus();
			return (false);
		}
		if (theForm.start_sal_type2.value == "") {
			alert("Please Enter Your Starting Salary Payment Schedule At " + theForm.employer2.value + " - Ex. 30000 yearly or 8.60 hourly");
			theForm.start_sal_type2.focus();
			return (false);
		}
		if (theForm.month_to2.value != "" && (theForm.end_sal2.value == "" || isNaN(theForm.end_sal2.value))) {
			alert("Please Enter Your Ending Salary At " + theForm.employer2.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.end_sal2.focus();
			return (false);
		}
		if (theForm.month_to2.value != "" && theForm.end_sal_type2.value == "") {
			alert("Please Enter Your Ending Salary Payment Schedule At " + theForm.employer2.value + " - Ex. 30000 yearly or 8.60 hourly");
			theForm.end_sal_type2.focus();
			return (false);
		}
		if (theForm.end_sal2.value != "" && isNaN(theForm.end_sal2.value)) {
			alert("Please Enter Your Ending Salary At " + theForm.employer2.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.start_sal2.focus();
			return (false);
		}
		if (theForm.job_title2.value == "") {
			alert("Please Enter Your Job Title At " + theForm.employer2.value);
			theForm.job_title2.focus();
			return (false);
		}
		if (theForm.supervisor2.value == "") {
			alert("Please Enter Your Immediate Supervisor At " + theForm.employer2.value);
			theForm.supervisor2.focus();
			return (false);
		}
		if (theForm.duties2.value == "") {
			alert("Please Summarize Your Job Duties At " + theForm.employer2.value);
			theForm.duties2.focus();
			return (false);
		}
		if (theForm.month_to2.value != "" && theForm.leaving2.value == "") {
			alert("Please Specify The Reason For Leaving " + theForm.employer2.value);
			theForm.leaving2.focus();
			return (false);
		}
		if (theForm.contact2.value == "") {
			alert("May We Contact " + theForm.supervisor2.value + " At " + theForm.employer2.value + "?");
			theForm.contact2.focus();
			return (false);
		}
	}
	
	if (theForm.employer3.value != "") {
		if (theForm.address3.value == "") {
			alert("Please Enter " + theForm.employer3.value + "'s Street Address");
			theForm.address3.focus();
			return (false);
		}
		if (theForm.city3.value == "") {
			alert("Please Enter " + theForm.employer3.value + "'s City of Business");
			theForm.city3.focus();
			return (false);
		}
		if (theForm.state3.value == "") {
			alert("Please Choose " + theForm.employer3.value + "'s State of Business");
			theForm.state3.focus();
			return (false);
		}
		if (theForm.zip3.value == "" || isNaN(theForm.zip3.value) || theForm.zip3.value.length < 5) {
			alert("Please Enter " + theForm.employer3.value + "'s Zip Code");
			theForm.zip3.focus();
			return (false);
		}
		if (theForm.phone3.value == "" || isNaN(theForm.phone3.value) || theForm.phone3.value.length < 10) {
			alert("Please Enter " + theForm.employer3.value + "'s Phone Number");
			theForm.phone3.focus();
			return (false);
		}
		if (theForm.month_from3.value == "") {
			alert("Please Enter Your Starting Employment Date At " + theForm.employer3.value);
			theForm.month_from3.focus();
			return (false);
		}
		if (theForm.year_from3.value == "" || theForm.year_from3.value.length < 4 || isNaN(theForm.year_from3.value)) {
			alert("Please Enter A Valid Starting Employment Date At " + theForm.employer3.value + " - Ex. Jan 2001");
			theForm.year_from3.focus();
			return (false);
		}
		if (theForm.month_to3.value != "" && theForm.year_to3.value == "") {
			alert("Please Enter Your Ending Employment Date At " + theForm.employer3.value + " - Ex. Mar 2003");
			theForm.year_to3.focus();
			return (false);
		}
		if (theForm.year_to3.value != "" && (theForm.year_to3.value.length < 4 || isNaN(theForm.year_to3.value))) {
			alert("Please Enter A Valid Ending Employment Date At " + theForm.employer3.value + " - Ex. Mar 2003");
			theForm.year_to3.focus();
			return (false);
		}
		if (theForm.start_sal3.value == "" || isNaN(theForm.start_sal3.value)) {
			alert("Please Enter Your Starting Salary At " + theForm.employer3.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.start_sal3.focus();
			return (false);
		}
		if (theForm.start_sal_type3.value == "") {
			alert("Please Enter Your Starting Salary Payment Schedule At " + theForm.employer3.value + " - Ex. 30000 yearly or 8.60 hourly");
			theForm.start_sal_type3.focus();
			return (false);
		}
		if (theForm.month_to3.value != "" && (theForm.end_sal3.value == "" || isNaN(theForm.end_sal3.value))) {
			alert("Please Enter Your Ending Salary At " + theForm.employer3.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.end_sal3.focus();
			return (false);
		}
		if (theForm.month_to3.value != "" && theForm.end_sal_type3.value == "") {
			alert("Please Enter Your Ending Salary Payment Schedule At " + theForm.employer3.value + " - Ex. 30000 yearly or 8.60 hourly");
			theForm.end_sal_type3.focus();
			return (false);
		}
		if (theForm.end_sal3.value != "" && isNaN(theForm.end_sal3.value)) {
			alert("Please Enter Your Ending Salary At " + theForm.employer3.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.start_sal3.focus();
			return (false);
		}
		if (theForm.job_title3.value == "") {
			alert("Please Enter Your Job Title At " + theForm.employer3.value);
			theForm.job_title3.focus();
			return (false);
		}
		if (theForm.supervisor3.value == "") {
			alert("Please Enter Your Immediate Supervisor At " + theForm.employer3.value);
			theForm.supervisor3.focus();
			return (false);
		}
		if (theForm.duties3.value == "") {
			alert("Please Summarize Your Job Duties At " + theForm.employer3.value);
			theForm.duties3.focus();
			return (false);
		}
		if (theForm.month_to3.value != "" && theForm.leaving3.value == "") {
			alert("Please Specify The Reason For Leaving " + theForm.employer3.value);
			theForm.leaving3.focus();
			return (false);
		}
		if (theForm.contact3.value == "") {
			alert("May We Contact " + theForm.supervisor3.value + " At " + theForm.employer3.value + "?");
			theForm.contact3.focus();
			return (false);
		}
	}
	
	if (theForm.employer4.value != "") {
		if (theForm.address4.value == "") {
			alert("Please Enter " + theForm.employer4.value + "'s Street Address");
			theForm.address4.focus();
			return (false);
		}
		if (theForm.city4.value == "") {
			alert("Please Enter " + theForm.employer4.value + "'s City of Business");
			theForm.city4.focus();
			return (false);
		}
		if (theForm.state4.value == "") {
			alert("Please Choose " + theForm.employer4.value + "'s State of Business");
			theForm.state4.focus();
			return (false);
		}
		if (theForm.zip4.value == "" || isNaN(theForm.zip4.value) || theForm.zip4.value.length < 5) {
			alert("Please Enter " + theForm.employer4.value + "'s Zip Code");
			theForm.zip4.focus();
			return (false);
		}
		if (theForm.phone4.value == "" || isNaN(theForm.phone4.value) || theForm.phone4.value.length < 10) {
			alert("Please Enter " + theForm.employer4.value + "'s Phone Number");
			theForm.phone4.focus();
			return (false);
		}
		if (theForm.month_from4.value == "") {
			alert("Please Enter Your Starting Employment Date At " + theForm.employer4.value);
			theForm.month_from4.focus();
			return (false);
		}
		if (theForm.year_from4.value == "" || theForm.year_from4.value.length < 4 || isNaN(theForm.year_from4.value)) {
			alert("Please Enter A Valid Starting Employment Date At " + theForm.employer4.value + " - Ex. Jan 2001");
			theForm.year_from4.focus();
			return (false);
		}
		if (theForm.month_to4.value != "" && theForm.year_to4.value == "") {
			alert("Please Enter Your Ending Employment Date At " + theForm.employer4.value + " - Ex. Mar 2003");
			theForm.year_to4.focus();
			return (false);
		}
		if (theForm.year_to4.value != "" && (theForm.year_to4.value.length < 4 || isNaN(theForm.year_to4.value))) {
			alert("Please Enter A Valid Ending Employment Date At " + theForm.employer4.value + " - Ex. Mar 2003");
			theForm.year_to4.focus();
			return (false);
		}
		if (theForm.start_sal4.value == "" || isNaN(theForm.start_sal4.value)) {
			alert("Please Enter Your Starting Salary At " + theForm.employer4.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.start_sal4.focus();
			return (false);
		}
		if (theForm.start_sal_type4.value == "") {
			alert("Please Enter Your Starting Salary Payment Schedule At " + theForm.employer4.value + " - Ex. 30000 yearly or 8.60 hourly");
			theForm.start_sal_type4.focus();
			return (false);
		}
		if (theForm.end_sal4.value != "" && isNaN(theForm.end_sal4.value)) {
			alert("Please Enter Your Ending Salary At " + theForm.employer4.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.start_sal4.focus();
			return (false);
		}
		if (theForm.month_to4.value != "" && (theForm.end_sal4.value == "" || isNaN(theForm.end_sal4.value))) {
			alert("Please Enter Your Ending Salary At " + theForm.employer4.value + " - Ex. 30000 yearly or 8.60 hourly.  Do Not Use Special Characters");
			theForm.end_sal4.focus();
			return (false);
		}
		if (theForm.month_to4.value != "" && theForm.end_sal_type4.value == "") {
			alert("Please Enter Your Ending Salary Payment Schedule At " + theForm.employer4.value + " - Ex. 30000 yearly or 8.60 hourly");
			theForm.end_sal_type4.focus();
			return (false);
		}
		if (theForm.job_title4.value == "") {
			alert("Please Enter Your Job Title At " + theForm.employer4.value);
			theForm.job_title4.focus();
			return (false);
		}
		if (theForm.supervisor4.value == "") {
			alert("Please Enter Your Immediate Supervisor At " + theForm.employer4.value);
			theForm.supervisor4.focus();
			return (false);
		}
		if (theForm.duties4.value == "") {
			alert("Please Summarize Your Job Duties At " + theForm.employer4.value);
			theForm.duties4.focus();
			return (false);
		}
		if (theForm.month_to4.value != "" && theForm.leaving4.value == "") {
			alert("Please Specify The Reason For Leaving " + theForm.employer4.value);
			theForm.leaving4.focus();
			return (false);
		}
		if (theForm.contact4.value == "") {
			alert("May We Contact " + theForm.supervisor4.value + " At " + theForm.employer4.value + "?");
			theForm.contact4.focus();
			return (false);
		}
	}
return (true);
}

function check_org(theForm) {
	if (theForm.org_name1.value != "") {
		if (theForm.org_desc1.value == "") {
			alert("Please Enter The Description Of The Organization");
			theForm.org_desc1.focus();
			return (false);
		}
		if (theForm.org_office1.value == "") {
			alert("Please Enter The Offices Held In This Organization");
			theForm.org_office1.focus();
			return (false);
		}
	}
	
	if (theForm.org_name2.value != "") {
		if (theForm.org_desc2.value == "") {
			alert("Please Enter The Description Of The Organization");
			theForm.org_desc2.focus();
			return (false);
		}
		if (theForm.org_office2.value == "") {
			alert("Please Enter The Offices Held In This Organization");
			theForm.org_office2.focus();
			return (false);
		}
	}
	
	if (theForm.org_name3.value != "") {
		if (theForm.org_desc3.value == "") {
			alert("Please Enter The Description Of The Organization");
			theForm.org_desc3.focus();
			return (false);
		}
		if (theForm.org_office3.value == "") {
			alert("Please Enter The Offices Held In This Organization");
			theForm.org_office3.focus();
			return (false);
		}
	}
	
	if (theForm.org_name4.value != "") {
		if (theForm.org_desc4.value == "") {
			alert("Please Enter The Description Of The Organization");
			theForm.org_desc4.focus();
			return (false);
		}
		if (theForm.org_office4.value == "") {
			alert("Please Enter The Offices Held In This Organization");
			theForm.org_office4.focus();
			return (false);
		}
	}
return (true);
}

function check_references(theForm) {
	if (theForm.fullname1.value == "") {
		alert("Please Enter The Full Name of Your First Reference");
		theForm.fullname1.focus();
		return (false);
	}
	if (theForm.address1.value == "") {
		alert("Please Enter " + theForm.fullname1.value + "'s Mailing Address");
		theForm.address1.focus();
		return (false);
	}
	if (theForm.address1_cont.value == "") {
		alert("Please Enter " + theForm.fullname1.value + "'s City, State, and Zip Code");
		theForm.address1_cont.focus();
		return (false);
	}
	if (theForm.phone1.value == "" || theForm.phone1.value.length < 10 || isNaN(theForm.phone1.value)) {
		alert("Please Enter " + theForm.fullname1.value + "'s Telephone Number - Ex. 8124651080");
		theForm.phone1.focus();
		return (false);
	}
	if (theForm.occupation1.value == "") {
		alert("Please Enter " + theForm.fullname1.value + "'s Current Occupation");
		theForm.occupation1.focus();
		return (false);
	}
	
	if (theForm.fullname2.value == "") {
		alert("Please Enter The Full Name of Your Second Reference");
		theForm.fullname2.focus();
		return (false);
	}
	if (theForm.address2.value == "") {
		alert("Please Enter " + theForm.fullname2.value + "'s Mailing Address");
		theForm.address2.focus();
		return (false);
	}
	if (theForm.address2_cont.value == "") {
		alert("Please Enter " + theForm.fullname2.value + "'s City, State, and Zip Code");
		theForm.address2_cont.focus();
		return (false);
	}
	if (theForm.phone2.value == "" || theForm.phone2.value.length < 10 || isNaN(theForm.phone2.value)) {
		alert("Please Enter " + theForm.fullname2.value + "'s Telephone Number - Ex. 8124651080");
		theForm.phone2.focus();
		return (false);
	}
	if (theForm.occupation2.value == "") {
		alert("Please Enter " + theForm.fullname2.value + "'s Current Occupation");
		theForm.occupation2.focus();
		return (false);
	}
	
	if (theForm.fullname3.value == "") {
		alert("Please Enter The Full Name of Your Third Reference");
		theForm.fullname3.focus();
		return (false);
	}
	if (theForm.address3.value == "") {
		alert("Please Enter " + theForm.fullname3.value + "'s Mailing Address");
		theForm.address3.focus();
		return (false);
	}
	if (theForm.address3_cont.value == "") {
		alert("Please Enter " + theForm.fullname3.value + "'s City, State, and Zip Code");
		theForm.address3_cont.focus();
		return (false);
	}
	if (theForm.phone3.value == "" || theForm.phone3.value.length < 10 || isNaN(theForm.phone3.value)) {
		alert("Please Enter " + theForm.fullname3.value + "'s Telephone Number - Ex. 8124651080");
		theForm.phone3.focus();
		return (false);
	}
	if (theForm.occupation3.value == "") {
		alert("Please Enter " + theForm.fullname3.value + "'s Current Occupation");
		theForm.occupation3.focus();
		return (false);
	}
return (true);
}

function check_signature(theForm) {
	var sig_choices = 0;
	
	for (counter = 0; counter < theForm.ok.length; counter++) {
		if (theForm.ok[counter].checked) {
			sig_choices = sig_choices + 1;
		}
	}
	
	if (sig_choices < 7) {
		alert("You Must Acknowledge Each Statement Before Continuing");
		return (false);
	}
return (true);
}
//-->
