if (self != top) {
  top.location = self.location;
}

function mSafari() {
  setTimeout(function() {
    window.scrollTo(0, 1);
  }, 10);
}

function showobject(obj) {
  if(window.document.getElementById(obj).style.display == "none") {
  window.document.getElementById(obj).style.display = "block";
  } else {
  window.document.getElementById(obj).style.display = "none";
  }
}
