<!--
  function showHide(elementID) {
    var thisArea = null;

    if (document.getElementById) {
      thisArea = document.getElementById("area_" + elementID);
    } else if (document.all) {
      thisArea = document.all["area_" + elementID];
    } else if (document.layers) {
      thisArea = document.layers["area_" + elementID];
    }

    if (thisArea) {
      if (thisArea.style.display == 'none') {
        expand(elementID);
      } else {
        collapse(elementID);
      }
    }
  }

  function expand(elementID) {
    var thisArea = null;
    var thisIcon = null;

    if (document.getElementById) {
      thisArea = document.getElementById("area_" + elementID);
      thisIcon = document.getElementById("areaicon_" + elementID);
    } else if (document.all) {
      thisArea = document.all["area_" + elementID];
      thisIcon = document.all["areaicon_" + elementID];
    } else if (document.layers) {
      thisArea = document.layers["area_" + elementID];
      thisIcon = document.layers["areaicon_" + elementID];
    }

    if (thisArea.style.display == 'none') {
      //cnt.style.backgroundColor = '#FFFAF3';
      //cnt.style.border = '1px dotted #000000';
      //cnt.style.padding = '5px';
      //cnt.style.marginBottom = '5px';
      thisArea.style.display = 'block';
      thisIcon.src = "/images/bullets/areaicon_minus.gif";
    }
  }

  function collapse(elementID) {
    var thisArea = null;
    var thisIcon = null;

    if (document.getElementById) {
      thisArea = document.getElementById("area_" + elementID);
      thisIcon = document.getElementById("areaicon_" + elementID);
    } else if (document.all) {
      thisArea = document.all["area_" + elementID];
      thisIcon = document.all["areaicon_" + elementID];
    } else if (document.layers) {
      cnt = document.layers["cnt_" + elementID];
      thisArea = document.layers["area_" + elementID];
      thisIcon = document.layers["areaicon_" + elementID];
    }

    if (thisArea.style.display != 'none') {
      //cnt.style.backgroundColor = '';
      //cnt.style.border = '';
      //cnt.style.padding = '';
      //cnt.style.marginBottom = '';
      thisArea.style.display = 'none';
      thisIcon.src = "/images/bullets/areaicon_plus.gif";
    }
  }

//-->