if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
				"src", "/static/campfire/layouts/images/OMG-Video",
				"width", "260",
				"height", "229",
				"align", "middle",
				"id", "discover",
				"quality", "high",
				"wmode", "transparent",
				"name", "discover",
				"allowScriptAccess","sameDomain",
				"swliveconnect", "true",
				"allowFullScreen", "false",
				"type", "application/x-shockwave-flash",
				'codebase', 'https://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} 
else {  
	// flash is too old or we can't detect the plugin
	var alternateContent = 'This content requires Adobe Flash Player to be installed.';
	// write non-flash content	
	document.write(alternateContent);
}
