// JavaScript Document
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
				"src", "/flash/expo_max_banner_1",
				"width", "152",
				"height", "101",
				"align", "middle",
				"id", "expo_max_banner",
				"quality", "high",
				"wmode", "transparent",
				"name", "expo_max_banner",
				"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><br>Flash Content<br><br>Mininum Adobe Flash Player 8+ is required.<br><br><span style="text-decoration:underline">Click to download</span></a><br><br></div>';
	// write non-flash content	
	document.write(alternateContent);  
}
