function test_form(f)
  {
          var bol=true; var txt = "";
          if (f.nom.value == "")
          {
                  txt = "Vous devez entrer votre nom dans le formulaire\\You must enter your name in the name field\n";
                  bol=false;
          }

          /*if (f.codedesecurite.value == "")
          {
                  txt = "Vous devez entrer le code de sécurité dans le formulaire\\You must enter the security code in the security field\n";
                  bol=false;
          }*/

          if ((f.email.value == "") && (f.telephone.value == ""))
          {
                  txt = txt + "Vous devez nous laisser au moins votre email ou votre téléphone.\\You should give us at least your e-mail or phone number\n\n";
                  bol = false;
          }
  		if ((f.cpostal.value == "") && (f.ville.value == "") && (f.pays.value == ""))
          {
                  txt = txt + "Vous devez remplir les champs code postal, ville et pays\npour que nous puissions vous recontacter.\\You must fill out the postal code, city and country\nso we can get back to you";
                  bol = false;
          }
          if (txt != "")
          {
                  alert (txt);
          }
          return (bol);
  }