   function showInfo(ueberschrift, info) {
        var att = "resizable=no, scrollbars=yes, status=no, location=no, menubar=no, toolbar=no, width=453, height=200";
        var x = window.open(null, null, att);
        x.document.open();
        x.document.write("<HTML><HEAD><TITLE>GARANTA INFO</TITLE></HEAD><BODY>");
 x.document.write("<TABLE WIDTH='413' CELLPADDING='0' CELLSPACING='0'><TR><TD COLSPAN='2' WIDTH='412'>");
 x.document.write("<FONT STYLE='font-size:12px; font-family: Verdana,Arial,Helvetica,sans-serif'><B>");
        x.document.write(ueberschrift);
        x.document.write("</B></FONT></TD><TD WIDTH='7' ROWSPAN='2'>&nbsp;</TD>");
 x.document.write("<TD WIDTH='1' ROWSPAN='3' BGCOLOR='#cce5ff'></TD><TD WIDTH='7' ROWSPAN='2'>&nbsp;</TD></TR>");
        x.document.write("<TR><TD>&nbsp;</TD><TD><FONT STYLE='font-size:12px; Verdana,Arial,Helvetica,sans-serif'>");
        x.document.write(info);
        x.document.write("</FONT></TD></TR>");
        x.document.write("<TR><TD COLSPAN='3'><BR><HR SIZE='1' COLOR='#cce5ff'></TD><TD><br><HR SIZE='1' COLOR='#cce5ff'></TD></TR>");
        x.document.write("</TABLE>");
        x.document.write("<TABLE WIDTH='407'><TR><TD ALIGN='RIGHT'><FONT STYLE='font-size:12px; font-family: Verdana,Arial,Helvetica,sans-serif'>");
 x.document.write("<A HREF='javascript:window.close()' STYLE='color: #003;'>schlie&szlig;en</A></FONT>");
        x.document.write("</TD></TR></TABLE></FONT>");
        x.document.write("</BODY></HTML>");
        x.document.close();
    }
