function showContent(idBloc) {
	blocDisplay = document.getElementById(idBloc).style.display;
	if ((blocDisplay == "") || (blocDisplay == "block")) {
		document.getElementById(idBloc).style.display = "none";
	}else{
		document.getElementById(idBloc).style.display = "block";
	}
}