function affImage(image,width,height,nom)
{
	
	document.getElementById("largePhoto").innerHTML = "";
	setTimeout('applyPhoto("'+image+'","'+width+'","'+height+'","'+nom+'");', 1000);
	
}
function applyPhoto(image,width,height,nom)
{

if(height >300)
	{
		width=300*width/height;
		height=300;		
	}
	if(width >500)
	{
		height=500*height/width;
		width=500;		
	}
	
	marginLeft = (520 - width)/2;
	marginTop = (350 - height)/2;
	
	var myString = nom
	var nom = myString.split(".");

	document.getElementById("nomphoto").style.background = "#EFE4C2";
	document.getElementById("nomphoto").innerHTML =nom[0];
	document.getElementById("largePhoto").innerHTML = '<img src="photos/'+image+'" width="'+width+'" height="'+height+'" style="margin-left:'+marginLeft+'px; margin-top:'+marginTop+'px"/>';
	
}