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,