//restored missing 2012 function -DonD 1/15/2012
function setMonthIn2011(M){
	var d=new Date();
//	d.setMonth(1); //test
	var month=new Array(12); // It's easy to declare an array implicitly in javascript, just use: var ARRAY = [foo, bar, ... ]; Just a hint for future.
	month[0]="January";
	month[1]="February";
	month[2]="March";
	month[3]="April";
	month[4]="May";
	month[5]="June";
	month[6]="July";
	month[7]="August";
	month[8]="September";
	month[9]="October";
	month[10]="November";
	month[11]="December";
	isCurrentMonth='<a class="linksched" href="#top">Back to Top</a>';  //the called with month is not the current month
	if (month[d.getMonth()] == month[M-1])	{
		isCurrentMonth='<a name="month" class="linksched" href="#top">Back to Top</a>';  // is the CM
	}
	document.write('<strong>' + month[M-1] + ' 2011' + isCurrentMonth + '</strong>'); // Changed formatting slightly -- Kenny
	
//eg: '<strong>January 2011 - <a name="month" class="linksched" href="#top">Back to Top</a></strong>'	
}
function setMonthIn2012(M){
	var d=new Date();
//	d.setMonth(1); //test
	var month=new Array(12); // It's easy to declare an array implicitly in javascript, just use: var ARRAY = [foo, bar, ... ]; Just a hint for future.
	month[0]="January";
	month[1]="February";
	month[2]="March";
	month[3]="April";
	month[4]="May";
	month[5]="June";
	month[6]="July";
	month[7]="August";
	month[8]="September";
	month[9]="October";
	month[10]="November";
	month[11]="December";
	isCurrentMonth='<a class="linksched" href="#top">Back to Top</a>';  //the called with month is not the current month
	if (month[d.getMonth()] == month[M-1])	{
		isCurrentMonth='<a name="month" class="linksched" href="#top">Back to Top</a>';  // is the CM
	}
	document.write('<strong>' + month[M-1] + ' 2012' + isCurrentMonth + '</strong>'); // Changed formatting slightly -- Kenny
	
//eg: '<strong>January 2011 - <a name="month" class="linksched" href="#top">Back to Top</a></strong>'	
}

