SUBROUTINE FRAMESET3
* Create a frameset with two frames.

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

* Start the HTML page.
CALL RW_START_HTML_PAGE("Frameset", "", "", "", RWD_FRAMESET)

* Start the frameset.
CALL RW_START_FRAMESET("", "50%,*", "")

* Define the left-hand frame.
CALL RW_FRAME("HELLOWORLD", "left", "")

* Define the right-hand frame.
CALL RW_FRAME("WELCOME", "right", "")

* Provide a message for browsers with no frame support.
CALL RWS_NOFRAME('Sorry, this document can only be viewed with a browser that supports frames.', "")

* Complete the frameset.
CALL RW_END_FRAMESET
RETURN