// JavaScript Document pour Expression de groupes politiques
// Auteur Carine LAVAL
// Date 07/02/2006 15:22

window.onload=montre;
function montre(nomCel) {
	var d = document.getElementById(nomCel);
		
	if (d) {d.style.display='block';}
}

function montre(id1,id2) {
	var d1 = document.getElementById(id1);
	var d2 = document.getElementById(id2);
	
	if (d1) {d1.style.display='block';}
	if (d2) {d2.style.display='block';}
}

function cacheCell(nomCel) 
{
	args=cacheCell.arguments;
	if(args.length>1)
	{
		for (i=0;i<args.length;i++)
			if (document.getElementById(args[i])) 
				document.getElementById(args[i]).style.display='none';
	}
	else if(args.length>0)
	{
		if (document.getElementById(nomCel)) 
			document.getElementById(nomCel).style.display='none';
	}
}
