
function moderation_save()
{
	tb_remove_callback(function(){
		location.reload();
	});
}

function del(id, type)
{
	if (confirm('Biztosan törlöd?'))
	{
		jQuery.ajax({
			type: "GET",
			url: "/ajax_response/moderation",
			data: "id=" + id + "&type=" + type + "&delete=1",
			success: function(response){
				location.reload();
			}
		});
	}
}
