// JavaScript Document

function displayDate() {
// In YYYY format
	var theDate = new Date();
	yearnow = theDate.getFullYear();
	document.write(yearnow);
}
