﻿function ShowTabProperty(id) {
    var divs = jQuery('.tab_box_property').toggleClass('invisible_property');
    jQuery('.tab_box_property').hide();
    jQuery('#' + id).show();
}

function ShowTabResPerPageNum(pageNum,tabId) {

    jQuery.post("/OrangeSalvador/Handlers/RenderLabelingPackagesTab.ashx", { actionType: "ShowResPerPageNum", pageNum: pageNum, tabId: tabId },
        function(data) {
    jQuery("#results_content_" + tabId).html(data);
        });
}

