function getName()
{
	return this.Name;
}

function getData()
{
	return this.Data;
}

function BrowserInfo()
{
	this.Data = navigator;
	this.Name = navigator.userAgent.toLowerCase();
	
	this.getName = getName
	this.getData = getData
	
	if (this.getName().indexOf("msie") > -1) this.Browser = "MSIE";
	else if (this.getName().indexOf("firefox") > -1) this.Browser = "FF";
	else this.Browser = "UNKNOWN";
}
