function afficher_photo (num, legende) {
    var txt     = document.getElementById('legende_photo');
    var taille  = txt.firstChild.nodeValue.length;
	var img     = document.getElementById('affiche_photo');
	var adresse = 'img/photo/album/photo'+num+'.jpg';
	img.src = adresse;
	txt.firstChild.replaceData(0, taille, legende);
    document.title = 'Album photo - ' + legende + ' - laventurine-residence.fr';
}
	
