function afficher_image(lien, nom){		
	var Configuration="directories=no, location=no, menubar=no, toolbar=no, resizeable=no, status=no, width=100, height=100";

	var pageImage = window.open('/photo.html','_blank', Configuration);
	
	pageImage.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">");
	pageImage.document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
	pageImage.document.write("<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /><title>"+nom+"</title> <script type='text/javascript'>function resize(){ var x = document.images[0].width + 6; var y = document.images[0].height + 54; window.resizeTo(x,y); var left=screen.width/2-x/2; var top=screen.height/2-y/2; window.moveTo(left,top);}</script></head>");
	pageImage.document.write("<body onload='resize(); window.focus();' style='margin:0; padding:0;'>");
	pageImage.document.write("<img onclick=\"window.close();\" src=\""+lien+"\" style='cursor:pointer;' alt=\""+nom+"\"/>");
	pageImage.document.write("</body></html>");
	pageImage.document.close(); 
}

