function getDim (id) {  
      document.getElementById(id).style.height="auto";
      // match box models
      if (document.all) {
      gh = document.getElementById(id).offsetHeight+10;
      }
      else {
      gh = document.getElementById(id).offsetHeight;
      }
      return (gh)
    }
    


