Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/02/2011, 04:14
Avatar de veriyo
veriyo
 
Fecha de Ingreso: junio-2010
Mensajes: 80
Antigüedad: 13 años, 10 meses
Puntos: 0
abrir html sin recuadro azul con Mozilla

Hola a todos!!!

Mi duda es la siguiente, quiero abrir un archivo a un tamaño determinado pero que no aparezca la barra azul de cerrar y maximizar, ¿eso se podria conseguir? aqui os dejo el codigo javascript que he utilizado, por si ayuda de algo.

Código HTML:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
<link href="estilos_basicos/estilos.css" rel="stylesheet" type="text/css" />

<style type="text/css">

<!--
body {
		 overflow-x: hidden;
		 overflow-y: hidden;
}
</style>
<script language="javascript">

function f_abrir_ventana()
{
	var vent=null;
	var destino="salida_entrada.html";

window.open(destino,"", 'location=no, directories=no, status=no, scrollbars=no, toolbar=no, menubar=no, resizable=no, titlebar=no, width=585, height=100, top=10,left=10')

}
function cerrar()
{
	var ventana = window.self;
	ventana.opener = window.self;
	ventana.close();
	
}

</script> 

</head>

<body onload="f_abrir_ventana();cerrar()">
</body>
</html> 
Gracias por adelantado...