function banner()
{
    document.write('<div class="banner">');
    document.write('<h2 align="center">Save Plymouth&rsquo;s History</h2>');
    document.write('at Plymouth and West Devon Record Office');
    document.write('<br>');
    navBar();
    document.write('</div>');
}

function navBar()
{
    document.write('<div align="center" style="margin-top:20px;margin-bottom: auto;">');
    writeLink('Home', 'index.htm');
    writeLink('Recent News', 'news.htm');
    writeLink('Meetings', 'meetings.htm');
    writeLink('PWDRO', 'pwdro.htm');
    writeLink('Contact us', 'contacts.htm');
    document.write('</div>');
}

function writeLink(caption, url)
{
    document.write('<a class="button" href="' + url + '">');
    document.write(caption);
    document.write('</a>');
}

function backToTop()
{
    document.write('<a class="button" style="font-size:small;font-weight:normal;" href="#list" title="Back to top">&uarr; Back to top</a>');
}
