function CheckComponent_ColorDepth() {

	lngColorDepth = screen.colorDepth;
	blnColorDepthSufficient = (lngColorDepth > 14)
	if(blnColorDepthSufficient) {
		strStatus = 'Passed';
		strDisplayStatus = 'Good';
		strResult = lngColorDepth + '&nbsp;bits/pixel';
		strNotes = 'Requirement met';
	} else {
		strStatus = 'Warning';
		strDisplayStatus = 'Warning';
		strResult = lngColorDepth + '&nbsp;bits/pixel';
		strNotes = '<table class="info"><tr><td class="infotext">Your computer is set to display a limited amount of colors. It is recommended that you increase the color depth setting of your video card.</td><td class="moreinfo" width="100px" onclick="javascript:MoreInfo(\'CheckModules/Help/LowColorDepth.html\')"><img bordor="0" align="absmiddle" src="images/Help.gif">&nbsp More Info...</td></tr></table>';	}

	ComponentChecked('ColorDepth',strStatus,strDisplayStatus,strResult,strNotes);

}

