// Page Footer; Builds page footer and establishes copy right dates that are displayed on each page and picture
//

var copyright_date ='2000 - 2010'
document.writeln("<hr>");
document.writeln("<table summary='Page Footer' border='0' width='100%'>");
document.writeln("<tr><td class='xsmall' align='center'>Copyright &copy; "+copyright_date+" Bob Blackwell. All Rights Reserved.");
document.writeln("</td>");
document.writeln("</tr>");
document.writeln("</table>");