// Abrir ventana emergente
function Launch(URL,Ancho,Alto,Barras)
 {
 window.open(''+URL+'', "PromaxLauncher", "width="+Ancho+", height="+Alto+", left="+((screen.width - Ancho) / 2)+", top="+((screen.height - Alto) / 2)+", location=no, menubar=no, status=no, toolbar=no, scrollbars="+Barras+", resizable=no");
 }

// Capas de menús
function MostrarCapa(NombreCapa)
 {
 if (document.getElementById(NombreCapa).style.visibility == 'hidden')
  {OcultarTodas();
  document.getElementById(NombreCapa).style.visibility = 'visible';}
 else
  {document.getElementById(NombreCapa).style.visibility = 'hidden';}
 clearTimeout(temporizador);
 }

function ActivaRetardo()
 {
 clearTimeout(temporizador);
 temporizador = setTimeout("OcultarTodas();", 1000);
 }