// JavaScript Document
// Call this js in the place in your page that you want the copyright symbol and year to appear 
// Formatted copyright symbol and current year
if (Date.parse(document.lastModified) != 0) {
  var modiDate = new Date(document.lastModified);
  var modiYear = modiDate.getYear();
  modiYear = (modiYear < 2000) ? modiYear + 1900 : modiYear;
  document.write("&copy; ");
  document.write(modiYear);
  }


