function YearString () {

	today = new Date();
	
	year  = today.getYear();
	
	if (year < 2000) {
	
		year = year + 1900;
	}
	
	return year;
}
