// JavaScript Document - http://www.namepros.com/code/67426-javascript-expand-collapse.html

// Collapsing staff divs; see "#expandouter" in div.css


   function doMenu(item) {
     obj=document.getElementById(item);
     col=document.getElementById("x" + item);
     if (obj.style.display=="none") {
       obj.style.display="block";
       col.innerHTML="[-]";
     }
     else {
       obj.style.display="none";
       col.innerHTML="[+]";
     }
   }

