function resizeFix() {
	if(document.resizeFix.initWidth!=window.innerWidth||document.resizeFix.initHeight!=window.innerHeight)
		document.location=document.location;
}

function checkBrowser() {
	if (document.layers) {
		if (typeof document.resizeFix=="undefined") {
			document.resizeFix = new Object();
			document.resizeFix.initWidth = window.innerWidth;
			document.resizeFix.initHeight = window.innerHeight;
		}
		window.onresize=resizeFix;
	}
}
