function sjvcdmCheckForm(form) {
	if (form.gradYear && form.gradYear.value == '') {
        alert("Please specify High School Graduation Year.");
        return (false);
    }
	if (form.mobilePhone && form.mobilePhone.value == "") {
		alert("Please provide mobile phone number.");
		return (false);
	}
	if (form.custom1 && !form.custom1[0].checked && !form.custom1[1].checked) {
		alert("Please specify whether you would like to opt-in to mobile messaging from SJVC.");
		return (false);
	}
    return true;
}

function sjvcdmProgramChange(form)
{
}