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>