
 <!-- Funció Global para abrir una ventana en modo seleccion -->
function o_ventana(pantalla,nombre,X,Y)
{
//Y=window.screen.availHeight-50
v = window.open(pantalla,nombre,"toolbar=no,location=no,scrollbars=yes,status=no,menubar=no,resizable=yes,width="+ X +",height="+ Y +",top=0");
v.focus()
}

function o_ventanam(pantalla,nombre,X,Y)
{
//Y=window.screen.availHeight-50
v = window.open(pantalla,nombre,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width="+ X +",height="+ Y);
v.focus()
}

<!-- Funciones para abrir ventanas -->

function mapa(map)
{
X=506;
Y=346;
v=window.open(map+'.htm','mapa',"dependent=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+ X +",height="+ Y);
v.focus();
}
