function verify_step1() {
	var msg = "Des erreurs ont été trouvées lors de la validation de ce formulaire !\n _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n\n";
	var errors = "FALSE";
	if (isEmpty(document.newce.societe.value))  {
		errors = "TRUE";
		msg += "Le champ SOCIETE est un champ obligatoire.\n\n";
	}
	if (isEmpty(document.newce.adresse1.value)) {
		errors = "TRUE";
		msg += "Le champ ADRESSE est un champ obligatoire .\n\n";
	}
	if (isEmpty(document.newce.telephone.value) || isNotTelephone(document.newcheque.telephone.value, "all"))  {
		errors = "TRUE";
		msg += "Le champ TELEPHONE est un champ obligatoire.\n\n";
	}
	if (isNotEmailAdress(document.newce.email.value)) {
		errors = "TRUE";
		msg += "Le champ EMAIL est un champ obligatoire.Doit être renseigné par un email valide. \n\n";
	}
	if (isEmpty(document.newce.contact.value)) {
		errors = "TRUE";
		msg += "Le champ CONTACT est un champ obligatoire.\n\n";
	}
	if (isEmpty(document.newce.codepostal.value) || isNotCodePostal(document.newcheque.codepostal.value)) {
		errors = "TRUE";
		msg += "Le champ CODE POSTAL est un champ obligatoire.\n\n";
	}
	if (isEmpty(document.newce.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.newce.submit.disabled=="true";
	}
}



function validcondition()
{
    if (document.newce.accept.checked == true){
        return true;
    }else{
  		 document.newce.submit.disabled=="true";
        return false;
	}

}
}