Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/03/2003, 10:56
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
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() {
    
parseInt(document.getElementById("capa").style.width)
    
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,