//function for reload on resize, when NS 4.x is used to keep style sheets and layer positions
function reloadPage(init) {
	if (init==true) with (navigator) {
		if ((appName=="Netscape") &&  (parseInt(appVersion)==4)) {
				window.MM_pgW=window.innerWidth;
				window.MM_pgW=window.innerHeight;
				onresize=reloadPage;
		}
	}
	else if (window.innerWidth!=document.MM_pgW || window.innerHeight!=document.MM_pgH) {
		//window.frames.mitte_frameset.location.reload(); //cd-layout
		window.location.reload();
	}
}

reloadPage(true);
