if (hasReqestedVersion) {
    // if we've detected an acceptable version
    // embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
        "src", "/wp-content/themes/omg/images/home_splash",
        "width", "497",
        "height", "355",
        "align", "middle",
        "id", "home_splash",
        "quality", "high",
        "wmode", "transparent",
        "name", "welcome",
        "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);
}
