function iadtonlineCheckForm(form) {
	if(form.emailAddress && form.confirm_emailAddress && form.emailAddress.value != form.confirm_emailAddress.value) {
		alert("Confirm email address field does not match email address field.")
		return (false);
	}
	if(form.homePhone && form.confirm_homePhone && form.homePhone.value != form.confirm_homePhone.value) {
		alert("Confirm home phone field does not match home phone field.")
		return (false);
	}
	if (form.contactRequest && !form.contactRequest.checked) {
        alert("To request more information, you must understand that an Admission Representative will contact you.");
        return (false);
    }
    return true;
}

function iadtonlineProgramChange(form)
{
}
