function controle(){
if (document.ff.email.value== ""){alert("Il faut préciser une adresse email ! ");document.ff.email.style.backgroundColor = "#F3C200";document.ff.email.focus();return false;}
else{document.ff.email.style.backgroundColor = "#FFFFFF";}

if (!document.ff.email.value.match("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*$")){alert("Erreur dans votre adresse email");document.ff.email.style.backgroundColor = "#F3C200";document.ff.email.focus();return false;}
else{document.ff.email.style.backgroundColor = "#FFFFFF";}

if (document.ff.question.value== ""){alert("Il faut préciser votre question ");document.ff.question.style.backgroundColor = "#F3C200";document.ff.question.focus();return false;}
else{document.ff.question.style.backgroundColor = "#FFFFFF";}


}



