   function VerifForm(formulaire)
   {
    if (document.formulaire.fnom.value == "")
    {
     alert("Vous n'avez pas indiqué votre Nom...");
     document.formulaire.fnom.focus();
    }
    else
    {
     adresse=document.formulaire.imel.value;
     var place=adresse.indexOf("@",1);
     var point=adresse.indexOf(".",place+3);
     if (!(place > -1 && point >1 && point+2 < adresse.length))
     {
      alert("Vous n'avez pas entré une adresse e-mail valide");
      document.formulaire.imel.focus();
     }
     else
     {
      if (document.formulaire.topo.value == "")
      {
       alert("Vous avez oublié votre message !");
       document.formulaire.topo.focus();
      }
      else
      {
       formulaire.submit();
      }
     }
    }
   }

   function compter(f) 
   {
    var max=255;  		// 255 caracteres maximum
    var txt=formulaire.topo.value;
    var nb=txt.length;
    if (nb>max)
    {
     alert("Attention ! Pas plus de "+max+" caracteres");
     formulaire.topo.value=txt.substring(0,max);
     nb=max;
    }
    formulaire.nbcar.value=nb;
   }

   function stop5(formulaire) 
   {
    var txt=formulaire.adcp.value;
    var nb=txt.length;
    if (nb>=4)
    {
     formulaire.adcp.value=txt.substring(0,4);
     document.formulaire.advl.focus();
    }
//    formulaire.nbcar.value=nb;
   }
