function gotomo()
{
location.href = document.selmo.theselmo.value
}
function gotoyr()
{
location.href = document.selyr.theselyr.value
}
//ADD IN - CATEGORY
function gotocat()
{
location.href = document.selcat.theselcat.value
}

//ADD IN - ENERGY TYPE
function gotoenergytype()
{
location.href = document.selenergytype.theselenergytype.value
}


function toggleDisplay(theID) {
 var theElement = document.getElementById(theID);
 if (theElement.className == 'appointmentDetails'){
	theElement.className = 'appointmentDetailsShow'
	}
 else { 
 	theElement.className = 'appointmentDetails'
	}
}