function waitCursor(caller)
{	for(var x=0;x<document.anchors.length;x++)
	{	document.anchors[x].style.cursor="wait";
	}
	document.body.style.cursor="wait";
	
	
	setTimeout("clearCursor()",40000);	
}
function clearCursor()
{	for(var x=0;x<document.anchors.length;x++)
	{	document.anchors[x].style.cursor="auto";
	}
	document.body.style.cursor="auto";	
}