<!--
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	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 {
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+requiredMajorVersion+',0,0,0',
			'width', SWF_01_width,
			'height', SWF_01_height,
			'src', SWF_01_file,
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', SWF_01_file,
			'bgcolor', '#660000',
			'name', SWF_01_file,
			'menu', 'true',
			'allowScriptAccess','sameDomain',
			'movie', SWF_01_file,
			'salign', ''
			); //end AC code
	}
} else {  // flash is too old or we can't detect the plugin
	var alternateContent ='This content requires the Adobe Flash Player. '
	+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
	document.write('<table border="0" cellpadding="0" cellspacing="0" width="'+SWF_01_width+'"  height="'+SWF_01_height+'">' );
	document.write('<tr><td valign="top">' );

	document.write('<div align="center"><a href="http://www.adobe.com/go/getflash/"><img border="0" src="http://edjesales.com/dynamic/no-flash.gif" width="500" height="313"></a></div>');  // insert non-flash content
	
	document.write('</td></tr></table>' );


}
// -->

