function BrowserInfo()
{
	var sAgent = navigator.userAgent;

	if (sAgent.indexOf("MSIE")!=-1)
	{
		this.iMinorVer = sAgent.charAt(sAgent.indexOf("MSIE")+8);
		this.iMajorVer = sAgent.charAt(sAgent.indexOf("MSIE")+5);
	}
	else
	{
		this.iMinorVer = sAgent.charAt(11);
		this.iMajorVer = sAgent.charAt(8);
	}
	
	if (this.iMinorVer == ";")
	{
		this.iMinorVer = 0;
	}
	else
	{
		this.iMinorVer = "0" + this.iMinorVer;
	}
	
	if (sAgent.indexOf('MSIE') !=-1)
	{
		this.bIE = true;
	}
 	else if ((sAgent.indexOf("Mozilla")!=-1) && (sAgent.indexOf("compatible") == -1))
	{
		this.bNav  = true;
	}
}
