function PopupImage(img, largeur, hauteur)
{
	w=open("",'image','weigth=toolbar=no,scrollbars=no,resizable=no,width='+largeur+', height='+hauteur);
	w.document.write("<HTML><BODY leftmargin=0 topmargin=0 onblur=\"window.close();\"><center><IMG src='"+img+"'></center>");
	w.document.write("</BODY></HTML>");
	w.document.close();
}