<!--

	// -----------------------------------------------------------
	// Client-side BrowserData constructor
	// Populated using data from server-side oBD object to avoid redundancy
	// -----------------------------------------------------------

	function BrowserData()
	{
		this.userAgent = "Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)";
		this.browser = "MSIE";
		this.majorVer = 5;
		this.minorVer = "0";
		this.betaVer = "0";
		this.platform = "98";
		this.doesDHTML = true;
		this.doesActiveX = true;
	}
	var oBD = new BrowserData();

//-->
