Ver Mensaje Individual
  #6 (permalink)  
Antiguo 14/09/2004, 08:15
Avatar de Yusta
Yusta
 
Fecha de Ingreso: septiembre-2001
Ubicación: Madrid
Mensajes: 158
Antigüedad: 22 años, 8 meses
Puntos: 0
Lo estuve probando y a mí me salía como te comenté
te copio el código a ver si te vale de ayuda:
Código de ventana Padre :
/************************************************** *************\

<html>
<head></head>
<body>
<a href="javascript:window.open('PopUp.html','POP',20 0,200);">abrelo</a>
</body>
</html>
/************************************************** *************\

Código de ventana PopUp
/************************************************** *************\
<html>
<head>
<script>
function redirecciona()
{
window.opener.location.href ="http://www.google.es";
var ventana = window.self;
ventana.opener = window.self;
ventana.close();
}
</script>
</head>
<body>
<INPUT type="button" value="toma esa" onClick="redirecciona();" ID="Button1" NAME="Button1">

</body>
</html>

/************************************************** *************\

Ahi lo tienes un saludo