function DisplayHelpText(HelpText,x,y) {

  // Display the help text requested in the current frame.
  // This should be loaded on any page that does not require special HelpText processing. See PersButtons.asp for details.

  ShowHelpText(HelpText,x,y);
}

function NoDisplayHelpText() {

  // Hide the help text shown in the current frame.
  // This should be loaded on any page that does not require special HelpText processing. See PersButtons.asp for details.

  HideHelpText();
}

