Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/04/2005, 02:41
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola JuanKa

Prueba este código:
Código PHP:
<html>
<
head>
<
script>
function 
abrir(ancho,alto)
{
iz=(screen.width-ancho) /2;
ar=(screen.height-alto) /2;
propis='toolbar=no,directories=no,menubar=no,status=no,width=' ancho ',height='+alto;
propis +=',left='+iz+',top='+ar;
window.open('tupagina.html','',propis);
}
</script>
</head>
<body onload="abrir(500,300)">
</body>
</html> 
Saludos,