function reloadPage(init) {
	if (init == true) with (navigator) {
		if ((appName == "Netscape") && ((parseInt(appVersion) == 4) || (parseInt(appVersion) == 5))) {
			document.pgW = innerWidth;
			document.pgH = innerHeight;
			onresize = reloadPage;
		}
		if (appName == "Microsoft Internet Explorer" || appName == "Opera" || appName == "Konqueror") {
			onresize = reloadPage;
		}
	} else if (navigator.appName == "Netscape") {
		if (innerWidth != document.pgW || innerHeight != document.pgH) {
			location.reload();
		}
	} else if (navigator.appName == "Microsoft Internet Explorer" || navigator.appName == "Opera" || navigator.appName == "Konqueror") {
		location.reload();
	}
}

reloadPage(true);
