// JavaScript Document

function afficheSousMenu($idNiv1) {
	var nbreElem=3;
	//CACHE LES AUTRES SOUS-MENUS
	for (tmp=1;tmp<=nbreElem;tmp++) {
		if (tmp!=$idNiv1) {
			$nomDeLaDiv="sousMenu_"+tmp;
			document.getElementById($nomDeLaDiv).style.visibility="hidden";
			document.getElementById($nomDeLaDiv).style.display="none";
			}
		}
	// AFFICHE LE BON
	$nomDeLaDiv="sousMenu_"+$idNiv1;
	document.getElementById($nomDeLaDiv).style.visibility="visible";
	document.getElementById($nomDeLaDiv).style.display="block";
	}
	