
var hasProductInstall = DetectFlashVer(8);

var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

if ( hasProductInstall && !hasReqestedVersion ) {
	var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
	var MMredirectURL = window.location;
	document.title = document.title.slice(0, 47) + " - Flash Player Installation";
	var MMdoctitle = document.title;

	AC_FL_RunContent(
		"src", "/global-assets/flash/playerProductInstall",
		"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
		"width", "900",
		"height", "600",
		"align", "middle",
		"id", "detectionExample",
		"quality", "high",
		"bgcolor", "#FFFFFF",
		"name", "detectionExample",
		"allowScriptAccess","always",
		"type", "application/x-shockwave-flash",
		"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
			"src", "/global-assets/flash/21ctransport",
			"width", "900",
			"height", "600",
			"align", "middle",
			"id", "detectionExample",
			"quality", "high",
			"bgcolor", "#FFFFFF",
			"name", "21ctransport",
			"allowScriptAccess","always",
			"type", "application/x-shockwave-flash",
			'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
			"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<div id="replacer"><div id="link-1"><a href="http://www.gmpte.com" target="_blank">GMPTE</a></div><div id="link-2"><a href="http://www.investinmanchester.com/MarketIntelligence/Connectivity/" target="_blank">MIDAS</a></div><div id="link-3"><a href="http://www.agma.gov.uk" target="_blank">AGMA</a></div><div id="link-4"><a href="http://www.visitmanchester.com" target="_blank">Visit Manchester</a></div><div id="link-5"><a href="http://www.wevoteyes.co.uk" target="_blank">Yes Campaign</a></div><h1>21st Century Transport</h1><p>The importance of a fully integrated and modern 21st century transport system to a growing conurbation cannot be underestimated. Millions of commuters, residents and visitors move around the Manchester city region every day. This experience should be as fast, easy, safe and accessible as possible. People are the key to a city region&rsquo;s economic success, their journeys must be cost effective and stress free.</p><p>This short film highlights the importance of transport and the tradition that Manchester has in making radical decisions. The Department for Transport has approved proposals made under the Transport Innovation Fund for a major investment in public transport, funded by a combination of Government Grant and income from a limited peak time weekday only congestion charge.</p><p>Please select your movie format.</p><p><img class="movie-link-wmv" src="/global-assets/images/wmv-logo.gif" alt="WMV" /><a href="/global-assets/video/21ctransport.wmv" target="_blank">Windows Media Video</a><img class="movie-link-qt" src="/global-assets/images/qt-logo.gif" alt="Quicktime" /><a href="/global-assets/video/21ctransport.mov" target="_blank">Quicktime</a></p><p class="gmft">To find out how,<br />visit <a href="http://www.gmfuturetransport.com." target="_blank">www.gmfuturetransport.com.</a></p></div>';
	document.write(alternateContent);  // insert non-flash content
}
// -->