function getAnElement (id) {
  if (document.all) {
    return document.all[id];
  } else {
    return document.getElementById(id);
  }
}

function toggleDiv (id) {
  var theDiv = getAnElement(id);
  theDiv.style.display = theDiv.style.display == "block" ? "none" : "block"; 
}
