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/banner300x60",
				"FlashVars", "clickTAG=" + clickTAGUrl,
				"width", "300",
				"height", "60",
				"align", "middle",
				"id", "banner300x60",
				"quality", "high",
				"wmode", "transparent",
				"name", "banner300x60",
				"allowScriptAccess","sameDomain",
				"swliveconnect", "true",
				"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 = '<div align="center" style="font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; color: #1180da;"><a href="http://www.adobe.com/go/getflash/" style="color: #1180da;"><br />Flash Content<br />Mininum Adobe Flash Player 8+ is required.<br /><span style="text-decoration:underline">Click to download</span></a></div>';
	// write non-flash content	
	document.write(alternateContent);
}