// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// * * * * * * * * * * * * * * * * * * FENSTERGRÖSSE * * * * * * * * * * * * * * * * * * *
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *




function Fensterweite () {
  	if (window.innerWidth) {
    	return window.innerWidth;
  	} else if (document.documentElement) {
        return document.documentElement.offsetWidth;
	}  else if (document.body && document.body.offsetWidth) {
    	return document.body.clientWidth;
  	} else {
    	return 600;
  	}
} // FENSTERWEITE

function Fensterhoehe () {
	
	if (window.innerHeight) {
    	return window.innerHeight;
  	} else if (document.documentElement) {
        return document.documentElement.offsetHeight;
	} else if (document.body && document.body.offsetHeight) {
		return document.body.clientHeight;
  	} else {
    	return 600;
  	}
	
} // FENSTERHOEHE