<!--
function Show_Stuff(id)
{
	// Function that will swap the display/no display for
	// all content within span tags
	var Click_Menu = document.getElementById(id);
	if (Click_Menu.style.display == "none")
	{
	Click_Menu.style.display = "";
	}
	else
	{
	Click_Menu.style.display = "none";
	}
	return false;
}
-->
