Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/07/2011, 07:00
hernangd
 
Fecha de Ingreso: abril-2008
Mensajes: 7
Antigüedad: 16 años
Puntos: 0
Respuesta: Abrir otra pagina en ventana aparte

Pero tenés que ponerlo "onload" en la etiqueta body. Por ejemplo:

<body onload=AbrirPopup ('tupagina.html','titulo de tu pagina','width=800,height=550')">

y en la parte del head agregás esta funcion

<script type="text/JavaScript">
function AbrirPopup(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
</script>


El problema es que en algunos navegados Fire Fox no funciona...

Gracias.