// Popup image redimensionnée
function PopupImage(Titre, Largeur, Hauteur, Img) {
	w=open("",'','width='+Largeur+',height='+Hauteur+',toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><TITLE>"+Titre+"</TITLE></HEAD>");
	w.document.write("<SCRIPT language=javascript> function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+10,document.images[0].height+60); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY onclick='window.close()' onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><META HTTP-EQUIV='imagetoolbar' CONTENT='no'><IMG src='"+Img+"' border=0>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}

