function gotomo()
{
location.href = document.selmo.theselmo.value
}
function gotoyr()
{
location.href = document.selyr.theselyr.value
}
function gotoet()
{
location.href = document.selet.theselet.value
}
function openWindow(url){
var height = screen.height;
var width = screen.width;
var myHeight = 600;
var myWidth = 800;
var leftpos = width / 2 - myWidth / 2;
var toppos = height / 2 - myHeight / 2; 
windowHandle = window.open(url, 'newwin','height=600,width=800,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,top='+toppos+',left='+leftpos);
if (windowHandle.opener == null)
windowHandle.opener = window;
windowHandle.focus();
}
function openHome(){
windowHandle = window.open('http://law.hofstra.edu', 'homewin','toolbar=1,location=1,status=1,menubar=1,scrollbars=1,resizable=1');
if (windowHandle.opener == null)
windowHandle.opener = window;
windowHandle.focus();
self.close();
}
function toggleDisplay(theID) {
 var theElement = document.getElementById(theID);
 if (theElement.className == 'appointmentDetails'){
	theElement.className = 'appointmentDetailsShow'
	}
 else { 
 	theElement.className = 'appointmentDetails'
	}
}