function GeneratingReport(Url)
{
	var ProgressFrame	= document.getElementById("ProgressFrame");
	var ProgressSpan	= document.getElementById("ProgressSpan");
	var ProgressImage	= document.getElementById("ProgressImage");
	
	var WindowWidth		= 800;
	var WindowHeight	= 600;			
	
	if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight))
		{
		WindowWidth		= document.documentElement.clientWidth;
		WindowHeight	= document.documentElement.clientHeight;
		}
	else if (document.body && (document.body.clientWidth || document.body.clientHeight))
		{
		WindowWidth		= document.body.clientWidth;
		WindowHeight	= document.body.clientHeight;
		}
	else
		{
		WindowWidth		= document.innerWidth;
		WindowHeight	= document.innerHeight;
		}
	
	ProgressFrame.src				= "UserMenuProgress.aspx";
	ProgressFrame.style.display		= "inline";
	ProgressFrame.style.top			= ((WindowHeight) / 2);
	ProgressFrame.style.left		= ((WindowWidth - 30) / 2);
	
	window.location					= Url;
}
