SUBROUTINE DISPLAYPARAMS
* List the parameters available to this RealWeb page.

* Include the RealWeb definitions
INCLUDE #RW.INCLUDE.DEFS FROM /SYSFILES/REALWEB,BP

EQU AM TO CHAR(254)

* Start the HTML page.
* Display the text 'List Parameters' in the browser's title bar.
CALL RW_START_HTML_PAGE("List Parameters", "", "", "", "")

* Insert a heading containing descriptive text.
CALL RW_HEADING(1, "Parameters")

* Display the parameters
CALL RW_DISPLAY_PARAMS("")

* Complete the page.
CALL RW_END_PAGE
RETURN