Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/11/2003, 20:41
Avatar de Ludwingg
Ludwingg
 
Fecha de Ingreso: diciembre-2002
Ubicación: San Salvador
Mensajes: 951
Antigüedad: 21 años, 4 meses
Puntos: 5
otra forma de hacerlo:

en tu archivo.html pones:
<head>
<script>
function pop(){
var ventana = window.open("http://www.la_ruta_del_pop-up.html","openWindow", "width=300 height=300 scrollbars=no")
}
</script>
</head>

en la etiqueta <body> de tu archivo html, agrega "onLoad" asi:
<body onload="pop()">