Hola, ej1236.
A ver si es esto lo que buscas:
Código PHP:
<html>
<head>
<script>
function centrar() {
an=document.body.clientWidth;
al=document.body.clientHeight;
iz=(an-200)/2;
ar=(al-100)/2
document.getElementById("capa").style.left=iz;
document.getElementById("capa").style.top=ar;
}
</script>
</head>
<body onLoad="centrar()" onResize="centrar()">
<div id ="capa" style="position:absolute; width:200; height:100; border:1px solid green">
Este texto está centrado.
</div>
</body>
</html>
Saludos,