function tdOver(id)
{
  document.getElementById(id).className="over";
}

function tdOut(id)
{
  document.getElementById(id).className="out";
}

var idAffiche = 'T0'
function affiche(id)
{
  if (id != idAffiche)
  {
    document.getElementById(idAffiche).style.display="none"
    idAffiche = id
    document.getElementById(idAffiche).style.display="inline"
  }
}
