﻿function showWLHPlsWait() {
    document.getElementById("WLHelperBG").style.display = "block";
    document.getElementById("WLHelperPopUp").style.display = "block";
}
function showWLHPlsWait2() {
    document.getElementById("WLHelperBG2").style.display = "block";
    document.getElementById("WLHelperPopUp2").style.display = "block";
}
function hideWLHPlsWait() {
    document.getElementById("WLHelperBG").style.display = "none";
    document.getElementById("WLHelperPopUp").style.display = "none";
}
function DoRemoveWLFinish(result, context) {
    var arrResult = result.split("|");
    var wid = arrResult[0];
    hideWLHPlsWait();
    if (isIE7)
        document.getElementById("rem" + wid).style.display = "block";
    else {
        $("div#" + wid).fadeOut(200);
        document.getElementById("ctl00_MainContent_lbl_numItems").innerHTML = arrResult[1];
        document.getElementById("ctl00_MainContent_lbl_DLP").innerHTML = arrResult[2];
        document.getElementById("ctl00_MainContent_lbl_cfs").innerHTML = arrResult[3];
    }
}
