function checkinforequest (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.Email.value == "") {
    alert( "Please tell us your email address." );
    form.Email.focus();
    return false ;
  }
  if (form.home1.value == "") {
    alert( "Please give us your full phone number including area code." );
    form.home1.focus();
    return false ;
  }
  if (form.home2.value == "") {
    alert( "Please give us your full phone number including area code." );
    form.home2.focus();
    return false ;
  }
  if (form.home3.value == "") {
    alert( "Please give us your full phone number including area code." );
    form.home3.focus();
    return false ;
  }
  if (form.GraduationYear.value == "") {
    alert( "Please tell us the year in which you graduated or received your GED or will graduate or will receive your GED." );
    form.GraduationYear.focus();
    return false ;
  }
  myOption1 = -1;
  for (i=form.BestContactTime.length-1; i > -1; i--) {
    if (form.BestContactTime[i].checked) {
    myOption1 = i; i = -1;
    }
  }
  if (myOption1 == -1) {
    alert("Please tell us the best time of day to contact you.");
    return false;
  }
  if (form.Location.selectedIndex == 0) {
    alert( "Please select the location in which you are most interested." );
    form.Location.focus();
    return false ;
  }
  myOption2 = -1;
  for (i=form.AreaOfInterest.length-1; i > -1; i--) {
    if (form.AreaOfInterest[i].checked) {
    myOption2 = i; i = -1;
    }
  }
  if (myOption2 == -1) {
    alert("Please tell us the subject area that interests you most. Choose UNDECIDED if you are unsure.");
    return false;
  }
  if (form.BroughtToWebsite.selectedIndex == 0) {
    alert( "Please tell us how you found our website." );
    form.BroughtToWebsite.focus();
    return false ;
  }
  return true ;
}
