P.- ¿Como puedo abrir un Pop-up y que quede centrado en la pantalla en cualquier resolución?
R.- Haciendo el Pop-up parecido a esto:
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>