<!--
function verify() {

                var msg = "Des erreurs ont été trouvées lors de la validation de ce formulaire !\n _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n\n";
                var errors = "FALSE";

                if (isEmpty(document.appeldoffreform.nom.value))  {
                        errors = "TRUE";
                        msg += "Le champ NOM est un champ obligatoire.\n\n";
                }

                if (isEmpty(document.appeldoffreform.prenom.value)) {
                        errors = "TRUE";
                        msg += "Le champ PRENOM est un champ obligatoire .\n\n";
                }

                /*if (isEmpty(document.appeldoffreform.telephone.value) ||  isNotTelephone(document.appeldoffreform.telephone.value, "all") )  {
                        errors = "TRUE";
                        msg += "Le champ TELEPHONE est un champ obligatoire.\n\n";
                }*/
                
                if (isNotEmailAdress(document.appeldoffreform.email.value)) {
                        errors = "TRUE";
                        msg += "Le champ EMAIL est un champ obligatoire.Doit être renseigné par un email valide. \n\n";
                }
               
                if (isEmpty(document.appeldoffreform.societe.value)) {
                        errors = "TRUE";
                        msg += "Le champ SOCIETE est un champ obligatoire.\n\n";
                }
                if (isEmpty(document.appeldoffreform.adresse.value)) {
                        errors = "TRUE";
                        msg += "Le champ ADRESSE est un champ obligatoire.\n\n";
                }
                if (isEmpty(document.appeldoffreform.codepostal.value) || isNotCodePostal(document.appeldoffreform.codepostal.value)) {
                        errors = "TRUE";
                        msg += "Le champ CODE POSTAL est un champ obligatoire.\n\n";
                }
                if (isEmpty(document.appeldoffreform.ville.value)) {
                        errors = "TRUE";
                        msg += "Le champ VILLE est un champ obligatoire.\n\n";
                }
                
                
                if (errors == "TRUE") {
                        msg += " _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n\nCorrigez ces erreurs avant de soumettre ce formulaire.\n";
                        alert(msg);
                        return false;
                }
                else {
                   document.appeldoffreform.submit.disabled=="true";
                }
          }


