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


if(captcha == "") {
alert('Veuillez repondre  la question anti-robot, svp.'); return false; }
else if(hex_md5(captcha)!=vcaptcha) {
alert('Votre reponse  la question anti-robot est incorrecte.'); return false; }


return true;
}
