function ankt_vote(ankt_id,vote_id) {
    $.ajax({
       type: "POST",
       url: "etc/anketa.php",
       data: "ankt_id=" + ankt_id + "&vote_id=" + vote_id + "&refresh=yes",
       dataType: "html",
       success: function(res){
         $('#ankt_id_' + ankt_id).html(res);
       },
       error: function() {
          alert('error in jQuery Ajax');
       }
    });
    
    // vracime false, nechceme volat href odkaz
    return false;
}



