// JavaScript Document

function copyright(){
	var $date=new Date();
	var $year=$date.getYear();
	document.write($year);
}