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