<!-- // comment out html reading into javascripts if the browser doesn't support javascript
function disappear(obj) {
  if (obj.style.display == "none") {
    obj.style.display = "";
  }
  else {
    obj.style.display = "none";
  }
}
//-->