frames.html content:
<FRAMESET cols=15%,85%> <FRAME name = left_wnd scrolling=no src="leftpage.html"> <FRAMESET rows=15%,85%> <FRAME name = top_wnd scrolling=no src="toppage.html"> <FRAME name = main_wnd scrolling=yes src="mainpage.html"> </FRAMESET> </FRAMESET>
leftpage.html content:
<HTML>
<HEAD>
<script language="Javascript">
function changeAll()
{
open('mainpage.html','left_wnd');
open('leftpage.html','main_wnd');
open('leftpage.html','top_wnd');
}
</script>
</HEAD>
<BODY>
<APPLET code="apButtonMenu" Archive="apButtonMenu.jar" height=240 width=130 mayscript>
<PARAM NAME="status" VALUE="link">
<PARAM NAME="backColor" VALUE="66CCFF">
<PARAM NAME="fontColor" VALUE="FFFFFF">
<PARAM NAME="fontHighColor" VALUE="FFFF00">
<PARAM NAME="buttonType" VALUE="1">
<PARAM NAME="alignText" VALUE="center">
<PARAM NAME="font" VALUE="Courier,15,1">
<PARAM NAME="javascript:1" VALUE="changeAll()">
<PARAM NAME="menuItems" VALUE="
{Main in Main,mainpage.html,main_wnd}
{Top in Main,toppage.html,main_wnd}
{Left in Main,leftpage.html,main_wnd}
{Top in Top,toppage.html,top_wnd}
{Main in Top,mainpage.html,top_wnd}
{Left in Top,leftpage.html,top_wnd}
{Change All,javascript:1,_}
{Home,../../index.html,_parent}">
</APPLET>
</BODY>
</HTML>