
function toggleVisibility(elt) 
{if (elt.style.display == "block") 
elt.style.display = "none";
else elt.style.display = "block";
}
