<!--
 function oeffne(n,b,h,t)
 {
  var breite;
  var hoehe;
  var bild;
  var ie = navigator.userAgent.toLowerCase();
  var nn = navigator.appName.toLowerCase();

   bild=window.open('','win1','width='+b+',height='+h+',resizable=yes');
   bild.document.open();
   bild.moveTo(0,0);
   bild.focus();
   bild.document.write("<head>");
//   bild.document.write("<link rel=stylesheet type='text/css' href='/st.css'>");
   bild.document.write("</head>");
   bild.window.document.write("<body bgcolor='#4D4D51' text='#FFFFFF'>");
   bild.document.write("<center><img src="+n+"></center>");

//    breite = bild.document.images[0].width;
//    hoehe = bild.document.images[0].height;

//   bild.document.write("<body onload=\"breite=bild.document.images[0].width; hoehe = bild.document.images[0].height;\">");

 if (breite == null)
   {
   breite = b;
   hoehe = h;
   }

// Wenn Browser = Netscape oder Mozilla Firefox
     if(nn.indexOf("netscape")!=-1)
       bild.window.resizeTo(breite+30,hoehe+200);
       else
// Wenn Browser = Internet Explorer order Opera
       if (ie.indexOf("msie")!=-1)
// Wenn Browser = Opera
          if(ie.indexOf("opera")!=-1)
           bild.window.resizeTo(breite+30,hoehe+180);
// Wenn Browser = Internet Explorer
          else
          bild.window.resizeTo(breite+30,hoehe+200);
       else
// Wenn Browser = ganz was anderes
          bild.window.resizeTo(breite+30,hoehe+180);

   bild.document.write("<p align=center><font face=arial size=2><b>"+t+"</b></font></p>");
   bild.document.write("<form><center><input type=\"button\" value=\"Fenster schliessen\" onclick=\"javascript:self.close();\");></center></form>");
   bild.document.write("</body>");
   bild.document.close();
 }
 -->