function CheckErrorActiveMovie(msg,url,lno)
{
	strNotes = '<table class="info"><tr><td class="infotext">VBScript capable browsers are required to run the software. Consequently we cannot check for the existance of an appropriate XML parser.</td><td onclick="javascript:MoreInfo(\'CheckModules/Help/NoVBScript.html\')" class="moreinfo" width="100px"><img align="absmiddle" bordor="0" src="images/Help.gif">&nbsp More Info...</td></tr></table>';
	ComponentChecked('ActiveMovie','Failed','Failed','No',strNotes);
	return true;
}


function CheckComponent_ActiveMovie() {

	window.onerror = CheckErrorActiveMovie;

	if(ActiveXControlEnabled('AMOVIE.ActiveMovieControl.2'))
	{
		strStatus = 'Passed';
		strResult = 'Yes';
		strDisplayStatus = 'Passed';
		strNotes = 'Requirement met';
	} else {
		strStatus = 'Failed';
		strResult = 'No';
		strDisplayStatus = 'Failed';
		strNotes = '<table class="info"><tr><td class="infotext">Active Movie control was not detected or is an outdated version.</td><td class="moreinfo" width="100px" onclick="javascript:MoreInfo(\'CheckModules/Help/NoActiveMovie.html\')"><img align="absmiddle" bordor="0" src="images/Help.gif">&nbsp More Info...</td></tr></table>';
	}
	ComponentChecked('ActiveMovie',strStatus,strDisplayStatus,strResult,strNotes);

}



