// JavaScript1.2 Source File: broswerSnoop.js
// Created by Jason M. Hanna for EMC Engineering
// 23 July, 1998
// Copyright EMC Corporation

// These functions are intended for internal use on 
//   the EMC Engineering web page only!  If you 
//   would like to use these functions on your web
//   site please contact jhanna@emc.com

function BrowserSniffObject(){

   browserName = navigator.appName;
   this.browserName=browserName;
   var browserVersion = parseInt(navigator.appVersion);
   this.browserVersion=browserVersion;
   this.fullBrowserVersion= new String(navigator.appVersion);
   
   var NN4 = (browserName == "Netscape" && browserVersion >= 4);
   this.NN4 = NN4;
   var NN3 = (browserName == "Netscape" && browserVersion < 4);
   this.NN3 = NN3;
   var IE4 = (browserName == "Microsoft Internet Explorer" && browserVersion >= 4);
   this.IE4 = IE4;
   var IE3 = (browserName == "Microsoft Internet Explorer" && browserVersion < 4);
   this.IE3 = IE3;
   var WinOS = (this.fullBrowserVersion.indexOf("Win") > 0);
   this.WinOS = WinOS;
}