// JavaScript Document
function year() {
	var today = new Date();
	var year = today.getFullYear();
	document.write(year);
}
