function Fensterweite () {
	if (window.innerWidth) {
		return window.innerWidth;
	} else if (document.body && document.body.offsetWidth) {
		return document.body.offsetWidth;
	} else {
		return 0;
	}
}

function Fensterhoehe () {
	if (window.innerHeight) {
		return window.innerHeight;
	} else if (document.body && document.body.offsetHeight) {
		return document.body.offsetHeight;
	} else {
		return 0;
	}
}

function neuAufbau () {
	if (true) {
		if (document.getElementById('dresult0') && Fensterhoehe() > 550) {
	big = 300;
	small = 177;
	if (navigator.appName.indexOf("Explorer") != -1) {
		big = 300;
	small = 154;
	}
/*if (navigator.appName.indexOf("Opera") != -1) {big = 325;} */
	if (document.getElementById('word')) {
		document.getElementById('dresult0').style.height = Fensterhoehe()-big;
	}
	else {
		document.getElementById('dresult0').style.height = Fensterhoehe()-small;
	}
	}
	}
}

/* Überwachung von Netscape initialisieren*/
if (!window.alteWeite && window.innerWidth) {
	window.onresize = neuAufbau;
	window.onload = neuAufbau;
	Weite = Fensterweite();
	Hoehe = Fensterhoehe();
}
