//------------------------------------------------------------------------
// footer.js
// ---------
//
// Functions:
//   GetCurrentYear() - returns text string containing the current year
//   GetFooterlinks - returns text string containing footerlinks
//   GetCopyright - returns text string containing copyright information
//   GetFooter - returns text string containing footer
//
//------------------------------------------------------------------------

function GetCurrentYear() {
  var d = new Date();
  y = d.getYear();
  if (y < 2000)
    y += 1900;  // Fixes Y2K bug in Netscape 4.x
  return y;
}

function GetFooterlinks() {
  str = '<a class="footerlinks" href="events.htm">What\'s Happening</a> | '
      + '<a class="footerlinks" href="program/training.htm">Training</a> | '
      + '<a class="footerlinks" href="program/advancement.htm">Advancement</a> | '
      + '<a class="footerlinks" href="camping/camping.htm">Camping</a> | '
      + '<a class="footerlinks" href="districts/districts.htm">District Units</a> | '
      + '<a class="footerlinks" href="resources.htm">Resources</a> | '
      + '<a class="footerlinks" href="mailto:lschramm@bsamail.org?subject=INWC_Feedback">Feedback</a>';
  return str;
}

function GetCopyright() {
  str = 'Copyright &copy; ' + GetCurrentYear() + ' Inland Northwest Council, B.S.A';
  return str;
}

function GetFooter() {
  str = 'Website designed by <a class="footer" href="mailto:codescripter@programmer.net" title="Code Scripter computing services">Tom Battista-Carter</a>';
  return str;
}