// JavaScript Document -- Ing. Andreas Gabriel -- xpulse.com
function getInnerHeight() {
	if (self.innerHeight){	// alle außer IE
		hoehe = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) {	// IE 6 strict Mode
		hoehe = document.documentElement.clientHeight;
	} else if (document.body) {  // andere IE
		hoehe = document.body.clientHeight;
	}
	hoehe=hoehe-100;
//alert( "Innere Hoehe: " + hoehe);
}
