<!-- 
function validateBabySearch(thisform){
   if (thisform.babylastname.value == "") {
      thisform.babylastname.focus();
      alert("You must enter the Child's Last Name, please try again.");
      return false;
   }
   return true;
}

function validateAdvSearch(thisform){
   if (thisform.babylastname.value == "" && thisform.momlastname.value == "" && thisform.dadlastname.value == "") {
      thisform.babylastname.focus();
      alert("You must enter the Child's Last Name, the Mom's Last Name or the Dad's Last Name at a minimum, please try again.");
      return false;
   }
   if (checkDate('Calendar1') == 1) {
      thisform.babydob.focus();
      alert("Please enter a valid Baby's Due Date or Birthdate.");
      return false;
   }
   return true;
}

function validateBabyAccess(thisform){
   if (thisform.fromname.value == "" && thisform.fromemail.value == "") {
      thisform.fromname.focus();
      alert("You must enter your Name and Email to request access, please try again.");
      return false;
   }
   if (validateEmail2(thisform.fromemail.value)) {
      return true;
   } else {
      thisform.fromemail.select();
      thisform.fromemail.focus();
      return false;
   }   
   return true;
}
-->