function hoverTd(td, id){
	td.style.background = "url('./image/logo_bouton_patte.jpg') no-repeat white";
	document.getElementById(id).style.display = "block";
}

function outTd(td, id){
	td.style.background = "transparent";
	document.getElementById(id).style.display = "none";
}

function verifEmail(email)
{
	if ((email.value.indexOf("@") != "-1") && (email.value.indexOf(".") != "-1") && (email.value != ""))
		return (true);
	return (false);
}

function generator_condition(cond){
	cond = eval(cond);
	for (i=0; i < cond.length; i++){
		service = eval(cond[i]);
		for (j=0; j < service.length; j++){
			alert(service[j]);
			//if (document.getElementById(service[j]).isChecked())
			//	alert("Prout");
		}

	}
}