// Utilisé pour ouvrir / fermer le menu de droite.

function vis_arr_switch(box_id) {
	var box_array = ["Intro_Normal","Intro_Environnement","Intro_Gouvernance","Intro_Education","Intro_Formation","Intro_Finances","Intro_Reformes","Intro_Institutions","Intro_Developpement"];
	var box = document.getElementById("Intro_" + box_id);
	var container = document.getElementById("Intro_Container");
	for (i in box_array) {
		document.getElementById(box_array[i]).style.display = "none";
	}
	box.style.display = "";
	container.className = "CellIntro_" + box_id;
}

// Fonction générique pour afficher / cacher une balise.
function vis_switch(box_id, is_visible) {
	var box = document.getElementById(box_id);
	if (!is_visible) {
		box.style.display = "none";
	} else {
		box.style.display = "";
	}
}

// Fonction générique pour afficher / cacher une balise
// selon la visiblité au moment de l'execution.
function vis_toggle(box_id) {
	var box = document.getElementById(box_id);
	if (box.style.display != "none") {
		box.style.display = "none";
	} else {
		box.style.display = "";
	}
}
