Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/03/2003, 11:05
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola, obi-alf.

Con este código se abrirá un pop-un al cargarse la página y un segundo pop-up pasados 5 segundos.
Código PHP:
<html>
<
head>
<
script>
function 
inicio() {
    
window.open("c:/del/web/dos.html");
    
setTimeout("window.open('c:/del/web/tres.html')",5000);
}
</script>
</head>

<body onLoad="inicio()">

</body>
</html> 
Cambia el 5000 (se refiere a milisegundos) por el tiempo que necesites.

De nada. Saludos,