var f;
    
function foto(foto,breite,hoehe) {

  f = window.open("dummy.html","Popup","scrollbars=no,dependent=yes");
  f.document.write("<html><head><title>Foto</title></head><body style='margin:0px;'>");
  f.document.write("<img src='images/"+foto+"'>");
  f.document.write("</body></html>");
  f.resizeTo(breite+10,hoehe+35);
  f.focus();
  }

