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,