How to: Use HTML frames
This tutorial demonstrates how to use HTML frames.
You can add default frame for all links in page properties.
Write HTML page with frames.
<html>
</head>
<frameset rows="40%,*">
<frame name="main" src="http://www.docpointer.com/">
<frame name="map" src="AppletFrameExample1.html" >
<noframes>
<body><p>This page uses frames.</p></body>
</noframes>
</frameset>
</html>
Target frame of link can be set in link properties.
Export HTML version of Map Page (AppletFrameExample1.html) and test it in Web Browser.