function setChoix()
{
var allLink = document.getElementsByTagName("A");
for (var j=0;j<allLink.length;j++)
{
if (allLink[j].className == "choix")
{
allLink[j].onclick = selectThis;
allLink[j].actif = false;
}
}
}

function selectThis()
{
var el = document.getElementById(this.getAttribute("choix"));
el.style.display = this.actif?"none":"block";
this.actif = !this.actif;
this.blur();
return false;
}