function writeHeader(routeName)
{
document.write('<tr><td height="100">');

document.write('<table class="header_table" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr>');
document.write('<map name="dtwLogo"><area href="../../mainMap.html" alt="Main Map" shape="rect" coords="40, 17, 105, 85"></map>');
writeBanner(routeName); 
document.write('</tr>');
document.write('</table>');

document.write('</td></tr>');


document.write('<tr><td height="25">');

document.write('<table class="header_table" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr class="header_bar_tr">');
document.write('<td class="gutter_td">&nbsp;</td>');
document.write('<td class="header_bar_td">');
document.write(routeName);
document.write('</td>');
document.write('</tr>');
document.write('<tr><td colspan="2">&nbsp;</td></tr>');
document.write('</table>');

document.write('</td></tr>');
}


function writeDirectionsHeader(routeName, routePage)
{
document.write('<tr><td>');

document.write('<table class="header_table" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr>');
document.write('<map name="dtwLogo"><area href="../../mainMap.html" alt="Main Map" shape="rect" coords="40, 17, 105, 85"></map>');
writeBanner(routeName); 
document.write('</tr>');
document.write('</table>');

document.write('<table class="header_table" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr class="header_bar_tr">');
document.write('<td class="gutter_td">&nbsp;</td>');
document.write('<td class="header_bar_td">');
document.write('<a class="title_link" href="');
document.write(routePage);
document.write('">');
document.write(routeName);
document.write('</a>&nbsp;&gt;&gt;&nbsp;Walking Directions</td>');
document.write('</tr>');
document.write('<tr><td colspan="2">&nbsp;</td></tr>');
document.write('</table>');

document.write('</td></tr>');
}

function writeFooter()
{
document.write('<tr><td>&nbsp;</td></tr>\
<tr><td align="center">\
<a href="../../index.html">Home Page</a>&nbsp;|&nbsp;\
<a href="../../mainMap.html">Main Map</a>&nbsp;|&nbsp;\
<a href="../caulfeild/caulfeildRoute.html">Caulfeild Walk</a>&nbsp;|&nbsp;\
<a href="../dundarave/dundaraveRoute.html">Dundarave Walk</a>&nbsp;|&nbsp;\
<a href="../ambleside/amblesideRoute.html">Ambleside Walk</a>&nbsp;|&nbsp;\
<a href="../hollyburn/hollyburnRoute.html">Hollyburn Walk</a>&nbsp;|&nbsp;\
<a href="../../siteMap.html">Site Map</a>\
</td></tr>');
}

function writeBanner(routeName) 
{

if (routeName == "Ambleside" || routeName == "ambleside") {
	document.write('<td width="700" height="100"  bgcolor="#663300"><img src="../../images/routes/ambleside/amblesideBanner.jpg" width="700" height="100" usemap="#dtwLogo"></td>');
} 
else if (routeName == "Caulfeild" || routeName == "caulfeild" || routeName== "Caulfield" || routeName=="caulfield") {
	document.write('<td width="700" height="100"  bgcolor="#663300"><img src="../../images/routes/caulfeild/caulfeildBanner.jpg" width="700" height="100" usemap="#dtwLogo"></td>');
}
else if (routeName == "Dundarave" || routeName == "dundarave") {
	document.write('<td width="700" height="100"  bgcolor="#663300"><img src="../../images/routes/dundarave/dundaraveBanner.jpg" width="700" height="100" usemap="#dtwLogo"></td>');
}
else if (routeName == "Hollyburn" || routeName == "hollyburn") {
	document.write('<td width="700" height="100"  bgcolor="#663300"><img src="../../images/routes/hollyburn/hollyburnBanner.jpg" width="700" height="100" usemap="#dtwLogo"></td>');
}	
else {
	document.write('<td width="700" height="100"  bgcolor="#663300"><img src="../../images/mainBanner.jpg" width="700" height="100" usemap="#dtwLogo"></td>');
}

}
