// script for printing the year on a web page
if (document.images) {
	var dayName = new Array("SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY");
	var monName = new Array("JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER");
	var now = new Date;
	if (now.getYear() > 1000) 
	{theyear = now.getYear()
	}else{
	theyear = now.getYear()+1900
	}
	
	document.write("" + theyear+ "" );
} 
else {
	dayName = ""
	monName = ""
	now = ""
};
