/* ==========================================================================
	Athenas Software & Systems - www.athenas.com.br
	Programador: Guenther Sehn - guenther@athenas.com.br
========================================================================== */

function ATH_netscapeReloadPage(option) {
/* atualiza o browser se houver redimensionamento e for Netscape. */
	if(option == true)
		with(navigator) {
			if(appName == "Netscape" && parseInt(appVersion) == 4) {
				document.ATH_w = innerWidth;
				document.ATH_h = innerHeight;
				onresize = ATH_netscapeReloadPage;
			}
		}
	else if(innerWidth != document.ATH_w || innerHeight != document.ATH_h) location.reload();
}
ATH_netscapeReloadPage(true);

