framework.widget.busy={start:function(f,o){var k=framework.util.getElementPosition(f);if(k!==null){var e=document.getElementById(f+".busy");if(!framework.util.isUndefinedOrNull(e)){framework.widget.busy.stop(f);}e=document.getElementById(f);if(!(typeof(e)==="undefined"||e===null)&&e.nodeName==="DIV"){var i=e.clientHeight>0?e.clientHeight:e.offsetHeight;
var l=e.clientWidth>0?e.clientWidth:e.offsetWidth;var a=270,m=85,n=10,h=a+n,c=m+n,j=k[1]+((i-c)/2),b=k[0]+((l-h)/2),d=document.createElement("DIV"),g=new Array();d.id=f+".busy";d.className="outerDiv";d.style.top=j+"px";d.style.left=b+"px";if(framework.util.isInternetExplorer()&&!framework.util.isIE7()){framework.util.hideSelects(f+".busy",[j,(b+a),(j+m),b]);
}e.appendChild(d);g.push('<div class="busyDiv">');g.push('<div class="indicator"></div>');g.push('<div class="busyMessage">');g.push(o);g.push("</div>");g.push("</div>");g.push('<div class="shadowDiv"></div>');d.innerHTML=g.join("");}}},stop:function(b){var c=document.getElementById(b),a=document.getElementById(b+".busy");
if(!(typeof(c)==="undefined"||c===null)&&!(typeof(a)==="undefined"||a===null)){c.removeChild(a);if(framework.util.isInternetExplorer()&&!framework.util.isIE7()){framework.util.showSelects(b+".busy");}}},loaded:true};