<!-- // Netscape resize fix
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);

function errorsuppressor(){
	return true;
}
//window.onerror=errorsuppressor;
//-->

