function affichePhotoFiche(cheminPhoto,cheminZoom)
	{
	document.write('<a href="javascript:afficheZoom(\''+cheminZoom+'\')"><img src="'+cheminPhoto+'" hspace=4 vspace=4 border=0 width="150" alt="Afficher la photo"></a>');
	}
	
function affichePhotoListe(cheminPhoto,cheminZoom)
	{
	document.write('<a href="javascript:afficheZoom(\''+cheminZoom+'\')"><img src="'+cheminPhoto+'" hspace=4 vspace=4 border=0 height="50" alt="Afficher la photo"></a>');
	}
	
function afficheZoom(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<html><head><title>Zoom</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><center><img src="'+chemin+'" border=0 name=imgzoom onLoad="window.resizeTo(document.imgzoom.width+30,document.imgzoom.height+100)"></center></body></html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	}


