//***********************************************************************
// Purpose: Displays the year in the 2nd box of calendar.html
// By: Jeremy Service
// Date: October 2007
//***********************************************************************
function display_year()
{
	//declare variables
	var d=new Date()
	var day=d.getDate()
	var month=d.getMonth() +1 //+1 b/c month is valued between 0-11
	var year=d.getFullYear() 
	
	document.write("<b>" + year + " UPCOMING EVENTS" +"</b>"); 
}

