function togleSearch() {
  var searchbox = document.getElementById("searchbox");
  if (searchbox != null) {
    if (searchbox.style.display == "block") {
      searchbox.style.display = "none";
    } else {
      searchbox.style.display = "block"
    }
  }
}
