//CONTENTS
//Linkbar()    - links along left side of pages
//PageHeader() - tdt logo for top of page.
//PageFooter() - links for bottom of each page.

// Draw the vertical linkbar
function Linkbar()
{
Leftbar='<table class="links" width=110 border=0 cellpadding=0 cellspacing=0><tr><td align=center>'+
'<a class=navlink href="page__home.php" title="Two Day Town website Home Page" alt="[ Home ]"><img src=button__home.gif border=none height=22></a><br />'+
'<a class=navlink href="page__music.php" title="Music Schedule & Band Information" alt="[ Music ]"><img src=button__music.gif border=none height=22></a><br />'+
'<a class=navlink href="page__activities.php" title="Planned & unplanned things to do" alt="[ Activities ]"Planned and unplanned things to do at Two Day Town"><img src=button__activities.gif border=none height=22></a><br />'+
'<a class=navlink href="page__photos.php" title="Two Day Town Photo Gallery" alt="[ Photos ]"><img src=button__photos.gif border=none height=22></a><br />'+
'<a class=navlink href="page__tickets.php" title="Ticket Information" alt="[ Tickets ]"><img src=button__tickets.gif border=none height=22></a><br />'+
'<a class=navlink href="page__volunteer.php" title="Information for Volunteers (Want FREE tickets?)" alt="[ Volunteer ]"><img src=button__volunteer.gif border=none height=22></a><br />'+
'<a class=navlink href="page__giveaway.php" title="Fabulous Prizes!" alt="[ Give-Away ]"><img src=button__giveaway.gif border=none height=22></a><br />'+
'<a class=navlink href="page__site.php" title="Site Information for Del Valle and Two Day Town" alt="[ Site ]"><img src=button__site.gif border=none height=22></a><br />'+
'<a class=navlink href="page__guidelines.php" title="How To Be A Good Neighbor at Two Day Town" alt="[ Guidelines ]"><img src=button__guidelines.gif border=none height=22></a><br />'+
'<a class=navlink href="page__contact.php" title="Contact Info for Two Day Town plus other related links" alt="[ Contact Us ]"><img src=button__contact.gif border=none height=22></a><br />'+
'<a class=navlink href="page__about.php" title="The Nutshell Philosophy of Two Day Town" alt="[ About Us ]"><img src=button__about.gif border=none height=22></a><br />'+
'<a class=navlink href="page__whatsnew.php" title="Site Updates, Late Breaking News, etc." alt="[ Updates ]"><img src=button__whatsnew.gif border=none height=22></a><br />'+
'<br /><br /><a href="mailto:webmeister@twodaytown.com?subject=Two%20Day%20Town%20mail%20list&body=Thank%20you%20for%20joining%20our%20email%20list.%20%20Please%20provide%20your%20name%20and%20the%20email%20address%20you%20would%20like%20us%20to%20use%20to%20contact%20you." title="Join our email list!" alt="[ Email link ]"><img src=button__mail_link.gif border=none height=48></a><br />'+
'</td></tr></table>'
document.write(Leftbar)
}

// Draw the page header
function PageHeader()
{
Top ='<center>'+
'<table border=0 cellpadding=0 cellspacing=6><tr><td nowrap>'+
'<img src=img__logo_twodaytown.gif height=60><img src=img__logo_2010.gif height=60>'+
'</td></tr></table>'
document.write(Top);
}

//Draw the link bar at the bottom of each page
function PageFooter()
{
Bottom = ''+
'<center><br />'+
'<a class=pagefooter href="page__volunteer.php">Volunteer!&nbsp;&nbsp;&nbsp;Call the Hotline at (510) 287-9095</a>'+
'</center><br />'+

'<center>'+
'<a class=pagefooter href=#top>Back to Top</a>'+
'<a class=pagefooter>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>'+
'<a class=pagefooter href="page__home.php">Home</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__music.php">Music</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__activities.php">Activities</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__photos.php">Photos</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__tickets.php">Tickets</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__volunteer.php">Volunteer!</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__giveaway.php">Give-Away</a>'+
'<br />'+
'<a class=pagefooter href="page__site.php">Event Site & Maps</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__guidelines.php">Guidelines</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__contact.php">Contact Us</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__about.php">About Two Day Town</a>'+
'&nbsp;&nbsp;'+
'<a class=pagefooter href="page__whatsnew.php">What&rsquo;s New</a>'+
'</center><br>';
document.write(Bottom);
}
