	function validate() {
		if(document.win.entrantTitle.value == "") {
			alert("Title field cannot be blank.");
			document.win.entrantTitle.focus();
			return false;
		}
		if(document.win.firstName.value == "") {
			alert("First Name cannot be blank.");
			document.win.firstName.focus();
			return false;			
		}
		if(document.win.lastName.value == "") {
			alert("Last Name cannot be blank.");
			document.win.lastName.focus();
			return false;
		}
		if(document.win.school.value == "") {
			alert("School cannot be blank.  If your school is not listed, select 'other' and fill in the appropriate name.");
			document.win.school.focus();
			return false;
		}
		if(document.win.school.value == "other" && document.win.otherSchool.value == "") {
			alert("Please enter the name of your school.");
			document.win.otherSchool.focus();
			return false;
		}
		if(document.win.gradYear.value == "other" && document.win.otherGradYear.value == "") {
			alert("In what year do you plan to graduate?");
			document.win.otherGradYear.focus();
			return false;
		}
		if(document.win.campusRep.value == "") {
			alert("Would you be interested in being a Campus Rep?  Please select YES or NO.");
			document.win.campusRep.focus();
			return false;
		}
		if(document.win.groupDiscount.value == "") {
			alert("Would you be interested in group discounts on our course?  Please select YES or NO.");
			document.win.groupDiscount.focus();
			return false;
		}
		if(document.win.student.value == "") {
			alert("Are you currently a student?");
			document.win.student.focus();
			return false;
		}
		if(document.win.student.value == "yes") {
			if(document.win.schAddress.value == "") {
				alert("Address at school cannot be blank.");
				document.win.schAddress.focus();
				return false;
			}
			if(document.win.schCity.value == "") {
				alert("School City cannot be blank.");
				document.win.schCity.focus();
				return false;
			}
			if(document.win.schState.value == "") {
				alert("School State cannot be blank.");
				document.win.schCity.focus();
				return false;
			}
			if(document.win.schZip.value == "") {
				alert("School Postal Code cannot be blank.");
				document.win.schZip.focus();
				return false;
			}

			if(document.win.schEmail.value == "") {
				alert("School E-mail Address cannot be blank.");
				document.win.schEmail.focus();
				return false;
			}
			else if(document.win.schEmail.value.indexOf('@', 0) == -1 || document.win.schEmail.value.indexOf('.',0) == -1) {
				alert("Invalid E-mail address!");
				document.win.schEmail.focus();
				return false;
			}
			if(document.win.permAddress.value == "") {
				alert("Permenant Address cannot be blank.");
				document.win.permAddress.focus();
				return false;
			}
			if(document.win.permCity.value == "") {
				alert("Permenant Address City cannot be blank.");
				document.win.permCity.focus();
				return false;
			}
			if(document.win.permState.value == "") {
				alert("Permenant Address State cannot be blank.");
				document.win.permCity.focus();
				return false;
			}
			if(document.win.permZip.value == "") {
				alert("Permenant Address Postal Code cannot be blank.");
				document.win.permZip.focus();
				return false;
			}
			if(document.win.permAreaCode.value == "") {
				alert("You must include the area code of your permenant phone number.");
				document.win.permAreaCode.focus();
				return false;
			}
			if(document.win.permPhone.value == "") {
				alert("Permenant Phone number cannot be blank.");
				document.win.permPhone.focus();
				return false;
				}
			if(document.win.aid.value == "") {
				alert("Do you receive financial aid while in school?");
				document.win.aid.focus();
				return false;
			}
			if(document.win.aid.value == "yes" && document.win.aidPercent == "") {
				alert("What percent of your tuition do you receive in financial aid?");
				document.win.aidPercent.focus();
				return false;
			}
		}

		if(document.win.employed.value == "") {
			alert("Are you currently employed?");
			document.win.employed.focus();
			return false;
		}
		if (document.win.employed.value == "yes") {

			if(document.win.homeAddress.value == "") {
				alert("Home Address cannot be blank.");
				document.win.homeAddress.focus();
				return false;
			}
			if(document.win.homeCity.value == "") {
				alert("Home City cannot be blank.");
				document.win.homeCity.focus();
				return false;
			}
			if(document.win.homeState.value == "") {
				alert("Home State cannot be blank.");
				document.win.homeState.focus();
				return false;
			}
			if(document.win.homeZip.value == "") {
				alert("Home Postal Code cannot be blank.");
				document.win.homeZip.focus();
				return false;
			}
			if(document.win.homeAreaCode.value == "") {
				alert("You must include the area code of your permenant phone number.");
				document.win.permAreaCode.focus();
				return false;
			}
			if(document.win.homePhone.value == "") {
				alert("Permenant Phone number cannot be blank.");
				document.win.permPhone.focus();
				return false;
			}
			if(document.win.homeEmail.value == "") {
				alert("Home E-mail Address cannot be blank.");
				document.win.homeEmail.focus();
				return false;
			}
			else if(document.win.homeEmail.value.indexOf('@', 0) == -1 || document.win.homeEmail.value.indexOf('.',0) == -1) {
				alert("Invalid E-mail address!");
				document.win.homeEmail.focus();
				return false;
			}
		}
		if(document.win.employed.value == "yes" && document.win.employer.value == "") {
			alert("Please enter the name of your employer.");
			document.win.employer.focus();
			return false;
		}
	
}