/*----------------------------------------------------------------------

 NAME        : footer.js

 PRODUCT     : Charlotteville Cycling Club website

 REVISION    : 2.0 - Dynamic Copyright end date!

 AUTHOR      : Alex Baker

 DATE        : 04 January 2006

 COPYRIGHT   : Copyright (c)2006 Charlotteville Cycling Club

 SYNOPSIS    : Page footer JavaScript source.

 DESCRIPTION : JavaScript include file.

----------------------------------------------------------------------*/


var date_now = new Date();
var year_now = date_now.getFullYear();

footer_text = (

  "<table class='footer'>" +

  "  <tr>" +
  "    <td class='footer_upper' colspan='2''><hr class='footer'></td>" +
  "  </tr>" +

  "  <tr>" +
  "    <td class='footer_left'><a href='mailto:webmaster@guildfordcyclechallenge.com'>Contact</a> the Webmaster</td>" +
  "    <td class='footer_right'>Copyright © " + year_now + "<br>Charlotteville Cycling Club</td>" +
  "  </tr>" +

  "</table>"

);

document.write(footer_text);


//----------------------------------------------------------------------