<!-- // 

//	Netscape 4.x bug fix
//	frame reload when resize
//	Tanja Brand, THEmedia
//	October 21, 2002 

function THE_reloadPage(init) { 
	if (init==true) with (navigator) {
		if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
			document.THE_pgW=innerWidth; 
			document.THE_pgH=innerHeight; 
			onresize=THE_reloadPage; 
		}
	} else {
		if (innerWidth!=document.THE_pgW || innerHeight!=document.THE_pgH) { 
			location.reload();	
		}
	}
} 
THE_reloadPage(true);
// -->
