<!-- 



function Display_Content(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 = "";
}
}



function Remove_Content(Click_Menu)
// Function that will swap the display/no display for
// all content within span tags
{
if (Click_Menu.style.display == "")
{
Click_Menu.style.display = "none";
}
else
{
Click_Menu.style.display = "none";
}
}


//-->