function CheckForm()
{
var captcha=document.getElementById('formmail').captcha.value;
var vcaptcha=document.getElementById('formmail').vcaptcha.value;

if(captcha == "") {
alert('Veuillez répondre à la question anti-robot, svp.'); return false; }
else if(hex_md5(captcha)!=vcaptcha) {
alert('Votre réponse à la question anti-robot est incorrecte.'); return false; }
return true;
}
