function writePageInfo(author) {
  today = new Date();
  thisYear = today.getYear();
  if (thisYear < 1000) thisYear += 1900;

//  document.writeln('<br>');
  document.writeln('<br>');
  document.write('<p class="footnote">Unless otherwise noted, the contents of this website are copyright &copy; ');
  document.write(thisYear);
  document.write(' by ');
  if (author==null)
    document.write('Steven Radecki');
  else
    document.write(author);
  document.writeln('.<br>');
  document.writeln('For information or problems regarding this website, please <a href="mailto:webmaster@radecki.net?subject=Comments on the Radecki.Net web site">contact the webmaster</a>.');
  document.writeln('<br>');
  document.write('Last update: ');
  document.write(document.lastModified);
  document.writeln('</p>');
}