<!--
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.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_no.value == "") {
		alert("Do you have the legal right to work in this country?  Please Choose Your Status");
		theForm.citizen_no.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);
	}
	if (theForm.position1.value == "") {
		alert("Please Enter The Desired Position And Include Job Reference Number, If Possible");
		theForm.position1.focus();
		return (false);
	}
	if (theForm.salary1.value == "" || isNaN(theForm.salary1.value)) {
		alert("Please Enter Your Required Job Salary With No Special Characters - Ex. 10.50");
		theForm.salary1.focus();
		return (false);
	}
	if (theForm.salary_type1.value == "") {
		alert("Please Choose The Salary Type From The Dropdown");
		theForm.salary_type1.focus();
		return (false);
	}
	if (theForm.available.value == "") {
		alert("Please Enter The Date Your Are Available For Work");
		theForm.available.focus();
		return (false);
	}
	
	var work_choices = 0;
	
	for (counter = 0; counter < theForm.work_schedule.length; counter++) {
		if (theForm.work_schedule[counter].checked) {
			work_choices = work_choices + 1;
		}
	}
	
	if (work_choices == 0) {
		alert("Please Indicate Your Desired Working Schedule.  Check All That Apply");
		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.usi_app.value == "") {
		alert("Have You Filed An Application or Been Employed Before By USI?");
		theForm.usi_app.focus();
		return (false);
	}
	if (theForm.usi_app.value == "1" && theForm.usi_app_yes.value == "") {
		alert("Please Specify The Dates You Have Been Employed By USI - Ex. 01/02 - 04/04");
		theForm.usi_app_yes.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);
	}
	
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.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.contact1.value == "") {
		alert("May We Contact " + theForm.supervisor1.value + " At " + theForm.employer1.value + "?");
		theForm.contact1.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 == "") {
		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.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.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 Zip Code");
			theForm.phone2.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.contact2.value == "") {
			alert("May We Contact " + theForm.supervisor2.value + " At " + theForm.employer2.value + "?");
			theForm.contact2.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 == "") {
			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. 3000 yearly or 8.60 hourly");
			theForm.start_sal_type2.focus();
			return (false);
		}
		if ((theForm.end_sal2.value != "" || theForm.month_to2.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.end_sal2.value != "" || 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.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.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 Zip Code");
			theForm.phone3.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.contact3.value == "") {
			alert("May We Contact " + theForm.supervisor3.value + " At " + theForm.employer3.value + "?");
			theForm.contact3.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 == "") {
			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. 30,000 yearly or 8.60 hourly");
			theForm.start_sal_type3.focus();
			return (false);
		}
		if ((theForm.end_sal3.value != "" || theForm.month_to3.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.end_sal3.value != "" || theForm.month_to3.value != "") && theForm.end_sal_type3.value == "") {
			alert("Please Enter Your Ending Salary Payment Schedule At " + theForm.employer3.value + " - Ex. 30,000 yearly or 8.60 hourly");
			theForm.end_sal_type3.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.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.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.contact4.value == "") {
			alert("May We Contact " + theForm.supervisor4.value + " At " + theForm.employer4.value + "?");
			theForm.contact4.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 == "") {
			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. 30,000 yearly or 8.60 hourly");
			theForm.start_sal_type4.focus();
			return (false);
		}
		if ((theForm.end_sal4.value != "" || theForm.month_to4.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.end_sal4.value != "" || theForm.month_to4.value != "") && theForm.end_sal_type4.value == "") {
			alert("Please Enter Your Ending Salary Payment Schedule At " + theForm.employer4.value + " - Ex. 30,000 yearly or 8.60 hourly");
			theForm.end_sal_type4.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);
		}
	}
return (true);
}

function check_education(theForm) {
	if (theForm.high_name.value == "") {
		alert("Please Enter The High School/GED Institution Name");
		theForm.high_name.focus();
		return (false);
	}
	if (theForm.high_loc.value == "") {
		alert("Please Enter The Institution Location");
		theForm.high_loc.focus();
		return (false);
	}
	if (theForm.high_years.value == "") {
		alert("Please Enter The Number of Years You Attended This Institution");
		theForm.high_years.focus();
		return (false);
	}
	if (theForm.high_grad.value == "") {
		alert("Did You Graduate This Institution?");
		theForm.high_grad.focus();
		return (false);
	}
	if (theForm.high_degree.value == "") {
		alert("Please Specify The Major/Course Degree or Diploma Obtained");
		theForm.high_degree.focus();
		return (false);
	}
	
	if (theForm.college_name.value != "") {
		if (theForm.college_loc.value == "") {
			alert("Please Enter The Institution Location");
			theForm.college_loc.focus();
			return (false);
		}
		if (theForm.college_years.value == "") {
			alert("Please Enter The Number of Years You Attended This Institution");
			theForm.college_years.focus();
			return (false);
		}
		if (theForm.college_grad.value == "") {
			alert("Did You Graduate This Institution?");
			theForm.college_grad.focus();
			return (false);
		}
		if (theForm.college_degree.value == "") {
			alert("Please Specify The Major/Course Degree or Diploma Obtained");
			theForm.college_degree.focus();
			return (false);
		}
	}
	
	if (theForm.tech_name.value != "") {
		if (theForm.tech_loc.value == "") {
			alert("Please Enter The Institution Location");
			theForm.tech_loc.focus();
			return (false);
		}
		if (theForm.tech_years.value == "") {
			alert("Please Enter The Number of Years You Attended This Institution");
			theForm.tech_years.focus();
			return (false);
		}
		if (theForm.tech_grad.value == "") {
			alert("Did You Graduate This Institution?");
			theForm.tech_grad.focus();
			return (false);
		}
		if (theForm.tech_degree.value == "") {
			alert("Please Specify The Major/Course Degree or Diploma Obtained");
			theForm.tech_degree.focus();
			return (false);
		}
	}
	
	if (theForm.tech_name.value != "") {
		if (theForm.tech_loc.value == "") {
			alert("Please Enter The Institution Location");
			theForm.tech_loc.focus();
			return (false);
		}
		if (theForm.tech_years.value == "") {
			alert("Please Enter The Number of Years You Attended This Institution");
			theForm.tech_years.focus();
			return (false);
		}
		if (theForm.tech_grad.value == "") {
			alert("Did You Graduate This Institution?");
			theForm.tech_grad.focus();
			return (false);
		}
		if (theForm.tech_degree.value == "") {
			alert("Please Specify The Major/Course Degree or Diploma Obtained");
			theForm.tech_degree.focus();
			return (false);
		}
	}
	
	if (theForm.other_name.value != "") {
		if (theForm.other_loc.value == "") {
			alert("Please Enter The Institution Location");
			theForm.other_loc.focus();
			return (false);
		}
		if (theForm.other_years.value == "") {
			alert("Please Enter The Number of Years You Attended This Institution");
			theForm.other_years.focus();
			return (false);
		}
		if (theForm.other_grad.value == "") {
			alert("Did You Graduate This Institution?");
			theForm.other_grad.focus();
			return (false);
		}
		if (theForm.other_degree.value == "") {
			alert("Please Specify The Major/Course Degree or Diploma Obtained");
			theForm.other_degree.focus();
			return (false);
		}
	}
return (true);
}

function check_training(theForm) {
	var office_choices = 0;
	
	for (counter = 0; counter < theForm.office_skills.length; counter++) {
		if (theForm.office_skills[counter].checked) {
			office_choices = office_choices + 1;
		}
	}
	
	if (office_choices == 0) {
		alert("Please Indicate Your Office Skills.  Check All That Apply");
		return (false);
	}
	
	var building_choices = 0;
	
	for (counter = 0; counter < theForm.building_skills.length; counter++) {
		if (theForm.building_skills[counter].checked) {
			building_choices = building_choices + 1;
		}
	}
	
	if (building_choices == 0) {
		alert("Please Indicate Your Building Skills.  Check All That Apply");
		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.occupation1.value == "") {
		alert("Please Enter " + theForm.fullname1.value + "'s Current Occupation");
		theForm.occupation1.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.fullname2.value == "") {
		alert("Please Enter The Full Name of Your Second Reference");
		theForm.fullname2.focus();
		return (false);
	}
	if (theForm.occupation2.value == "") {
		alert("Please Enter " + theForm.fullname2.value + "'s Current Occupation");
		theForm.occupation2.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.fullname3.value == "") {
		alert("Please Enter The Full Name of Your Third Reference");
		theForm.fullname3.focus();
		return (false);
	}
	if (theForm.occupation3.value == "") {
		alert("Please Enter " + theForm.fullname3.value + "'s Current Occupation");
		theForm.occupation3.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);
	}
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);
}
//-->
