// 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);
 }

// Mostrar y ocultar el número de teléfono nuevo
function mostrarTelefono(velocidad,destino)
 {
 document.getElementById('capaTelefono').style.display = 'block';
 var alturaActual = parseInt(document.getElementById('capaTelefono').style.height);
 document.getElementById('capaTelefono').style.height = (alturaActual + velocidad);
 if ((alturaActual + velocidad) != destino)
  {
  setTimeout("mostrarTelefono(" + velocidad + "," + destino + ");", 40);
  }
 if (parseInt(document.getElementById('capaTelefono').style.height) == 0)
  {document.getElementById('capaTelefono').style.display = 'none';}
 }
