// Used previously in the BODY tag
// onResize="document.location.href = document.location.href"

// Display Script
function disappear(obj) {
  if (obj.style.display == "none") {
    obj.style.display = ""; harry.style.display = "none";
  }
  else {
    obj.style.display = "none"; harry.style.display = "inline";
  }
}

// Show/Hide Script
function show(obj) {
  if (obj.style.visibility == "hidden") {
    obj.style.visibility = "visible";
  }
  else {
    obj.style.visibility = "hidden";
  }
}
