// JavaScript Document
function disappear(two)
// Function that will swap the display/no display for 
// all content within span tags
{
if (two.style.display == "none")
{
two.style.display = "";
}
else
{
two.style.display = "none";
}
}