function printfooter(date) {
    var spacer='<div class="clear"> </div><div id="spacer"> </div>';
    var copyright='Copyright &copy; 2009 Tyler ISD All rights reserved.';
    var dated='Last updated on '+date;
    var webmaster = '<div id="webmaster">Webmaster: <a href="mailto:joshua.bush@tylerisd.org">J. Bush</a>&nbsp;|&nbsp;'+dated+'</div>';
    var external = '<p id="external">John Tyler High School and Tyler ISD are not responsible for the content of links off-site.</p>';
        var footerline = '<div id="footerline"></div>';

    document.write('<div id="footer">'+spacer);
    document.write('<div id="copyright">'+copyright+'</div>');
    document.write(webmaster);
    document.write(external);
    document.write(footerline+'</div>');

    return;
}