  /*** Vérifications des saisie dans customers/search.inc.php ***/
  
  function Verif1() 
  {
   var Correct=true;
   if (document.ChercheNom.ListeMots.value.length==0)
   {
    Correct=false;
    alert('Veuillez entrer au moins un mot-clé');
    document.ChercheNom.ListeMots.focus();
    return false;
   }
   if (Correct==true)
   {
    if (document.ChercheNom.ListeMots.value.length<3)
    {
     Correct=false;
     alert('Le mot-clé est trop court pour être traité');
     document.ChercheNom.ListeMots.focus();
     return false;
    }
   }
   if (Correct==true)
   {
    document.ChercheNom.ListeMots.focus();
    return true;
   }
  }

