<!--
    function empty() {
      return;
    }

    function HideShow(ID1,ID2){
      document.getElementById(ID1+'_Link').style.textDecoration = "none";
      document.getElementById(ID1+'_Link').style.fontWeight = "bold";
      document.getElementById(ID1+'_Link').style.color = "black";
      if(ID1 == 'Lists'){
        document.getElementById("Examples").innerHTML = "Example: <a href=\"/search/Best Cities\">Best Cities</a>, <a href=\"/search/Best Actors\">Best Actors</a>, etc.";
      }else{
        document.getElementById("Examples").innerHTML = "Example: <a href=\"/item/New York\">New York</a>, <a href=\"/item/Johnny Depp\">Johnny Depp</a>, etc.";
      }
      document.getElementById(ID1+'_Link').style.color = "black";
      
      document.getElementById(ID2+'_Link').style.textDecoration = "underline";
      document.getElementById(ID2+'_Link').style.fontWeight = "normal";
      document.getElementById(ID2+'_Link').style.color = "blue";
      document.forms['TopSearchForm'].what.value = ID1;
      document.forms['TopSearchForm'].query.focus();
      if(document.forms['TopSearchForm'].query.value != ""){
        document.forms['TopSearchForm'].submit();
      }
      return true;
    }
-->
