// JavaScript Document
var cpt1=0;
var cpt2=0;
var cpt3=0;
var cpt4=0;
var cpt5=0;

function  fct_showhide(elmt) {
	var calc = document.getElementById(elmt);
	if (elmt=='titre1'){
		if (cpt1 == 0){
			calc.style.display = 'none';
			cpt1++;
		}
	}
	if (elmt=='titre2'){
		if (cpt2 == 0){
			calc.style.display = 'none';
			cpt2++;
		}
	}
	if (elmt=='titre3'){
		if (cpt3 == 0){
			calc.style.display = 'none';
			cpt3++;
		}
	}
	if (elmt=='titre4'){
		if (cpt4 == 0){
			calc.style.display = 'none';
			cpt4++;
		}
	}
	if (elmt=='titre5'){
		if (cpt5 == 0){
			calc.style.display = 'none';
			cpt5++;
		}
	}
	
	if(calc.style.display == 'none') {
		state = 'block';
	} else {
		state = 'none';
	}
		calc.style.display = state;
}