
// display copyright information
function display_copyright()
{
   var copyright;
   var update;

   copyright = new Date();
   update = copyright.getFullYear();

   document.write("© " + update + " Mary Anne Barothy.");

   return;
}



