function getWindowHeight() {
	if (document.all) {
		return document.body.offsetHeight;
	} else {
		return window.innerHeight;
	}
}
