processing = false;

var bdiv = document.createElement("DIV")
bdiv.id = "busy"


bdiv.className = "busy"


bdiv.innerHTML = "<table border=0 width=100\% height=100\%><tr><td align=center><img src=/core/images/busy.gif></td></tr></table>"

document.body.appendChild(bdiv)


window.onscroll = function(e){
//document.title = "adasdas"
var busy = document.getElementById("busy")

if ((busy.style.display=="block"))
{
busy.scrollIntoView(true);
}
}

function closeBusy(){
document.getElementById("busy").style.display = "none"
}

function showBusy(num){
document.getElementById("busy").style.top = document.body.scrollTop;

document.getElementById("busy").style.height = document.body.clientHeight
document.getElementById("busy").style.width = document.body.clientWidth


document.getElementById("busy").style.display = "block"
document.getElementById("busy").style.zIndex = num
}