//<![CDATA[
function pop(u,t) {
	switch(t) {
		case 1: return window.open(u,"","scrollbars=yes,width=400,height=300,left=20,top=20")
	}
	return window.open(u)
}

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-robot, svp.'); return false; }
    else if(hex_md5(captcha)!=vcaptcha) {
alert('Votre réponse à la question anti-robot est incorrecte.'); return false; }
return true;
}

function aff(e){//alert(e);
	for ( i = 1 ; i < 6 ; i++ ) {
         document.getElementById("id_"+i).style.display='none';
    }
    document.getElementById(e).style.display='block';

}

function off_on(x,e){//alert(e);
	if(x==1)
         document.getElementById(e).style.display='block';
    else
        document.getElementById(e).style.display='none';

}


//]]>