function galleryPopup(imageFile){
	var Image1 = new Image();
	Image1.src = (imageFile);
	var height = Image1.height;
	var width = Image1.width;

	var html = '<title>Cliquez pour fermer</title><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onclick="javascript:window.close()"><img src="' + imageFile + '" alt="Cliquez pour fermer" title="Cliquez pour fermer"></body>';
	var popup = window.open(imageFile, '_blank', 'width=' + width+ ', height=' + height + ', status=no');
	popup.document.write(html);
	popup.focus();
}
