var Popular = {   
    log_many: function(popular_view, ids) {
	new Ajax.Request('/base_articles/log_popular_many?ids='+ids+'&popular_view='+popular_view, {asynchronous:true, evalScripts:true});
	return false;
    },

    log_single: function(id) {
	new Ajax.Request('/base_articles/log_popular_single/'+id, {asynchronous:true, evalScripts:true});
	return false;
    }

}