function fensterbilder (titel,pict,hoehe,breite)
 {
  var placex = screen.width/2-(breite/2);
  var placey = screen.height/2-(hoehe/2);

  var fenster;
   fenster = window.open("","Bilder","width="+breite+",height="+hoehe+",screenX="+placex+",screenY="+placey+" left="+placex+" top="+placey+"");

   fenster.document.write("<html><head><title>");
   fenster.document.write(titel);
   fenster.document.write("</title></head>");
   fenster.document.write("<body onBlur='window.close()' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
   fenster.document.write("<a href='javascript:;' onclick='window.close()'>");
   fenster.document.write("<img src=\"/bilder/"+ pict +"\" border=0>");
   fenster.document.write("</body></html>");
   fenster.document.close();
   fenster.focus();
}



function fensterseiten (titel,dat,hoehe,breite,yn)
 {
  var placex = screen.width/2-(breite/2);
  var placey = screen.height/2-(hoehe/2);

  var fenster;
   fenster =
window.open("/seiten/"+dat+"","Bilder","width="+breite+",height="+hoehe+",screenX="+placex+",screenY="+placey+" left="+placex+" top="+placey+",scrollbars="+yn+"");
 }