
function switch_visible()
{
  var d=document.getElementById("aaa");
  var c=d.style.display;
  d.style.display=(c=='block')?"none":"block";
}
