function getYear() {
	today = new Date();
	Year=today.getYear();
	if (Year < 1000)
		Year+=1900;
	document.write(Year);
}


