﻿
// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
				"src", "Images/logo",
				"width", "287",
				"height", "129",
				"align", "middle",
				"id", "tcLogoAnimation",
				"quality", "high",
				"bgcolor", "#484b52",
				"name", "tcLogoAnimation",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
	
} else {  // flash is too old or we can't detect the plugin
	var alternateContent =  '<img src="images/home_r1_c1.gif" width="287" height="129" id="home_r1_c1" alt="" />';
	document.write(alternateContent);  // insert non-flash content
}

