// JavaScript Document
function importTask(){
               
    //激活DIV
      var divMask =document.getElementById('__divMask');
        var divMsg = document.getElementById('__divMsg');
        var scrollHeight = document.body.scrollHeight;
                var offsetHeight = document.body.offsetHeight;

                divMask.style.display = "";
                divMask.style.width = "100%";
                divMask.style.height = "100%";

                divMsg.style.display = "";
                //divMsg.style.left = document.body.scrollWidth-500;
                //divMsg.style.top = document.body.scrollTop + offsetHeight/2-60
}

//屏蔽DIV
function __closeDiv(httpReq){        
        document.getElementById('__divMsg').style.display = "none";
        document.getElementById('__divMask').style.display = "none";
        var str=httpReq.responseText;        
        //window.location.href="http://www.icarui.com/userlogin.html";//完成后的返回地址；
}