document.write("<div id=\"loading\" style=\"position: fixed;\"><img src=\"/images/misc/loading-icon.gif\" width=\"16\" height=\"16\" alt=\"\" />" + ((loadingText != null && loadingText != "") ? loadingText : "Loading...") + "</div>");

var loading = $("loading");

function moveLoading()
{
	if (document.body.width != undefined)
	{
		loading.style.top = document.body.scrollTop + loading.offsetTop + 10 + "px";
		loading.style.left = document.body.scrollLeft + document.body.offsetWidth - loading.offsetWidth - 30 + "px";
		
		var updateProgress = $("update-progress");
		
		if (updateProgress != null)
		{
			updateProgress.style.top = document.body.scrollTop + updateProgress.offsetTop + 10 + "px";
			updateProgress.style.left = document.body.scrollLeft + document.body.offsetWidth - updateProgress.offsetWidth - 30 + "px";
		}
	}
}

window.onscroll = moveLoading;