Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/11/2004, 14:29
angsanchez
 
Fecha de Ingreso: octubre-2004
Ubicación: España
Mensajes: 894
Antigüedad: 19 años, 6 meses
Puntos: 3
Aquí está. He simplificado tu código, no hacía falta la división por tipo de navegador (aunque no consigo que maximice en Netscape4, ni con la nueva versión ni con la antigua)

Código HTML:
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <title>prueba</title>
<script language="JavaScript" type="text/JavaScript">
function abreMax(pag) {
var ventana2 = window.open(pag,'','status')
ventana2.moveTo(0,0)
ventana2.resizeTo(screen.availWidth,screen.availHeight)
}
</script>
</head>
<body>
<form>
Abrir ventana maximizada con Barra de título y Barra de estado
<input type="button" value="Abrir" onClick="abreMax('pag1.htm')"/>
</form>

</body>
</html>