function montre(id) {
		cacheTout();
	  if (document.getElementById) {
		  document.getElementById(id).style.display="inline";
		} else if (document.all) {
		  document.all[id].style.display="block";
		} else if (document.layers) {
		  document.layers[id].display="block";
		} 
	}

	function cache(id) {
	  if (document.getElementById) {
		  document.getElementById(id).style.display="none";
		} else if (document.all) {
		  document.all[id].style.display="none";
		} else if (document.layers) {
		  document.layers[id].display="none";
		} 
	}

 	function cacheTout(){
 		var montableau=[<? echo cacheTableau();?>];
		for (i=0; i<montableau.length ; i++) {
                    cache(montableau[i]);
		}
 	}
	function showThisDiv(thisDiv){
		//alert("thisDiv="+thisDiv);
		thisLayer = document.getElementById(thisDiv);
		if(thisLayer.style.display == 'none'){
		  thisValue='block';
		}else{
		  thisValue='none';
		}
		thisLayer.style.display = thisValue;
	}
