function getWindowWidth()
{
	var windowWidth = document.body.clientWidth || window.innerWidth; 
	return windowWidth;
}

function getWindowHeight()
{
	var windowHeight = document.body.clientHeight || window.innerHeight; 
	return windowHeight;
}