
	if (AC_FL_RunContent == 0 || DetectFlashVer == 0)
	{
		alert ('This page requires AC_RunActiveContent.js.');
	}
	else
	{
		if (DetectFlashVer (requiredMajorVersion, requiredMinorVersion, requiredRevision))
		{
			// we've detected an acceptable version, so embed the flash movie
			AC_FL_RunContent (
				'codebase',		'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0',
				'width',		'530',
				'height',		'361',
				'src',			'rotator',
				'movie',		'rotator',
				'quality',		'high',
				'pluginspage',		'http://www.macromedia.com/go/getflashplayer',
				'align',		'left',
				'play',			'true',
				'loop',			'true',
				'scale',		'showall',
				'wmode',		'window',
				'devicefont',		'false',
				'id',			'map',
				'bgcolor',		'#ffffff',
				'name',			'map',
				'menu',			'false',
				'allowScriptAccess',	'sameDomain',
				'allowFullScreen',	'false',
				'salign',		'lt'
			); // AC_FL_RunContent
		}
		else
		{
			// flash is too old or we can't detect the plugin
			var alternateContent = 'Alt content';

			// insert non-flash content
			document.write (alternateContent);
		}
	}
