
function Clique(chp, nbtotal){
for(i=1;i<=nbtotal;i++){
	if(i==chp){
		Affiche(i);
	}
	else{
		Masque(i);
	}
}
}

function Affiche(chp){
document.getElementById(chp).style.display="";
}

function Masque(chp){
document.getElementById(chp).style.display="none";
}
