Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/04/2002, 13:52
chivi
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 889
Antigüedad: 22 años, 4 meses
Puntos: 4
Re: Fullscreen Window

Haber si esto te sirve :

<html>
<head>
<script LANGUAGE="JavaScript">
function pantallaCompleta(pagina) {
window.open(pagina, '', 'fullscreen=yes, scrollbars=auto');
}
</script>
</head>
<body onLoad="pantallaCompleta('tu-pagina.htm');">
</body>
</html>

Saludos!!