function checkcareerday (form)
{
  if (form.firstName.value == "") {
    alert( "Please tell us your first name." );
    form.firstName.focus();
    return false ;
  }
  if (form.lastName.value == "") {
    alert( "Please tell us your last name." );
    form.lastName.focus();
    return false ;
  }
  if (form.homePhone.value == "") {
    alert( "Please tell us your home phone number." );
    form.homePhone.focus();
    return false ;
  }
  if (form.cellPhone.value == "") {
    alert( "Please tell us your cell phone number." );
    form.cellPhone.focus();
    return false ;
  }
  if (form.Provider.selectedIndex == 0) {
    alert( "Please tell us your cell phone service provider." );
    form.Provider.focus();
    return false ;
  }
  if (form.Email.value == "") {
    alert( "Please tell us your email address." );
    form.Email.focus();
    return false ;
  }
  if (form.HighSchool.value == "") {
    alert( "Please tell us the name of the high school from which you did or will graduate." );
    form.HighSchool.focus();
    return false ;
  }
  if (form.GraduationYear.value == "") {
    alert( "Please select the year in which you graduated from high school or received your GED." );
    form.GraduationYear.focus();
    return false ;
  }
  if (form.Campus.selectedIndex == 0) {
    alert( "Please select the South Hills location where you will be attending Career Day." );
    form.Campus.focus();
    return false ;
  }
  if (form.program.selectedIndex == 0) {
    alert( "Please select the program in which you are most interested." );
    form.program.focus();
    return false ;
  }
  return true ;
}
