// JavaScript Document
function ouvrirFenImg(thePict,w,h){
 var txt, win = window.open("","Pict",'scrollbars=no,resizable=no,width=' + w + ',height=' + h + ',top=0,left=0');
  txt = "<html>";
  txt = txt  + "<head>";
  txt = txt + "<Title>Gîte à vendre</Title>";
  txt = txt + "</head>";
  txt = txt + "<Body leftmargin=0 topmargin=0 onBlur='self.close();'>";
  txt = txt + "<img src=" + thePict + ">";
  txt = txt + "</Body>";
  txt = txt + "</html>";
  win.document.write(txt);
  win.document.close();
}