function writePageInfo() {
  today = new Date();
  thisYear = today.getYear();
  if (thisYear < 1000) thisYear += 1900;

  document.writeln('<br>');
  document.writeln('<br>');
  document.write('<p class="footnote">The information on this web site is copyright &copy; ');
  document.write(thisYear);
  document.writeln(' by Laura Marshall Photography. All rights reserved.');
  document.writeln('<br>');
  document.write('For information or problems regarding this website, please ');
  document.write('<script>sendMail("webslinger", "contact the webmaster", "About the Laura Marshall Photography web site");</script>');
  document.writeln('</a>.');
  document.writeln('<br>');
  document.write('Last update: ');
  document.write(document.lastModified);
  document.writeln('</p>');
}