Oi,
Mesma coisa...
Vou explicar como está funcionando:
O meu index.html (principal) está assim:
<FRAMESET border=0 frameSpacing=0 frameBorder=0 cols=187,*>
<FRAME name=side marginWidth=0 marginHeight=50 src="side.html" frameBorder=no noResize scrolling=no leftmargin="0" topmargin="0">
<FRAMESET border=0 rows=96,* frameBorder=0><FRAME name=top marginWidth=0 marginHeight=0 src="top.html" frameBorder=no noResize scrolling=no leftmargin="0" topmargin="0">
<FRAME name=main marginWidth=0 marginHeight=0 src="main.html" frameBorder=no noResize leftmargin="0" topmargin="0">
</FRAMESET>
Ou seja, estou motando o side.html que é onde fica os meus botões, depois estou montando o top.html que é o meu topo e por fim o main.html que é onde ficam os textos do site.
Na classe side.html está assim:
<A href="empresa.html">
<IMG height=39 src="empresa.jpg" width=188 border=0><BR>
</A>
Quando eu clico no botão EMPRESA, ele irá abrir esse empresa.html.
Neste empresa.html é uma copia do index.html porém no lugar de chamar o main.html eu estou chamado o mainEmpresa.html que fica o texto da parte da empresa:
<FRAMESET border=0 frameSpacing=0 frameBorder=0 cols=187,*>
<FRAME name=side marginWidth=0 marginHeight=50 src="side.html" frameBorder=no noResize scrolling=no leftmargin="0" topmargin="0">
<FRAMESET border=0 rows=96,* frameBorder=0><FRAME name=top marginWidth=0 marginHeight=0 src="top.html" frameBorder=no noResize scrolling=no leftmargin="0" topmargin="0">
<FRAME name=main marginWidth=0 marginHeight=0 src="mainEmpresa.html" frameBorder=no noResize leftmargin="0" topmargin="0">
</FRAMESET>
Só que isso não funciona... ele simplesmente continua no index.html
Obs: Se eu chamar diretamente na ação do botão a classe mainEmpresa.html:
<A href="mainEmpresa.html">
<IMG height=39 src="empresa.jpg" width=188 border=0><BR>
</A>
Ele funciona, porém não no local correto! ele sobreescreve o meu side.html.
Tchauzin!