function expand(calque,b_afficher)
{
	calque=document.getElementById(calque);

	if (calque.style) //IE, FF, OP, NS6+
	{		
		calque.style.display=b_afficher?'block':'none';
	}
	else //NS marche pas
	{
	}
}