//
// File: footer.js
//
// Purpose: This JavaScript file contains the scripting functions needed to
//          write out the footer.
//
//          It provides a date function to automatically write in the
//          copyright date and the last-updated date.
//
// History:
//
//    29 Jan 04: File created. 
//
//

document.write(''
+'<style type="text/css"> '
+'<!--  '
+'div.center { text-align: center; } '  //display: inline; float: right;
+'#footer { '
+'   margin:20px 0 10px 0; '
+'   padding:0 '
+'   font-size:10px; '
+'   font-family:arial, helvetica ,sans-serif; '
+'   width: 550px; '
+'   } '
+'#footer p, footer div {  '
+'   font-size: 10px; '
+'   font-family: arial, helvetica, sans-serif; '
+'   color: #000000;  '
+'   white-space: nowrap; '
+'   } '
+'#footer a {  '
+'   font-size: 10px; '
+'   font-family: arial, helvetica, sans-serif; '
+'   color: #336633;  '
+'   } '
+'#footer a:link { } '
+'#footer a:active { } '
+'#footer a:visited {  '
+'   font-size: 10px; '
+'   font-family: helvetica, arial, sans-serif; '
+'   color: #336633;  '
+'   } '
+'#footer a:hover { } '
+'#copyr { '
+'   margin:20px 0 10px 0; '
+'   padding:0 '
+'   font-size:10px; '
+'   font-family:arial, helvetica ,sans-serif; '
+'   width: 550px; '
+'   } '
+'#copyr p {  '
+'   font-size: 13px; '
+'   font-family: arial, helvetica, sans-serif; '
+'   font-weight: bold; '
+'   color: #000000;  '
+'   } '
+'#copyr a {  '
+'   font-size: 13px; '
+'   font-family: arial, helvetica, sans-serif; '
+'   color: #336633;  '
+'   } '
+'--> '
+'</style> '

+'<hr size="3" color="#000000" width="100%" noshade> '

+'<div id="footer"> '

+'<div class="footerLinks"> '

+'<div class="center"> '

+'</div></div></div> '

+'<div id="copyr"> '

+'<div class="center"> '

+'<p>&copy;  ');

var now = new Date();
var theYear = now.getFullYear();

document.writeln(theYear);

document.write('Sourland Mountain Muzzleloaders, Inc. All rights reserved.<br />');

document.write('Site Designed by <a href="http://www.riccodesigns.com">Ricco Web Designs</a>.<br />');

document.write('Please send comments to: Sam Ricco, <a href="mailto:webmaster@sourlandmountain.com">Webmaster</a>');

document.write('</p></div></div> ');


