// JavaScript Document
/* This script displays the year as the current year */
	var today = new Date()
	var year = today.getYear()
	if (year < 1900)
	{
	year = year + 1900;
	}
	document.write(year)