function refreshCoinExpert(sSection) {
    jQuery.ajax({
        type: "GET",
        url: '/ajax_commands/refresh_coin_expert.php',
        data: 'section=' + sSection,
        success: function (msg) {
            document.getElementById('coin_expert_panel_content').innerHTML = msg;
        }
    });
}
