function changeCouleurCellule(leObjet, couleurBackground, AfficheMain)
{
// EX : <TD onMouseOut="changeCouleurCellule(this, 'red', false);" onMouseOver="changeCouleurCellule(this, 'green', true);"

  leObjet.style.backgroundColor = couleurBackground;
  
  if (AfficheMain == true)
    leObjet.style.cursor = 'pointer';
}