function fmuonlineCheckForm(form) {
	if (form.program && form.program.value=="CJMOL" 
		&& form.state 
		&& (form.state.value == "AL"||form.state.value == "AK"||form.state.value == "CO"||form.state.value == "KS"
			||form.state.value == "MN"||form.state.value == "WI"||form.state.value == "TX")) {
		alert("We're sorry but this program is not available in your state.");
		return (false);
    }	
	if (form.program && form.program.value=="MPCOL" 
		&& form.state 
		&& (form.state.value == "AR"||form.state.value == "CO"||form.state.value == "MN"||form.state.value == "WY"
			||form.state.value == "AK"||form.state.value == "KS"||form.state.value == "WI")) {
		alert("We're sorry but this program is not available in your state.");
		return (false);
    }		
	if (form.program && form.program.value=="HSAOL" 
		&& form.state 
		&& form.state.value == "AL") {
		alert("We're sorry but this program is not available in your state.");
		return (false);
    }		
	if (form.program && form.program.value=="HSBOL" 
		&& form.state 
		&& form.state.value == "AL") {
		alert("We're sorry but this program is not available in your state.");
		return (false);
    }
	if(form.program && form.program.options[form.program.selectedIndex].text.indexOf("M")==0) {
		if (form.educationLevel && form.educationLevel.value != "Bachelors"
			&& form.educationLevel.value != "Masters" && form.educationLevel.value != "Doctoral") {
			alert("To select Master's degree, must have Bachelor's Degree or higher.");
			return (false);
		}
	}
	if (form.gradYear && form.gradYear.value == "") {
		alert("Please specify your graduation year.");
		return (false);
	}
	if (form.gradYear && form.gradYear.value > '2011') {
        alert("Your Student Information Form indicates that you do not meet the admissions requirements.");
        return (false);
    }
	if (form.contactRequest && !form.contactRequest.checked) {
        alert("To request more information, you must give Everest, Everest University Online, Everest College Canada and WyoTech express consent to contact you at the phone number(s) provided for the purposes of servicing this inquiry, contacting you in the future and removal of this number(s) from Everest, Everest University Online, Everest College Canada and WyoTech Do Not Call list.");
        return (false);
    }
    return true;
}

function fmuonlineProgramChange(form)
{
}
