﻿function ShowLoading(id) {
    $(id).empty().addClass("cmUpdating");
}

function HideLoading(id) {
    $(id).removeClass("cmUpdating");
}