Te hice un ejemplo, disculpa por la tardanza
---------index.html------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "
http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="*" cols="138,*" frameborder="NO" border="0" framespacing="0">
<frame src="menu.htm" name="leftFrame" scrolling="NO" noresize>
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0">
<frame src="superior.htm" name="topFrame" scrolling="NO" noresize>
<frame src="pagina1.htm" name="mainFrame">
</frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>
-------- superior.htm --------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #FFFFCC;
}
-->
</style></head>
<body>
Esta es solo la parte superior
</body>
</html>
-------- principal.htm ---------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p> </p>
<p>Esta es la pagina 1, aqui se cambiara por la pagina 2 </p>
</body>
</html>
----------------menu.htm --------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #FFCC00;
}
-->
</style></head>
<body>
<p><a href="pagina1.htm" target="mainFrame">Cargar Pagina 1</a></p>
<p><a href="pagina2.htm" target="mainFrame">Cargar Pagina 2 </a></p>
</body>
</html>
--------------- pagina2.htm --------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p> </p>
<p>Esta es la pagina 2, la cual fue cargada en el: <strong>mainFrame</strong> </p>
</body>
</html>
--------------
checa primero el menu.htm, checa que en el link
<a href="pagina1.htm" target="mainFrame">
En target especificas hacia que ventana enviaras el link, en el archivo index.htm, nombras cada frame
<frame src="pagina1.htm" name="mainFrame">