function open_foto(url, title, w, h)
{
  var w;
  w = window.open('', 'foto', 'width='+w+', height='+h+', menubar=no, scrollbars=no, status=no, titlebar=no');
  w.document.write('<html><head><title>'+title+'</title></head>\n');
  w.document.write('<body leftmargin=0 topmargin=0 bottommargin=0 rightmargin=0>\n');
  w.document.write('<img src='+url+' border=0></body></html>');
}

