
function tdmv(aItem)
{
	aItem.style.backgroundColor = '#ffffff';
}

function tdmu(aItem)
{
	aItem.style.backgroundColor = '#fcebd7';
}

function tdtmo(aItem)
{
	aItem.style.backgroundColor = '#EBDAC6';	
}

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();
}
