function afficherZoom(titre, chemin) {
	i1 = new Image();
	i1.src = chemin;
	
	head = '<head><title>Zoom - '+ titre + '</title></head>';
	img = '<img src="' + chemin + '" border="0" name=="zoom" width="400px" height="400px" style="margi:0;padding:0">';
	html = '<html>' + head + '<body margin="0" padding="0"><div style="padding:0; margin:0">' + img + '</div></body></html>';
	popupImage = window.open('','_blank','toolbar=0, location=0, directories=0, menuBar=0, scrollbars=0, resizable=0, width=416, height=416, left=250, top=125');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
}
