// Scripts pour les albums photos

function changephoto(nomphoto,larg,haut) {
  document.getElementById('grandephoto').src=nomphoto;
  document.getElementById('grandephoto').width=larg;
  document.getElementById('grandephoto').height=haut;
}

function changephotoleg (nomphoto, larg, haut, leg) {
	document.getElementById('grandephoto').src=nomphoto;
	document.getElementById('grandephoto').width=larg;
	document.getElementById('grandephoto').height=haut;
	document.getElementById('legende').innerHTML=leg;
}
	
function changephotoM (dest, nomphoto, larg, haut) {
	document.getElementById(dest).src=nomphoto;
	document.getElementById(dest).width=larg;
	document.getElementById(dest).height=haut;
}

function changephotoMleg (dest, destleg, nomphoto, larg, haut, leg) {
	document.getElementById(dest).src=nomphoto;
	document.getElementById(dest).width=larg;
	document.getElementById(dest).height=haut;
	document.getElementById(destleg).innerHTML=leg;
}


