<!--
// 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 =
	document.write('<a href="homepage.html">');
document.write('<img border="0" src="images/2008/feb28/home.jpg" width="800" height="500"></a>');
	


}
// -->

