
// display copyright information
function display_copyright()
{
   var copyright;
   var update;

   copyright = new Date();
   update = copyright.getFullYear();

   document.write("© " + update + " Teri's Department 56 Community.");

   return;
}


