//***********************************************************************
// Purpose: Displays the year in the bottom box of calendar.html
// By: Jeremy Service
// Date: October 2007
//***********************************************************************
function display_next_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()
	var year_and_one = year +1
	document.write("<b>"+ year_and_one + " UPCOMING EVENTS" +"</b>"); 
}