// Detecta qual a resolução da tela e redireciona para o CGI ideal
// Programador: Dieison Roberto - dieison@fortalnet.com.br
// Data: Setembro de 2003
// Fortalnet ISP
var browser = new InfoBrowser();
function InfoBrowser() {
  this.nome = navigator.appName;
  this.codename = navigator.appCodeName;
  this.versao = navigator.appVersion.substring(0,4);
  this.plataforma = navigator.platform;
  this.javaEnabled = navigator.javaEnabled();
  this.Largura = screen.width;
  this.Altura = screen.height;
}