function iwuCheckForm(form) {
	if (form.state && (form.state.value == "TN"||form.state.value == "AL"||form.state.value == "DC")) {
		alert("Indiana Wesleyan University does not currently accept applications from your state.");
		return (false);
	}
	if (form.custom1 && form.custom1.value == '') {
        alert("Please specify preferred method of contact.");
        return (false);
    }
	if (form.ageRange && form.ageRange.value=='') {
		alert("Please specify age.");
		return (false);
	}
	if (form.ageRange && (form.ageRange.value == "16"||form.ageRange.value == "17")) {
		alert("You must be 19 years of age or above to qualify for this offer.");
		return (false);
	}
	if (form.program && form.program.value.indexOf("M")==0 && form.educationLevel && form.educationLevel.value != "Bachelors" && form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
        alert("You must have Bachelor's Degree or above to qualify for this offer.");
        return (false);
    }
	if (form.contactRequest && form.contactRequest.value=='') {
        alert("Please specify whether you acknowledge that by submitting this form, you may be contacted by telephone and email.");
        return (false);
    }
	if (form.contactRequest && form.contactRequest.value=='No') {
        alert("You must acknowledge that by submitting this form, you may be contacted by telephone and email.");
        return (false);
    }
    return true;
}

function iwuProgramChange(form)
{
}