Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/01/2002, 06:13
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 22 años, 4 meses
Puntos: 38
Re: Maximizar ventana

Prueba:

<html>

<head>
<script languaje="JavaScript">
function prepareScr(){
window.moveTo(0, 0);
window.resizeTo(window.screen.width, window.screen.height);
}
</script>
</head>

<body onload="prepareScr()">
</body>

</html>

Suerte