function abrir(enlace, anchura, altura) {
  posX = parseInt(screen.width - anchura) / 2;
  posY = parseInt(screen.height - altura) / 2;
  window.open(enlace, "","width=" + anchura + " , height=" + altura + " , scrollbars=YES");
}

function Focus1() {
  document.getElementById("clave").focus();
}

function validar_datos() {
  if (document.getElementById('clave').value == '' || document.getElementById('usuario').value == '') {
    alert('Debe completar todos los campos');
    return false;
  } else {
    if (isNaN(document.getElementById('usuario').value)) {
      alert('El n\u00FAmero de documento debe escribirse sin puntos');
      return false;
    }
  }
  md5();
  document.getElementById('clave').value=1;
  return true;
}

