// Fonctions de gestion des calques gauche
function afficherCalque(calque)
	{
	obj = document.getElementById(calque);
	if (obj.style.display=='block')
		{
		obj.style.display='none'; 
		obj.style.visibility='hidden'; 
		} 
	else
		{
		obj.style.display='block'; 
		obj.style.visibility='visible'; 
		} 
	}

