function chkFormular()
	  {
	   if(document.Formular.societe.value == "")
	    {
	     alert("Veuillez indiquez votre société");
	     document.Formular.societe.focus();
	     return false;
	    }
	   if(document.Formular.nom.value == "")
	    {
	     alert("Veuillez indiquez votre nom");
	     document.Formular.nom.focus();
	     return false;
	    }
	   if(document.Formular.tel.value == "")
	    {
	     alert("Veuillez indiquez votre numéro de télephone");
	     document.Formular.tel.focus();
	     return false;
	    }
	   if(document.Formular.email.value == "")
	    {
	     alert("Veuillez indiquez votre Email");
	     document.Formular.email.focus();
	     return false;
	    }
	   if(document.Formular.email.value.indexOf('@') == -1)
	    {
	     alert("La nomenclature de l'adresse email n'est pas correcte");
	     document.Formular.email.focus();
	     return false;
	    }
	   if(document.Formular.rue.value == "")
	    {
	     alert("Veuillez indiquez votre rue");
	     document.Formular.rue.focus();
	     return false;
	    }
	   if(document.Formular.code_postal.value == "")
	    {
	     alert("Veuillez indiquez votre code postal");
	     document.Formular.code_postal.focus();
	     return false;
	    }
	   if(document.Formular.ville.value == "")
	    {
	     alert("Veuillez indiquez votre ville");
	     document.Formular.ville.focus();
	     return false;
	    }
	   if(document.Formular.produit.value == "")
	    {
	     alert("Veuillez indiquez votre produit");
	     document.Formular.produit.focus();
	     return false;
	    }  
	  }	