<!--
  function fotofenster(bild, name)
  {
    xpos=screen.width/2-400;
    ypos=screen.height/2-300;
      fenster=window.open("","picture","width=320,height=461,top="+ypos+",left="+xpos);
    with(fenster.document)
    {
      open();
      writeln("<html><head><title>*** Foto von "+name+" ***</title></head>");
      writeln("<body onBlur='window.close()' leftmargin='0' topmargin='0' marginheight='0' marginwidth='0'>");
      writeln("<img src='"+bild+"' alt='Bild von "+name+"' width='320' height ='461'>");
      writeln("</body></html>");
      close();
    }
  }
//-->