
    function adshow(id)
    {
      document.getElementById(id).style.visibility='visible';
    }
    function adhide(id)
    {
      document.getElementById(id).style.visibility='hidden';
    }
