![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
14/09/2004, 08:15
|
![Avatar de Yusta](http://static.forosdelweb.com/customavatars/avatar9919_1.gif) | | | Fecha de Ingreso: septiembre-2001 Ubicación: Madrid
Mensajes: 158
Antigüedad: 23 años, 5 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 |