Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/11/2002, 13:40
Avatar de .
.
 
Fecha de Ingreso: mayo-2002
Ubicación: Tampico
Mensajes: 906
Antigüedad: 22 años, 10 meses
Puntos: 1
<script>
function hola(){
alert('Funcion');
}
function abrir(){
ventana = window.open('ventana.html','nombre');
//return ventana
test();
}
function test(){
if(ventana.closed==true){
hola();
}
else{
setTimeout("test()",1000);
}
}
</script>
<body onload="abrir()">

te explicaría el funcionamiento, pero es muy simple