<!--
function GetFormattedBrowserPlatform()
{
	var StrIndex = 0;
	var CompConfig = "";
	
	//Operating System Detection ***
	if ((StrIndex = navigator.userAgent.indexOf("Win")) != -1)//Is Windows
	{
		CompConfig += "OS=WIN&OSV=";
		
		if (navigator.userAgent.indexOf("U;") == -1)
		{
			CompConfig += navigator.userAgent.substring(StrIndex,(navigator.userAgent.indexOf(";",StrIndex) != -1) ? navigator.userAgent.indexOf(";",StrIndex) : navigator.userAgent.indexOf(")",StrIndex));
		}
		else
		{
			StrIndex = navigator.userAgent.indexOf("U;");
			CompConfig += navigator.userAgent.substring(StrIndex + 2,navigator.userAgent.indexOf(";",StrIndex + 2));
		}
	}
	else if ((StrIndex = navigator.userAgent.indexOf("Mac")) != -1)//Is Macintosh
	{
		CompConfig += "OS=MAC&OSV=";
		
		if (navigator.userAgent.indexOf("OS X") != -1)
		{
			CompConfig += "OSX";
		}
		else if (navigator.userAgent.indexOf("PPC") != -1 || navigator.userAgent.indexOf("PowerPC") != -1)
		{
			CompConfig += "PPC";
		}
		else
		{
			CompConfig += "OTH";
		}
	}
	else if ((StrIndex = navigator.userAgent.indexOf("Linux")) != -1)//Is Linux
	{
		StrIndex = navigator.userAgent.indexOf("X");
		CompConfig += "OS=LNX&OSV=" + navigator.userAgent.substring(StrIndex,navigator.userAgent.indexOf(";",StrIndex));
	}
	else//Is Other Operating System ***
	{
		CompConfig += "OS=OTH&OSV=NONE";
	}
	//Browser Detection ***
	if ((StrIndex = navigator.userAgent.indexOf("MSIE")) != -1)//Is MS Internet Explorer
	{
		CompConfig += "&BR=IE&BV=" + parseFloat(navigator.userAgent.substring(StrIndex + 4, StrIndex + 9));
	}
	else if ((StrIndex = navigator.appName.toUpperCase().indexOf("NETSCAPE")) != -1)//Is Netscape
	{
		CompConfig += "&BR=NN&BV=" + parseFloat(navigator.userAgent.substring(8,12));
	}
	else
	{
		CompConfig += "&BR=OTH&BV=NONE";
	}
	//Resolution Detection ***
	CompConfig += "&RS=" + ((screen.width < 800 && screen.height < 600) ? "L" : "H");
	CompConfig += "&JE=" + ((navigator.javaEnabled()) ? "1" : "0");
	//CompConfig += "&JP=" + ((PluginDetected) ? "1" : "0");
	
	return CompConfig;
}
//-->