// Function pour afficher les photos à partir du click sur son thumbnail dans la section DOSSIER de la revue VIE PÉDAGOGIQUE
function afficherPhoto(intNoPhoto,intTotalPhotos){
	
	//Cache toutes les autres photos
	for (var i=1; i<=intTotalPhotos; i++){
		document.getElementById("photo" + i).style.display = 'none';
	}
	
	//Affiche la photo clické
	document.getElementById("photo" + intNoPhoto).style.display = 'block';
}
