function resizeWindow(f_iWidth,f_iHeight)
{
	if (window.innerWidth)
	{
		iWidth = window.innerWidth;
		iHeight = window.innerHeight;
	}
	else
	{
		iWidth = document.body.clientWidth;
		iHeight =document.body.clientHeight;
	}

	window.resizeBy(f_iWidth - iWidth,f_iHeight - iHeight);
}
