var nom_div_affichage="";
function affiche_div(nom_div) {
	if(nom_div!=nom_div_affichage) {
		if(nom_div_affichage!="") {
			// on masque la div
			var div_a_masquer=document.getElementById(nom_div_affichage);
			div_a_masquer.style.visibility="hidden";
			div_a_masquer.style.display="none";
			// on affiche le bouton non actif
			var bouton_a_afficher=document.getElementById('bouton_'+nom_div_affichage);
			bouton_a_afficher.style.backgroundImage='url("images2/onglet_unselect.gif")';
		}
		// on affiche la div
		var div_a_afficher=document.getElementById(nom_div);
		div_a_afficher.style.visibility="visible";
		div_a_afficher.style.display="block";
		// on affiche le bouton actif
		var bouton_a_afficher=document.getElementById('bouton_'+nom_div);
		bouton_a_afficher.style.backgroundImage='url("images2/onglet_select.gif")';
		
		nom_div_affichage=nom_div;
	}
}