// Call href="javascript:sh('id_of_thing_to_show/hide')" on element to toggle

function sh(id, show) {
           if (el = document.getElementById(id)) {
                   if (null==show) show = el.style.display=='none';
                   el.style.display = (show ? '' : 'none');
           }
   }