
08/02/2002, 09:35
|
 | Colaborador | | Fecha de Ingreso: diciembre-2001 Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 23 años, 3 meses Puntos: 38 | |
Re: abrir siempre con pag al 100% Prueba con esto:
<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> |