function Fensterhoehe () {
  if (window.innerHeight) {
	return window.innerHeight;
  } else if (document.body && document.body.offsetHeight) {
	return document.body.offsetHeight;
  } else {
	return 0;
  }
}
