Вот часть кода, куда отсылает консоль (как я понял)
var jRS = {
	showhide: function(a) {
		$(a).parents('.post').toggleClass('hidden');
	},
	positive: function(a, b, c) {
		show_popup('positive', a, b, c);
	},
	negative: function(a, b, c) {
		show_popup('negative', a, b, c);
	},
	postdetails: function(a) {
		show_popup('postdetails', a);
	},
	userdetails: function(a, b) {
		show_popup('userdetails', a, b);
	},
	userrating: function(a, b) {
		show_popup('rateuser', a, b);
	},
	ratepost: function(id) {
		submit_action('post', id);
	},
	rateuser: function(id) {
		submit_action('user', id);
	},
	del: function(id, mode) {
		if(confirm(rsdelete))
		{
			submit_action('delete', id, mode);
		}
	},
	clear: function(id, mode, page) {
		switch(mode)
		{
			case 'post':
				confirm_clear = rsclearpost;
			break;
			case 'user':
				confirm_clear = rsclearuser;
			break;
		}
		if (confirm(confirm_clear))
		{
			submit_action('clear', id, mode, page);
		}
	},
	catchup: function() {
		submit_action('catchup');
	},
}
Подскажите, как его поправить