//	File:				BrowVer.js
//	Purpose:			Include file to determine Browser version and Name
//	Date:				10/25/98
//	Version:			1.0
//	Author:				Steven J. Provencher
//	Contact:			steve@designeast.com
//	Version History:
		

//Global variables
var isNav = false;
var isIE = false;
var isUnknown = false;
var iAppVersion = 0;
var coll = "";
var styleObj = "";

// Get the major version number of the browser
iAppVersion = parseInt(navigator.appVersion);

if(navigator.appName == "Netscape") 
	isNav = true;
else if(navigator.appName.indexOf("Internet Explorer") != -1) 
	isIE = true;
else
	isUnknown = true;

//Setup for 'eval' operations for cross browser scripting
if(isIE)
{
	coll = "all.";
	styleObj = ".style";
}
