
<!--

function fenster(anzeige){
    self.name = "beschreibung";
    info = window.open ('','fenster','WIDTH=240,HEIGHT=370')

             if(info != null){

                 if(info.opener == null){

                      info.opener = self;

                  }

              }  
              info.document.clear()

              info.document.open()
              info.document.write("<HTML><HEAD><TITLE>INFO!</TITLE>");
              info.document.write("<BODY BGCOLOR=#FFFFFF  TEXT=#000000 >")
              info.document.write("<FONT SIZE=1 FACE=Arial>")
              info.document.write(anzeige)
              info.document.write("</BODY></HTML>")
              info.document.close()
              return true;
}

function fensterzu(){
     info.close()
     return true;
}


// -->

