<!--
// 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_04_width,
			'height', SWF_04_height,
			'src', SWF_04_file,
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', SWF_04_file,
			'bgcolor', '#660000',
			'name', SWF_04_file,
			'menu', 'true',
			'allowScriptAccess','always',
			'movie', SWF_04_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_04_width+'" id="table12" background="'+SWF_04_alt+'" height="'+SWF_04_height+'">' );
	document.write('<tr><td valign="top">' );

	document.write('<font face="Verdana" style="font-size: 9pt">' + alternateContent + '</font>');  // insert non-flash content
	
	document.write('</td></tr></table>' );


}
// -->

