// JavaScript Document
function agrandirPhoto(thePict,h,w){
 var txt, win = window.open("","picture",'scrollbars=no,resizable=yes,width=' + h + ',height=' + w + ',top=0,left=0');
  txt = "<html>";
  txt = txt  + "<head>";
  txt = txt + "<Title> Un logis à Montréal </Title>";
  txt = txt + "</head>";
  txt = txt + "<Body leftmargin=0 topmargin=0 onLoad=self.focus(); onBlur=self.close();>";
  txt = txt + "<img src=" + thePict + ">";
  txt = txt + "</Body>";
  txt = txt + "</html>";
  win.document.write(txt);
  win.document.close();
}
