Ver Mensaje Individual
  #5 (permalink)  
Antiguo 08/11/2004, 16:31
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 23 años
Puntos: 38
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!