﻿var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js. In Flash, run \"Apply Active Content Update\" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.");
	} else {
		// embed the flash movie
		AC_FL_RunContent(
			'codebase', 'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
			'width', '700',
			'height', '140',
			'src', '/swf/logoNew',
			'quality', 'best',
			'pluginspage', 'https://www.macromedia.com/go/getflashplayer',
			'align', 'left',
			'play', 'true',
			'loop', 'true',
			'scale', 'noscale',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', 'logo',
			'bgcolor', '#ffffff',
			'name', 'logoNew',
			'menu', 'false',
			'allowScriptAccess','sameDomain',
			'movie', '/swf/logoNew',
			'salign', ''
			); //end AC code
	}
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<img src="/images/headBanner.jpg" style="height: 140px; width: 650px;" alt="Discount Investment off-plan Property - The Property Association." />';
	document.write(alternateContent);  // insert non-flash content
}