separate (Help_Utility)
-------------------------PROLOGUE---------------------------------------
--                                                                    -*
-- Unit name    :  RESET_HELP
-- Date created :  04 March 1985
-- Last update  :
--                                                                    -*
------------------------------------------------------------------------
--                                                                    -*
-- Abstract     :  The procedure sets the help mode flag to true and
----------------: resets the current node pointer to the top node of the
----------------: tree.
--                                                                    -*
------------------------------------------------------------------------
--
-- Mnemonic     :
-- Name         :
-- Release date :
------------------ Revision history ------------------------------------
--
-- DATE  AUTHOR   HISTORY
--
--
--


--------------------END-PROLOGUE----------------------------------------
procedure Reset_Help is

begin

    Help_Utility.Current_Node := Help_Utility.Top_Node;

    -- set HELP_MODE to on

    Help_Utility.Help_Mode := True;
    Help_Utility.First_Help_Me_Call := True;

end Reset_Help;