﻿function popupImage(img, title) {
	w=open('','image','width=400,height=400,toolbar=no,scrollbars=yes,resizable=yes,top=100,left=100');
	w.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>' + title + '</title></head>');
	w.document.write('<script type="text/javascript">function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+12,document.images[0].height+30); window.focus();} else { setTimeout(\'check()\',250) } }</'+'script>');
	w.document.write('<body style="margin:0;padding:0" onload="checksize()"><a href="#" onclick="self.close();return false" title="fermer cette fenêtre"><img src="' + img + '" alt=""style="border:0;background-color:#fff"; /></a>'); 
	w.document.write('</body></html>');
	w.document.close();
}