var arrSucursales = new Array;

function MuestraOcultaCampoUsuarioContrasenaRegistrese(Valor)
{
  switch (Valor)
  {
    case "0" :
    {
      document.getElementById("usuario_contrasena").style.display = "block"; 
      break;
    }
    case "1" :
    {
      document.getElementById("usuario_contrasena").style.display = "none"; 
      break;
    }
    default :
    {
    }
  }
}

function VerFichaPersona(Rut)
{
  window.open("/capacitacion/fichas/verPopup?rut="+Rut+"&clase=6", "_Blank", "width=800,height=600"); 
  return true;
}

function PersonaRegistrada(Rut)
{
  Rut = document.getElementById(Rut);
  var URL = "/capacitacion/registrese/datospersona";
  var Vars = "rut="+Rut.value;
  loadXMLDoc(URL, "POST", Vars, "esPersonaRegistrada"); 
}

function esPersonaRegistrada(root)
{
  if (Mozilla)
  {
    var inicio = 1;
  }
  else
  {
    var inicio = 0;
  }
  if (root.childNodes[inicio].getAttribute("found") == "true")
  {
    document.getElementById("ya_existe").style.display = "block";
  }
  else
  {
    document.getElementById("ya_existe").style.display = "none";
  }
}

