Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/12/2002, 11:40
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años, 1 mes
Puntos: 772
Hola, Liz26.

Para abrir la ventana puedes utilizar:

<a href="javascript:window.open('dos.html','','width= 300,height=200');void(null)">Abrir</a>

Y la ventana que se abre sería algo asi:
Código PHP:
<html>
<
head>
<
script>
function 
centrar() {
    
iz=(screen.width-document.body.clientWidth) / 2;
    
de=(screen.height-document.body.clientHeight) / 2;
    
moveTo(iz,de);
}    
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" onload="centrar()">
Segunda página
</body>
</html> 
Prueba a ver si te sirve. Saludos,