function info(sCaption, sText) {

  var newWin = window.open("","","width=400,height=370,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes")
    newWin.document.writeln("<html><head><title>"+sCaption+"</title></head>")
    newWin.document.writeln("<body><b>"+sCaption+"</b><p>"+sText+"</p>")
    newWin.document.writeln("<div align=right><font size=-2><a href='javascript:self.close()'>Info-Fenster schliessen</a></font></div>")
    newWin.document.writeln("</body></html>")


}
