	function writeYear() {
		var time=new Date();
		var year=time.getFullYear();
		document.write(year);
	}

