<!--

function verif() {
var reg= /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,})+$/;
if ((document.form.nom.value=="") || (document.form.tel.value=="") || (document.form.mail.value=="") || (document.form.demande.value=="")) {
alert("Les champs en gras sont obligatoires");
document.form.nom.focus();
return false;
}
if(reg.test(document.form.mail.value)==false) {
alert("Le format email est incorrect");
document.form.mail.focus();
return false;
}
return true;
} 

//-->
