function PopupImage(img,titre) 
{
  //titre="NOM_PROD";
  w=open('' ,'image','width=10,height=10,toolbar=no,scrollbars=no,resizable=no');
  //w.document.getElementsByTagName("title")[0].text = titre;
  w.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n");
  w.document.write("<html>\n");
  w.document.write("<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n");
  w.document.write("<title>"+titre+"</title>\n");
  w.document.write("<script language=javascript>function checksize(){");
  w.document.write("if(document.images[0].complete==true){");
  w.document.write("window.resizeTo(document.images[0].width,document.images[0].height);");
  w.document.write("if(document.body.clientWidth<document.images[0].width){");
  w.document.write("var ecartWidth=document.images[0].width-document.body.clientWidth;}");
  w.document.write("if(document.body.clientHeight<document.images[0].height){");
  w.document.write("var ecartHeight=document.images[0].height-document.body.clientHeight;}");
  w.document.write("window.resizeTo(document.images[0].width+ecartWidth,document.images[0].height+ecartHeight);");
  w.document.write("window.focus();}");
  w.document.write("else{setTimeout('checksize()',250)}");
  w.document.write("}");
  w.document.write("</"+"script>\n</head>\n");
  w.document.write("<body onload=\"checksize();\" leftMargin=\"0\" topMargin=\"0\" marginwidth=\"0\" marginheight=\"0\" style=\"margin:0\">");
  w.document.write("<a href=\"javascript:window.self.close();\"><img src=\""+img+"\" border=\"0\"></a>");
  w.document.write("</body>");
  w.document.write("</html>");
  w.document.close();
}
