function WriteTop(Depth)
{

document.write("<TABLE BORDER='0' CELLPADDING='0' CELLSPACING='0' WIDTH='100%'>");
document.write("	<TR>");
document.write("		<TD><A HREF='" + GetLevels(Depth) + "default.html'><img src='" + GetLevels(Depth) + "images/logo2.jpg' BORDER='0' height='67'></A></TD>");
document.write("		<TD valign='top' align='right'>");
document.write("			<!-- top right area -->&nbsp;");
document.write("		</TD>					");
document.write("	</TR>");
document.write("	<TR>");
document.write("		<TD COLSPAN='2' ALIGN='RIGHT'>");
document.write("			<!--UPPER NAV TABLE-->");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "default.html' class='LinkMain' id='Link1' name='Link1'>HOME</a>&nbsp;</SPAN>");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "band.html' class='LinkMain' id='Link2' name='Link2'>BAND</a>&nbsp;</SPAN>");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "news.html' class='LinkMain' id='Link9' name='Link9'>NEWS</a>&nbsp;</SPAN>		");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "music.html' class='LinkMain' id='Link7' name='Link7'>MUSIC</a>&nbsp;</SPAN>	");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "articles_interviews.html' class='LinkMain' id='Link8' name='Link8'>PRESS</a>&nbsp;</SPAN>	");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "multimedia.html' class='LinkMain' id='Link3' name='Link3'>MULTIMEDIA</a>&nbsp;</SPAN>");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "tour.html' class='LinkMain' id='Link6' name='Link6'>SHOWS</a>&nbsp;</SPAN>		");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "store.html' class='LinkMain' id='Link4' name='Link4'>STORE</a>&nbsp;</SPAN>");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='" + GetLevels(Depth) + "forum.html' class='LinkMain' id='Link5' name='Link5'>CONTACT & FORUM</a>&nbsp;</SPAN>");
document.write("			<SPAN CLASS='LinkMain'>&nbsp;<a href='http://www.myspace.com/comeswiththefall' target='_blank' class='LinkMain' id='Link10' name='Link10'>MYSPACE SITE</a>&nbsp;</SPAN>");
document.write("		</TD>");
document.write("	</TR>");
document.write("</TABLE>");


}

function GetLevels(NumLevels)
{
	sOut = "";
	for(x=0;x<NumLevels;x++)
	{
		sOut += "../";	
	}
	return sOut;
}



function WriteFooter(Depth)
{
	document.write("Comes With The Fall ");
	var mydate = new Date();
	var year= mydate.getYear();
	if (year<2000){year+=1900};
	if (year>2100){year-=1800};
	var time = ("Copyright &#169; " + year + " All Rights Reserved.");
	document.write(time);
	//document.write(" <a href='" + GetLevels(Depth) + "website.html'>website info</a>");
}
