Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/12/2007, 07:48
Avatar de agressor
agressor
 
Fecha de Ingreso: noviembre-2007
Ubicación: Knocking the Death Door..
Mensajes: 368
Antigüedad: 16 años, 5 meses
Puntos: 3
Información Re: Cómo abrir ventana sin barra de menú, y que esté maximizada...

Aqui esta y para la proxima busca en Google que nadie te hara el trabajo siempre.. busca que el que busca encuentra.. aunque sea un dolor de cabeza..

<html>
<head>
<script type="text/javascript">
function disp_alert()
{
window.open("www.google.com",null,"height=200,widt h=400,status=yes,toolbar=no,menubar=no,location=no ");
}
</script>
</head>
<body>

<input type="button" onclick="disp_alert()" value="Display alert box" />

</body>
</html>