<!--
function affiche(id)
{
elem = document.getElementById(id);
theDisp = elem.style.display == "none" ? "block" : "none" 
elem.style.display = theDisp 
}
//-->