/* Javascript für Seiten-Kopfbereich mit Ueberschrift */
/* Übergabe:    Überschrift-Text                      */
/*              Rücksprung-Seite (mit .htm)           */

function zeigeHeader(ueber, rueck) {
 
 document.write("<center><table BORDER=0 " +   "cellspacing=0 cellpadding=0 WIDTH=600>");
 document.write("<colgroup><col width=557>" +
  "<col width=30><col width=13></colgroup>");
 document.write("<tr><td ALIGN=CENTER " + 
  "VALIGN=TOP>");
 document.write("<img SRC='" + "welcome6.gif'" + " alt='" + "Gerhard Kahlke" +"' height=89>" +
  "</td>");
 document.write("<td>&nbsp;</td>");
 document.write("<td VALIGN=TOP background='" +   "pkt1313.gif" +"'>");
 document.write("<img SRC='" + "leer1313.gif" + "' height=13></td></tr>");

 document.write("<tr><td VALIGN=middle bgcolor='" + "#FFDF00" + "' align=center>");
 document.write("<font face='" + "Arial" + "' size=5><b>" + ueber + "</b></font></td>");
 document.write("<td VALIGN=middle bgcolor='" + "#FFDF00" + "'>");
 document.write("<font face='" + "Arial" + "' size=3><a href='" + rueck +   "'><b><<</b></a></font></td>");
 document.write("<td VALIGN=bottom background='" +   "pkt1313.gif" +"'>");
 document.write("<img SRC='" + "pkt1313.gif" + "' height=13></td></tr>");

 document.write("<tr><td VALIGN=middle height=30 background='" + "pkt1330.gif" +"'>");
 document.write("<img SRC='" + "pkt1313.gif" + "' height=13></td>");
 document.write("<td VALIGN=middle align=right height=30 background='" +   "pkt1330.gif" +"'>");
 document.write("<img SRC='" + "pkt1313.gif" + "' height=13></td>");
 document.write("<td VALIGN=top height=30 background='" +   "pkt1330.gif" +"'>");
 document.write("<img SRC='" + "pkt1313.gif" + "' height=13></td></tr>");

 document.write("</table></center>");
 }

