<!-- // Create browserInfo object

function browserInfo() {
	this.version = parseInt(navigator.appVersion);
	this.platform = navigator.platform;
	this.name = navigator.appName;

	this.isOpera = (this.name.indexOf('Opera') > -1) ? true : false;
	this.isNavigator = (this.name.indexOf('Netscape') > -1) ? true : false;
	this.isExplorer = (this.name.indexOf('Explorer') > -1) ? true : false;

	this.isMac = (this.platform.indexOf('Mac') > -1) ? true : false;

	this.isFourOh = (this.version == 4) ? true : false;

	this.isIE3 = ((this.version == 3) && (this.isExplorer)) ? true : false;
	this.isNS4 = ((this.version == 4) && (this.isNavigator)) ? true : false;
	this.isNS6 = ((this.version == 5) && (this.isNavigator)) ? true : false;
}
// -->
