// Auto update the year
function displayYear()
{
  var d=new Date();
  var year= d.getFullYear();
  document.write(year);
}