function neuAufbau () {
	if (Weite != Fensterweite() || Hoehe != Fensterhoehe())
	location.href = location.href;
}

function Fensterweite () {
	if (window.innerWidth) {
	    return window.innerWidth;
	} else if (document.body && document.body.offsetWidth) {
		return document.body.offsetWidth-18;
	} 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;
	}
}

if (!window.Weite && window.innerWidth) {
	window.onresize = neuAufbau;
	Weite = Fensterweite();
	Hoehe = Fensterhoehe()-1;
}
