function cn_window_width(){
	if (window.innerWidth) return window.innerWidth;
	else if (document.body && document.body.offsetWidth) return document.body.offsetWidth;
	else return 0;
}
function cn_window_height(){
	if (window.innerHeight) return window.innerHeight;
	else if (document.body && document.body.offsetHeight) return document.body.offsetHeight;
	else return 0;
}
function neuAufbau(){
	if (Weite != cn_window_width() || Hoehe != cn_window_height())
	window.history.go(0);
}
function iniResizeIE(){
	/*FOR MS Internet Explorer */
	if(!window.Weite && document.body && document.body.offsetWidth){
		window.onresize = neuAufbau;
		Weite = cn_window_width();
		Hoehe = cn_window_height();
	}

/*FOR Netscape */
if(!window.Weite && window.innerWidth){
	window.onresize = neuAufbau;
	Weite = cn_window_width();
	Hoehe = cn_window_height();
  }
  }
