function inline_help_toggle(help_id) {
  helpdiv = document.getElementById(help_id + '_helpdiv');
  if(helpdiv.style.display == "inline") {
    helpdiv.style.display = "none";
  } else {
    helpdiv.style.display = "inline";
  }
}
