// JavaScript Document
// Call this js in the place in your paga that you want the copyright symbol and year to appear 
// Formatted copyright symbol and current year


var d = new Date();
var curr_year = d.getFullYear();




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; 1997-");
  document.write(curr_year);
  }


