

function WriteFirstHTMLPart( title )
{
    var MenuStr = "";
  
    MenuStr += '<a name="startofpage"></a>';    // Der Seitenbeginnverweis
    MenuStr += '<center>';

    MenuStr += '<br>';
    MenuStr += '<table width="760" cellpadding="0" cellspacing="0" height="195" border="0">';
    MenuStr += '<tr>';
    MenuStr += '  <td rowspan="2" width="158" height="195" background="img/nav/up1.jpg">&nbsp;</td>';
    MenuStr += '  <td rowspan="2" width="78" height="195" background="img/nav/up2.jpg">&nbsp;</td>';
    MenuStr += '  <td width="524" height="106" background="img/nav/up3.jpg">&nbsp;</td>';
    MenuStr += '</tr>';

    MenuStr += '<tr>';
    MenuStr += '  <td width="524" height="89" align="center" valign="bottom"><h2>' + title + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h2></td>';
    MenuStr += '</tr>';

    MenuStr += '<tr>';
    MenuStr += '  <td width="158" height="312" valign="top">';
    MenuStr += '    <table width="158" height="312" cellpadding="0" cellspacing="0" border="0">';
    MenuStr += '     <tr> ';
    MenuStr += '       <td background="img/nav/down1.jpg" valign="top">';
    MenuStr += '	<map name="linksimg"> ';
    MenuStr += '	<area shape=rect alt="about me" 	coords="20,0, 150, 20" href="about.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="meta barone" 	coords="20,32, 150, 47" href="meta.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="releases" 	coords="20,60, 150, 80" href="releases.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="previews & downloads" coords="20,90, 150, 125" href="previews.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="dates" 		coords="20,135, 150, 155" href="dates.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="producers" 	coords="20,164, 150, 180" href="producers.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="gallery" 		coords="20,190, 150, 210" href="gallery.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="links" 		coords="20,225, 150, 242" href="links.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="guestbook" 	coords="20,253, 150, 267" href="guestbook.htm" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="contact" 		coords="20,278, 150, 290" href="mailto:Mamba@bunafiresound.de" onfocus="this.blur();"> ';
    MenuStr += '	<area shape=rect alt="go home, check news" coords="20,292, 150, 308" href="welcome.htm" onfocus="this.blur();"> ';
    MenuStr += '	</map>';
    MenuStr += '	<img src="img/nav/down1tra.gif" width="155" height="308" usemap="#linksimg" border=0>';

    MenuStr += '       </td>';
    MenuStr += '     </tr>';
    MenuStr += '    </table>';
    MenuStr += '  </td>';
    MenuStr += '  <td colspan="2" width="602">';
    MenuStr += '    <table width="602" cellpadding="0" cellspacing="0" border="0">';
    MenuStr += '     <tr> ';
    MenuStr += '       <td width="60">&nbsp;</td>';
    MenuStr += '       <td width="482" height="212" align="left" valign="top">';

    
    document.write( MenuStr );

}


function WriteLastHTMLPart()
{
    var MenuStr = "";

    MenuStr += '        <br><br>';
    MenuStr += '        <center>';
/*
    MenuStr += '        <a class="APageEnd" href="about.htm" onfocus="this.blur()">about me</a> |';
    MenuStr += '        <a class="APageEnd" href="meta.htm" onfocus="this.blur()">meta barone</a> |';
    MenuStr += '        <a class="APageEnd" href="releases.htm" onfocus="this.blur()">releases</a> |';
    MenuStr += '        <a class="APageEnd" href="previews.htm" onfocus="this.blur()">previews &amp; downloads</a><br>';
    MenuStr += '        <a class="APageEnd" href="links.htm" onfocus="this.blur()">links</a> |';
    MenuStr += '        <a class="APageEnd" href="guestbook.htm" onfocus="this.blur()">guestbook</a> |';
    MenuStr += '        <a class="APageEnd" href="contact.htm" onfocus="this.blur()">contact</a>';
*/
    MenuStr += '        </center>';
    MenuStr += '       </td>';
    MenuStr += '       <td width="60">&nbsp;</td>';
    MenuStr += '     </tr>';
    MenuStr += '    </table>';
    MenuStr += '  </td>';
    MenuStr += '</tr>';

    MenuStr += '</table>';
    MenuStr += '</center>';

    document.write( MenuStr );

}
