

function writeFooter()
{
	document.write("<TABLE border=0 cellSpacing=0 cellPadding=4 width=758>");
	document.write("<TR>");
	document.write("	<TD align=right>");
	document.write("		<FONT color=white> ");
	//document.write("		<A href='newsletter.html'>newsletter</A> | ");
	document.write("		<A href='links.html'>links</A> | ");
	document.write("		<A href='imprint.html'>imprint</A> | ");
	document.write("		<A href='contact.html'>contact</A>");
	document.write("		</FONT>");
	document.write("	</TD>");
	document.write("</TR>");
	document.write("</TABLE>");
}



function writeMainMenu( pageName )
{
	
	var h1 = ""; if ( pageName == "home" )		h1 = "_h";
	var h2 = ""; if ( pageName == "band" )		h2 = "_h";
	var h3 = ""; if ( pageName == "music" )		h3 = "_h";
	var h4 = ""; if ( pageName == "pictures" )	h4 = "_h";
	var h5 = ""; if ( pageName == "dates" )		h5 = "_h";
	var h6 = ""; if ( pageName == "press" )		h6 = "_h";
	var h7 = ""; if ( pageName == "guestbook" )	h7 = "_h";

	document.write("<TABLE border=0 cellspacing=0 cellpadding=0 width=760 bgColor=#000000 >");
	document.write("<TR>");
	document.write("	<td bgcolor=black height=1></td>");
	document.write("</TR>");
	document.write("<TR>");
	document.write("	<td bgcolor=white><a href='home.html'><img src='m_home"+h1+".jpg' height=24 width=100 border=0></a></td>");
	document.write("	<td bgcolor=white><a href='band.html'><img src='m_band"+h2+".jpg' height=24 width=100 border=0></a></td>");
	document.write("	<td bgcolor=white><a href='music.html'><img src='m_music"+h3+".jpg' height=24 width=100 border=0></a></td>");
	document.write("	<td bgcolor=white><a href='pictures.html'><img src='m_photos"+h4+".jpg' height=24 width=100 border=0></a></td>");
	document.write("	<td bgcolor=white><a href='dates.html'><img src='m_concerts"+h5+".jpg' height=24 width=100 border=0></a></td>");
	document.write("	<td bgcolor=white><a href='press.html'><img src='m_press"+h6+".jpg' height=24 width=100 border=0></a></td>");
	document.write("	<td bgcolor=white><a href='guestbook.html'><img src='m_guests"+h7+".jpg' height=24 width=100 border=0></a></td>");
	document.write("</tr>");
	document.write("</TABLE>");
}


