function header()
{
    document.write("<div id='border'>");
    document.write("<div id='header'>");
    document.write("<div id='banner'>");
    document.write("<span class='title'><a href='/'>The&nbsp;William&nbsp;Jefferies&nbsp;Website</a></span>");
    document.write("<span class='description'><a href='/'>A website for the descendants of William Jefferies</a></span>");
    document.write("</div>");
    document.write("<div id='menubar'>");
    document.write("<span class='button'><a href='/'>Main</a></span>");
    document.write("<span class='button'><a href='/directory/'>Directory</a></span>");
    document.write("<span class='button'><a href='/journal/'>Journal</a></span>");
    document.write("<span class='button'><a href='/genealogy/'>Genealogy</a></span>");
    document.write("<span class='button'><a href='/articles/'>Articles</a></span>");
    document.write("<span class='button'><a href='/photos/'>Photos</a></span>");
    document.write("<span class='button'><a href='/gallery/'>Gallery</a></span>");
    document.write("<span class='button'><a href='/missionary/'>Serving the Lord</a></span>");
    document.write("<span class='button'><a href='/guestbook/'>Guest&nbsp;Book</a></span>");
    document.write("<span class='button'><a href='/links/'>Links</a></span>");
    document.write("</div>");
    document.write("</div>");
    document.write("<div id='content'>");
}

function footer(date)
{
    document.write("</div>");
    document.write("<div id='footer'>");
    document.write("Page last updated on " + date + ".&nbsp; Copyright &copy; 2004 Michael Jefferies.&nbsp; ");
    document.write("Any commercial use of the data and images on these pages is prohibited.");
    document.write("</div>");
}

function email(user, server)
{
    var email_address = user + "&#00064;" + server;
    document.write("<a href='ma");
    document.write("il");
    document.write("to:" + email_address + "'>" + email_address + "</a>");
}