| 
  
 <HTML>
 <FRAMESET rows="33%,*,33%">
 <FRAME name="t_frame" src="frame1.html">
 <FRAME name="m_frame" src="frame2.html">
 <FRAME name="b_frame" src="frame3.html">
 </FRAMESET>
 </HTML>
 
 
 File: frame1.htm
 <HTML>
 <HEAD>
 <SCRIPT language="JavaScript">
 function twoframes(){
 parent.m_frame.location="frame4.html";
 parent.b_frame.location="frame5.html";
 }
 </SCRIPT>
 </HEAD>
 <BODY>
 This is frame 1, the top frame: <A HREF="javascript:twoframes();">Change the two lower frames</A>
 </BODY>
 </HTML>
 
 File: frame2.htm
 
 <HTML>
 <BODY>
 This is frame 2, the middle frame.
 </BODY>
 </HTML>
 
 File: frame4.htm
 
 <HTML>
 <BODY>
 This is frame 4, the new middle frame.
 </BODY>
 </HTML>
 
 
 File: frame5.htm
 <HTML>
 <BODY>
 This is frame 5, the new bottom frame.
 </BODY>
 </HTML>
 
 
 
 
 |