function gotoMo()
{
	location.href = document.frmSelMo.selectMonth.value
}
function gotoYr()
{
	location.href = document.frmSelYr.selectYear.value
}
function toggleDisplay(theID){
	var theElement = document.getElementById(theID);
	if (theElement.className == 'appointmentDetails'){
		theElement.className = 'appointmentDetailsShow'
	}else{ 
		theElement.className = 'appointmentDetails'
	}
}