  var Fenster_offen = null;

  function grossesFenster(url,bildunterschrift,features)
  {
  if (!Fenster_offen || Fenster_offen.closed)
  {
    properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,";
    Fenster_offen = window.open('','Fenster_offen',features,properties);

    Fenster_offen.document.open();
    Fenster_offen.document.write('<HTML><HEAD>');
    Fenster_offen.document.write('<TITLE>'+bildunterschrift+'<\/TITLE>');
    Fenster_offen.document.write('<\/HEAD>');
    Fenster_offen.document.write('<BODY TOPMARGIN="0" Leftmargin="0">');
    Fenster_offen.document.write('<A HREF="JavaScript:self.close()"><IMG SRC="'+url+'" HSPACE="0" VSPACE="0" BORDER="0"><\/A>');
    Fenster_offen.document.write('<br><center><font face="Arial, Helvetica, sans-serif" size="2"><b>Zum Schließen ins Bild klicken!<\/b><\/font>');
    Fenster_offen.document.write('<\/BODY>');
    Fenster_offen.document.write('<\/HTML>');
    Fenster_offen.document.close()

    Fenster_offen.focus();
  }
  else
  {
    Fenster_offen.focus();
  }
  }
