/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function pontuacoesUser(url,country){
    //  alert(url);
    var user =$("#idPerfil").text();

    $.get(url, {
        user: user,
        country : country
    },function(data){
        $("#pontuacaoTxt").html(data.pontos + "<br />pontos");
        },"json");
}

