function includeActive()
{
	var hasProductInstall = DetectFlashVer(6, 0, 65);
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	var MMredirectURL = window.location;
	
	if ( hasProductInstall && !hasReqestedVersion ) { // VERSION 6 OR 7
		var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
						+ 'width="853" height="495"'
						+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
						+ '<param name="movie" value="_flash/Main_index_v6.swf" />'
						+ '<param name="quality" value="high" />'
						+ '<param name="menu" value="false" />'
						+ '<param name="wmode" value="transparent" />'
						+ '<embed src="_flash/Main_index_v6.swf" quality="high" '
						+ 'width="853" height="495" name="detectiontest" aligh="middle"'
						+ 'play="true"'
						+ 'loop="false"'
						+ 'quality="high"'
						+ 'wmode="transparent"'
						+ 'allowScriptAccess="sameDomain" menu="false"'
						+ 'type="application/x-shockwave-flash"'
						+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
						+ '<\/embed>'								
						+ '<\/object>'
						+ '<\/div>';
			document.write(productInstallOETags);
		} else if (hasReqestedVersion) {  // VERSION 8
			var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
						+ 'width="853" height="495"'
						+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
						+ '<param name="movie" value="_flash/Main_index_v8.swf" />'
						+ '<param name="quality" value="high" />'
						+ '<param name="menu" value="false" />'
						+ '<param name="wmode" value="transparent" />'
						+ '<embed src="_flash/Main_index_v8.swf" quality="high" '
						+ 'width="853" height="495" name="detectiontest" aligh="middle"'
						+ 'play="true"'
						+ 'loop="false"'
						+ 'quality="high"'
						+ 'wmode="transparent"'
						+ 'allowScriptAccess="sameDomain" menu="false"'
						+ 'type="application/x-shockwave-flash"'
						+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
						+ '<\/embed>'								
						+ '<\/object>'
						+ '<\/div>';
						document.write(oeTags);   
		} else {  // < VERSION 6
				var alternateContent = '<script>window.location.href="gameinfo.html"</script>';
				document.write(alternateContent);
		}
}