/* ### INFOS BULLE */
var idBulleCourant = '';
function showInfosBulle(idBulle){	
	
	if(idBulleCourant != ''){
		document.getElementById("infos_bulle_"+idBulleCourant).style.display = "none";
	}
	
	idBulleCourant = idBulle;
	document.getElementById("infos_bulle_"+idBulle).style.display = "block";
}


function showInfosBulleBis(idBulle){			
	document.getElementById("infos_bulle_"+idBulle).style.display = "block";
}
function hideInfosBulleBis(idBulle){			
	document.getElementById("infos_bulle_"+idBulle).style.display = "none";
}