<!--

var BR_version;
var BR_ie;
var BR_ie4;

function BR_VersionAtLeast ( minVersion )
{
	if ( BR_version == null ) BR_version = parseInt(navigator.appVersion);
	return ( minVersion >= BR_version );
}

function BR_BrowserIsIe()
{
	if ( BR_ie == null) BR_ie = (navigator.appVersion.indexOf("MSIE") != -1);
	return BR_ie;
}

function BR_BrowserIsIe4()
{
	if ( BR_ie4 == null) BR_ie4 = (navigator.appName == "Microsoft Internet Explorer"
		&& navigator.appVersion.indexOf("MSIE 4.") != -1);
	return BR_ie4;
}

function BR_BrowserIsIeVersionAtLeast ( minVersion )
{
	return ( BR_BrowserIsIe () && BR_VersionAtLeast ( minVersion ) );
}

//-->

