function DocToggleSection(XID) {
  if(object=document.getElementById(XID)) {
    object.className=(object.className=='showelement1')?'showelement0':'showelement1';
  }
}

