(function() {
  window.cnp1 = function(cod) {
    return $.post("/sedinte/cauta_cnp", {
      cnp: cod
    }, cnp2, 'json');
  };
  window.cnp2 = function(data1) {
    document.getElementById("nume").value=data1[0];;
    document.getElementById("prenume").value=data1[1];;
    document.getElementById("locm").value=data1[2];;
    document.getElementById("specializare").value=data1[3];;
    document.getElementById("grad").value=data1[4];;
    document.getElementById("mod_participare").selectedIndex=data1[5];;    return document.getElementById("email").value=data1[6];;
  };
}).call(this);

