<!--
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
	alert("This page requires AC_RunActiveContent.js.");
} else {
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // if we've detected an acceptable version
		// embed the flash movie
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0',
			'width', '640',
			'height', '200',
			'src', 'fsm_home',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'window',
			'devicefont', 'false',
			'id', 'fsm_home',
			'bgcolor', '#ffffff',
			'name', 'fsm_home',
			'menu', 'true',
			'allowScriptAccess','sameDomain',
			'allowFullScreen','false',
			'movie', 'flash/fsm_home',
			'salign', ''
			); //end AC code
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<div id="noFlash">'
                        +'<h1>Software Development - Web Implementation - Media Creation - Multi-Media Presentation</h1>'
                        +'<h2>At Flipside Media, we believe that the path to developing a truly effective media product begins with attaining an in-depth understanding of the environment that the product must operate in, the information that the product must communicate, the audience that the product must engage, and the mission that the product must fulfill.</h2>'
			+ '<p><strong>This content requires the Adobe Flash Player.</strong></p>'
                        + '<a href="http://www.adobe.com/go/getflashplayer/" target="_blank"><img src="images/get_flash_player.gif" alt="Get Adobe Flash Player" border="0" /></a>'
			+ '</div>';
		document.write(alternateContent);  // insert non-flash content
	}
}
// -->