// calendar.html javascript
//global variables
function local_onload()
{
	//alert("calendar onload");
	//20050320 - show images and layer 
	document.showHideForm.showHideField.value = "calendar"
	MM_swapImage('calendar','','images/calendarTab_01-over.gif',1);
}
//2005.10.10,DJG, 
function goToMonth()
{
	var selectedMonth = document.selectMonthForm.selectMonth.value
	if (selectedMonth == "September")
	{
		MM_goToURL('parent','September.html');return document.MM_returnValue
	}
	else if (selectedMonth == "October")
	{
		MM_goToURL('parent','October.html');return document.MM_returnValue
	}
	else if (selectedMonth == "November")
	{
		MM_goToURL('parent','November.html');return document.MM_returnValue
	}
	else if (selectedMonth == "December")
	{
		MM_goToURL('parent','December.html');return document.MM_returnValue
	}
	else if (selectedMonth == "January")
	{
		MM_goToURL('parent','January.html');return document.MM_returnValue
	}
	else if (selectedMonth == "February")
	{
		MM_goToURL('parent','February.html');return document.MM_returnValue
	}
	else if (selectedMonth == "March")
	{
		MM_goToURL('parent','March.html');return document.MM_returnValue
	}
	else if (selectedMonth == "April")
	{
		MM_goToURL('parent','April.html');return document.MM_returnValue
	}
	else if (selectedMonth == "May")
	{
		MM_goToURL('parent','May.html');return document.MM_returnValue
	}
	else if (selectedMonth == "June")
	{
		MM_goToURL('parent','June.html');return document.MM_returnValue
	}
	else if (selectedMonth == "July")
	{
		MM_goToURL('parent','July.html');return document.MM_returnValue
	}
	else if (selectedMonth == "August")
	{
		MM_goToURL('parent','August.html');return document.MM_returnValue
	}
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}