  function highlightField(type,element) {
    if (type == "on") {
      element.style.backgroundColor = "#FFE9B8";
      element.style.color = "#000";
    } else {
      element.style.backgroundColor = "";
      element.style.color = "";
    }
  }

  function showHelp(number) {
    theDiv = "help" + number;
    if (document.getElementById(theDiv).style.display == "block") {
      document.getElementById(theDiv).style.display = "none";
    } else {
      document.getElementById(theDiv).style.display = "block";
    }
  }