Rehola.
Modificación para que funcione también en Netscafé (Sino caricatos se me aparecerá para reprenderme
)
Código PHP:
<html>
<head>
<script language="JavaScript">
function centrar() {
W = parseInt(document.getElementById("capa").style.width)
H = parseInt(document.getElementById("capa").style.height)
if (document.all) {
ancho = document.body.clientWidth;
alto = document.body.clientHeight; }
else {
ancho = window.innerWidth;
alto = window.innerHeight; }
posX = (ancho - W) / 2;
posY = (alto - H) / 2;
document.getElementById("capa").style.left=posX;
document.getElementById("capa").style.top=posY;
}
</script>
</head>
<body onLoad="centrar()">
<div id="capa" style="position:absolute; width:351px; height:206px; border:1px solid red">
</div>
</body>
</html>
Salutres,