function getBrowserWidth()
{
	if (document.body)
		return document.body.clientWidth;
	else
		return window.innerWidth;
}

function getBrowserHeight()
{
	if (document.body)
		return document.body.clientHeight;
	else
		return window.innerHeight;
}
