// footHTML.js
// JavaScript file to generate HTML for the footer that will appear on all pages.
// This JavaScript file exists as a solution to the problem of not being able
// to include an HTML file within another HTML file.
if (document.images) { // if browser can do JavaScript 
  var theHTML = '<center>';
  theHTML += '<!--#exec cgi="/cgi-bin/counter.pl"-->';
  theHTML += '<p><span onmouseover="this.style.backgroundColor = \'#000080\';" onmouseout="this.style.backgroundColor = \'#0145AC\';"><a href="#top">';
  theHTML += 'Back to top</a></span>';
  theHTML += '<br>';
  theHTML += '<hr SIZE=8 WIDTH="70%">';
  theHTML += '<p><font size=-2>&copy; Copyright 2006, Take Note!</font>';
  theHTML += '<br><font size=-2>Web Page maintained by Barry Astrow, designed by Case Ahr</font>';
  theHTML += '<p>';
  theHTML += '</center>';
document.write(theHTML);
}
