
function tdmv(aItem)
{
	aItem.style.backgroundColor = '#C5C97C';
}

function tdmu(aItem)
{
	aItem.style.backgroundColor = '#E3C69C';
}

function tdtmo(aItem)
{
	aItem.style.backgroundColor = '#FFFFFF';	
}

function ensureRefresh()
{
	document.calendarPage.day.value = "";
	document.calendarPage.view.value = "calendar";
	document.calendarPage.submit();
}

function sendDay(schedDay, schedMonth, schedYear)
{
	document.calendarPage.day.value = schedDay;
	document.calendarPage.month.value = schedMonth;
	document.calendarPage.year.value = schedYear;
	document.calendarPage.view.value = "schedule";
	document.calendarPage.submit();
}
