function toggleObj(monObjet)
{
	monObjet.style.display=(monObjet.style.display=='none')?('block'):('none');
}