 
function CheckForm()
{
var captcha=document.getElementById('form').captcha.value;
var vcaptcha=document.getElementById('form').vcaptcha.value;
 
if(captcha == "") {
alert('Veuillez répondre à la question anti-spam, svp.'); return false; }
else if(hex_md5(captcha)!=vcaptcha) {
alert('Votre réponse à la question anti-spam est incorrecte.'); return false; }
return true;
}
 