function chColorIn(cellule, lien)
{
	cellule.style.backgroundColor = "white";
	lien.style.color = "#004080";
}
function chColorOut(cellule, lien)
{
	cellule.style.backgroundColor = "#004080";
	lien.style.color = "white";
} 