function CheckComponent_Browser() {
	strBrowser = navigator.appName;
	if(strBrowser == 'Microsoft Internet Explorer')	{
		blnIsIE = true;
		strBrowser = 'IE';
	} else {
		blnIsIE = false;
	}

	//Detect IE5.0+
	lngIEMajorVersion=0
	if (navigator.appVersion.indexOf("MSIE")!=-1) {
		strTemp=navigator.appVersion.split("MSIE")
		lngIEMajorVersion=parseFloat(strTemp[1])
	}

	strBrowserAndVersion = strBrowser + ' &nbsp ' + lngIEMajorVersion;
	strResult = strBrowserAndVersion;

	if(blnIsIE) 
	{
		if(lngIEMajorVersion > 4) 
		{
			if(lngIEMajorVersion >= 5.5) 	
			{
				strStatus = 'Passed';
				strDisplayStatus = 'Passed';
				strNotes = 'Requirement met. Please ensure that you have the latest service pack installed for your version.<br>(SP2 for IE 5.5, SP1 for IE 5.0)';
			} else {
				strStatus = 'Warning';
				strDisplayStatus = 'Warning';
				strNotes = '<table class="info"><tr><td class="infotext">You are running Internet Explorer 5.0. We recommend 5.5 or higher.</td><td class="moreinfo" width="100px" onclick="javascript:MoreInfo(\'CheckModules/Help/UpgradeIE.html\')"><img bordor="0" align="absmiddle" src="images/Help.gif">&nbsp More Info...</td></tr></table>';
			}
		} else {
			strStatus = 'Failed';
			strDisplayStatus = 'Failed';
			strNotes = '<table class="info"><tr><td class="infotext">You require a newer version of Internet explorer.</td><td onclick="javascript:MoreInfo(\'CheckModules/Help/UpgradeIE.html\')" class="moreinfo" width="100px"><img align="absmiddle" bordor="0" src="images/Help.gif">&nbsp More Info...</td></tr></table>';
		}
	} else {
		strStatus = 'Failed';
		strDisplayStatus = 'Failed';
		if(strBrowser == 'Netscape')
			strNotes = 'Netscape is not supported at this time. Development of a Netscape compatible version is under consideration.';
		else
			strNotes = 'There are no plans at this time to support ' + strBrowser + '.';
	}

	ComponentChecked('Browser',strStatus,strDisplayStatus,strResult,strNotes);

}

