// ************************************************************************************************
// *** Browser type Enumeration
// ************************************************************************************************

function BrowserType()
{
	this.Unknown = 0;
	this.IE = 1;
	this.Firefox = 2;
	this.Netscape = 3;
	this.Mozilla = 4;
	this.Opera = 5;
	this.Safari = 6;
}
