function expandcollapse(text) {
   state = document.getElementById(text);
   if (state.className=="show") {
      state.className="hide";
   }
   else {
      state.className="show";
   }
}

