function showSearchHelp() {
  var obj = document.getElementById('search_help');

  if (obj != null) {
      obj.style.visibility = 'visible';
  }
}

function hideSearchHelp() {
  var obj = document.getElementById('search_help');

  if(obj != null) {
      obj.style.visibility = 'hidden';
  }
}