// JavaScript Document

function thisYear(){
	now = new Date;
	thisYear=now.getYear();
		if (thisYear < 1900)
	thisYear=thisYear+1900;
	document.write(thisYear);
}
