	function swap(whut) {
    target = document.getElementById(whut);
    if (target.style.display == 'block') {
      target.style.display = 'none';
    } else {
      target.style.display = 'block';
    }
  }

