<!-- 
//script for Becky Patellis

// show/hide schedule

	var showDiv = true;

 function showhideDiv(theDiv)
	{ // added 09-05-2007
	var obj = theDiv;
	var objDiv = 'showDiv_'+theDiv;
	
	

	if (showDiv == true)
		{
		document.getElementById(obj).style.display = 'block';
		showDiv = false;
		}
	else
		{
		document.getElementById(obj).style.display = 'none';
		showDiv = true;
		}
		}
-->