  function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
      if(switch_id.className == 'hide') {
         switch_id.className = 'show';
      }else{
        switch_id.className = 'hide';
      }
    }
  }
