window.getHeight = function() {
if (window.innerHeight != undefined) {
return window.innerHeight;
} else {
var B = document.body,
D = document.documentElement;
return Math.min(D.clientHeight, B.clientHeight);
}
}