function moveWait(objEvt)
{
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		mouseX = window.event.x;
		mouseY = window.event.y;
	}
	else
	{
		mouseX = objEvt.clientX;
		mouseY = objEvt.clientY;
	}
	var frm = document.getElementById("frmMouseWait");
	frm.style.left = mouseX;
	frm.style.top = mouseY+10;
}
function startWait()
{
	/*var img = document.createElement("img");
	var frm = document.createElement("div");
	var body = document.getElementsByTagName("body")[0];
	frm.style.position = "absolute";
	frm.id = "frmMouseWait";
	img.setAttribute("src", "img/sanduhr.gif");
	frm.appendChild(img);
	body.appendChild(frm);
	body.onmousemove = moveWait;*/
	document.getElementById("imgWait1").style.display = "inline";
	document.getElementById("imgWait2").style.display = "inline";
}
function endWait()
{
	/*var frm = document.getElementById("frmMouseWait");
	var body = document.getElementsByTagName("body")[0];
	frm.parentNode.removeChild(frm);
	body.onmousemove = null;*/
	document.getElementById("imgWait1").style.display = "none";
	document.getElementById("imgWait2").style.display = "none";
}