// JavaScript Document
function displayyear() {
  var theDate=new Date()
  document.write(theDate.getFullYear())	
}
