
// returns window's innner width
function getWindowWidth()
{
	var returnVal = isIE ? document.body.clientWidth : window.innerWidth;
	return returnVal;
}

// returns window's innner height
function getWindowHeight()
{
	var returnVal = isIE ? document.body.clientHeight : window.innerHeight;
	return returnVal;
}


