<!--
// Re-lê a pagina no caso de netscape
function reloadPage(init) {
  c = navigator.appName
  if (init==true) with (navigator) {
    if (c=="Netscape") {
      document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage;
    }
  } else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload();
}
reloadPage(true);
//-->

