HOla Analcafe.. seria asi..
En el Head
Código head:
Ver original<script language="javascript">
function popupWin() {
text = "<html>\n<head>\n<title>Nuevos recursos</title>\n<body>\n";
text += "<center>\n<br>";
text += "<a href='AQUI LA DIRECCION DE LA VENTANA' target='_blank'><h2>Directorio de recursos web</h2></a>";
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 1000); // 1 segundo para abrir
}
function windowProp(text) {
newWindow = window.open('','newWin','width=300,height=100');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 5000); // 5seg. tiempo que dura abierta
}
function closeWin(newWindow) {
newWindow.close(); //
}
// End -->
</script>
y en el body colocas esto..
<body onLoad="popupWin()">
ahi esta indicada en el head la direccion de la pagina.. y el tiempo que tarda en abrir y luego en cerrar lo puedes cambiar..!!
Espero te sirva..! SAlu2!