function foto(url,title) {

  popup=window.open('about:blank','', 'scrollbars=no, statusbar=no, resizable=yes');
  popup.document.open();
  popup.document.write('<html><head><title>'+title+'</title><style>body{margin:0px;}</style></head>');
  popup.document.write('<script type="text/javascript">');
    popup.document.write('function resizeToFoto(){');
     popup.document.write('width=document.getElementById("foto").width;');
     popup.document.write('height=document.getElementById("foto").height;');
     popup.document.write('window.resizeTo(width,height);}');
  popup.document.write('</script>');
  popup.document.write('<body onLoad="resizeToFoto()" >');
  popup.document.write('<img id="foto" name="foto" src="'+url+'">');
  popup.document.write('</body></html>');
  popup.document.close();
  width=popup.document.getElementById("foto").width;
  height=popup.document.getElementById("foto").height;
  popup.window.resizeTo(width,height);

}