function printFooter(page) {
  var today = new Date();
  var thisYear = today.getFullYear();

  if (page == 'home') {
    var home = "Home";
  } else {
    var home = "<A HREF='/triangle3/home.html'>Home</A>";
  }
  if (page == 'bulletins') {
    var bulletins = "Bulletins";
  } else {
    var bulletins = "<A HREF='/triangle3/bulletins.html'>Bulletins</A>";
  }
  if (page == 'directions') {
    var directions = "Directions & Parking";
  } else {
    var directions = "<A HREF='/triangle3/directions.html'>Directions & Parking</A>";
  }
  if (page == 'officers') {
    var officers = "Officers";
  } else {
    var officers = "<A HREF='/triangle3/officers.html'>Officers</A>";
  }
  if (page == 'pm') {
    var pm = "Past Illustrious Masters";
  } else {
    var pm = "<A HREF='/triangle3/pm.html'>Past Illustrious Masters</A>";
  }

  document.write('<FONT FACE="sans-serif" SIZE=2>\n<P><HR ALIGN="CENTER" WIDTH="50%" SIZE="2" COLOR="#440044" NOSHADE></P>\n\n<P><B>Site Map</B></P>\n\n| '+home+' | '+bulletins+' | '+directions+' | '+officers+' | '+pm+' |<BR>\n<P><HR ALIGN="CENTER" WIDTH="50%" SIZE="2" COLOR="#440044" NOSHADE></P>\n\n<FONT SIZE=1>\nCopyright &copy; '+thisYear+'<BR>\nTriangle Council No. 3, Cryptic Masons of the District of Columbia<BR>\nAll rights reserved\n<BR><BR>\n\nWeb Page Design by James M. Stevenson, Illustrious Master</FONT></FONT><BR><BR>\n\n');
}
