
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
		"src", "http://www.worldbank.org/wb/images/home/tree-final-en",
		"width", "390",
		"height", "227",
		"align", "middle",
		"salign", "LT",
		"id", "Aids",
		"quality", "high",
		"bgcolor", "#000000",
		"Flashvars", "Aids Flash",
		"name", "Interactive Poll",
		"allowScriptAccess","sameDomain",
		"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 = 'Alternate HTML content should be placed here.<BR>'
	+ 'This content requires the Adobe Flash Player. '
	+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
	document.write('<img src=http://www.worldbank.org/wb/images/home/feature-image-Aidsday06.jpg>'); // insert non-flash content
}
