Tu página de muebles:
Código PHP:
<html>
<head>
<script language='javascript'>
function directo(){
top.menu.location.href = opener.document.frm.frame1.value;
top.contenidos.location.href = opener.document.frm.frame2.value;
}
if (opener.location.href == "www.mipagina.htm")
directo();
</script>
</head>
<body>
.
.
.
</body>
</html>
Tu página nueva:
Código PHP:
<html>
<head>
<script language='javascript'>
function abreMuebles(){
document.frm.frame1.value = "menu2.htm";
document.frm.frame2.value = "contenido4.htm";
open("www.muebles.com");
}
if (opener.location.href == "www.mipagina.htm")
directo();
</script>
</head>
<body>
<form name='frm'>
<a href='javascript:abreMuebles()'>Muebles</a>
<input type='hidden' name='frame1'>
<input type='hidden' name='frame2'>
</form>
.
.
.
</body>
</html>
Suerte!