/* Tree Menu */

 function show_tree (id) {
  if (document.getElementById) {
    obj = document.getElementById (id);
    if (obj && obj.style) {
     obj.style.display = (obj.style.display=="none") ? "block" : "none";
    }
  }
 }
 
/* Tree Menu */