function show_menu() {

document.write(
'<br><TABLE cellSpacing=0 cellPadding=1 width=160 bgColor=#eeeeee border=0>'+
'<TR><TD>'+
'<TABLE cellSpacing=0 cellPadding=2 width="100%" bgColor=#ffffff border=0>'+
'<tr><td class="fontFaceB" background="/images/bg_hgradient_grey1.jpg">&nbsp;&nbsp;&nbsp;Menu</td></tr>'+
'<TR><TD class="fontFaceL">'+
'<a href="python_grundlagen.html">Warum Python?</a><br>'+
'<a href="python_formmailer.html">Ein einfacher Formmailer</a><br>'+
'<a href="python3.html">Eingabekontrolle eines Formmailers</a><br>'+
'<a href="python4.html">Datumsabfragen</a><br>'+
'<a href="python_gaestebuch.html">Ein einfaches Gästebuch</a><br>'+
'<a href="python6.html">Gültiger HTML-Code mit &quot;regular expressions&quot;</a><br>'+
'<a href="python7.html">Suchen und Ersetzen mit &quot;regular expressions&quot;</a><br>'+
'<a href="python_zufallsausgaben.html">So ein Zufall</a><br>'+
'<a href="python9.html">Welcome back!</a><br>'+
'<a href="python10.html">Let´s work together</a><br>'+
'</TD></TR></table></TD></TR></table><br><br>'+
'<script type="text/javascript" src="/images/show_left.js"></script>'
);
}
show_menu();

