// 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();

  document.write("&copy; ");
  document.write(curr_year);



