Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/02/2002, 17:33
chivi
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 889
Antigüedad: 22 años, 4 meses
Puntos: 4
Re: pagina de inicio maximizada

Hola joseagu!
Prueba a poner este script dentro del <body>:

<script>
width = screen.width;
height = screen.height;

if (document.all) {
ancho = document.body.clientWidth;
altura = document.body.clientHeight;
} else {
ancho = window.innerWidth;
altura = window.innerHeight;
};
if (((ancho +500 ) < width ) || ((altura + 300) < height)){

window.resizeTo(width,height);
window.moveTo(0,0);
};
</script>

Espero que eso te sirva.

saludos de mi parte ;)