MENU #handle, "title", "text", [branchLabel], "text2", [branchLabel2],  |  , . . .
or
MENU #handle, "title", "text", subName1, "text2", subName2, |, ...

Description:
This command adds a pull down menu to the window at #handle.  The item "title" specifies the title of the menu, as seen on the menu bar of the window, and each "text", [branchLabel] pair after the title adds a menu item to the menu, and tells Just BASIC where to branch to when the menu item is chosen. A sub can be used as a menu event handler. 

The " | " character can optionally be placed between menu items, to cause a separating line to be added between the items when the menu is pulled down.

The " & " character placed in the title and text items for the menu specifies the accelerator placement for each item.  The letter directly following the " & " character will act as a hotkey for that menu item, when it is pressed while the user presses and holds down the ALT key. The hotkey appears underlined in the menu display. To include " & " in the item, use a double " && ".

The menu command must be contained on one line.  To break the line for viewing in the Just BASIC editor, use the line continuation character, " _ ".
