function showSpinner(divId) {
    $(divId).show();
}

function hideSpinner(divId) {
    $(divId).hide();
}

