function Show_Stuff(Click_Menu)
// Function that will swap the display/no display for
// all content within span tags
{
	var el = document.getElementById('facility' + Click_Menu)
	if (el.style.display == "none")
	{
		el.style.display = "block";
	}
	else
	{
		el.style.display = "none";
	}
}

function Show_Description(Click_Menu)
// Function that will swap the display/no display for
// all content within span tags
{
	if (Click_Menu.style.display == "none")
	{
		Click_Menu.style.display = "block";
	}
	else
	{
		Click_Menu.style.display = "none";
		document.getElementById('detailedDescription').style.display = "block";
		document.getElementById('detailedDescHide').style.display = "block";
	}
}

function Hide_Description(Click_Menu)
// Function that will swap the display/no display for
// all content within span tags
{
	if (Click_Menu.style.display == "none")
	{
		Click_Menu.style.display = "";
	}
	else
	{
		Click_Menu.style.display = "none";
		document.getElementById('detailedDescription').style.display = "none";
		document.getElementById('detailedDesc').style.display = "block";
	}
}

// Common YSM scripts go here

// This is used to control the Magic-Y menu
// Toggle Layer style for left property
function togLyr (el, status) { 
    var yale = (status == 1) ? "0" : "-999em";
    document.getElementById(el).style.left = yale;
}


// Jump Menus, Dreamweaver code
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


// Toggle Message Display
function displayMsg(currentToggle) {
	var toggle = document.getElementById(currentToggle).style
	// If the menu is expanded, contract it.
	if (toggle.display == "block") {
		toggle.display = "none"
	}
	else {
	// If the menu is contracted, expand it.
		toggle.display = "block"
	}
	return false
}