function checkinfoform(infoitem)  {
   if (!infoitem.route[0].checked && !infoitem.route[1].checked && !infoitem.route[2].checked)  {
      alert("Please choose one of the choices to tell us what kind of information you are interested in.");
      infoitem.route[0].focus();
      return false;
   }
   if (infoitem.fname.value=="")  {
      alert("Please enter your first name.");
      infoitem.fname.focus();
      return false;
   }
   if (infoitem.lname.value=="")  {
      alert("Please enter your last name.");
      infoitem.lname.focus();
      return false;
   }
   if (infoitem.email.value=="")  {
      alert("Please enter your email so that we can contact you with the information you are requesting.");
      infoitem.email.focus();
      return false;
   }
   if (infoitem.hphone.value=="")  {
      alert("Please enter your home phone so that we can contact you with the information you are requesting.");
      infoitem.hphone.focus();
      return false;
   }
   if (infoitem.contactpref.value=="none")  {
      alert("Please choose a contact preference.");
      infoitem.contactpref.focus();
      return false;
   }
   return true;
}

