<!--
function AffBulle(current) {
  if (document.all) {
    document.all[current].style.visibility="visible";
  }
  else if (document.getElementById) {
    document.getElementById(current).style.visibility="visible";
  }
}
function HideBulle(current) {
	if (document.all) {document.all[current].style.visibility="hidden";}
	else if (document.getElementById){document.getElementById(current).style.visibility="hidden";}
}
function displaybloc(current) {
  if (document.all) {
    document.all[current].style.display="block";
  }
  else if (document.getElementById) {
    document.getElementById(current).style.display="block";
  }
}
//-->