function voteArticle(url, note, aid) {
	$.post(url,  { note: note, aid: aid}, function(data){
        $("#articleVoteBox").html(data);
    });
	return false;
}
