function winload()
{
	if (GetBrowserType()=="IE")	
	{
		document.defaultfrm.style.cursor = "wait"
		for (i=0; i<document.all.length; i++)
		{
			try
			{
				document.all(i).style.cursor = "wait"
			}
			catch(e){}
		}
	}
}  