Author: lindner
Date: Wed Jan 13 20:56:29 2010
New Revision: 898938

URL: http://svn.apache.org/viewvc?rev=898938&view=rev
Log:
upgrade to swfobject 2.2

Modified:
    
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/feature.xml
    
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.js
    
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.opt.js

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/feature.xml
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/swfobject/feature.xml?rev=898938&r1=898937&r2=898938&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/feature.xml
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/feature.xml
 Wed Jan 13 20:56:29 2010
@@ -17,7 +17,7 @@
 specific language governing permissions and limitations under the License.
 -->
 <feature>
-  <!-- Current implementation is swfobject 2.1 -->
+  <!-- Current implementation is swfobject 2.2 -->
   <name>swfobject</name>
   <gadget>
     <script src="swfobject.js"/>

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.js?rev=898938&r1=898937&r2=898938&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.js
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.js
 Wed Jan 13 20:56:29 2010
@@ -1,6 +1,5 @@
-/*! SWFObject v2.1 <http://code.google.com/p/swfobject/>
-       Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van 
der Sluis
-       This software is released under the MIT License 
<http://www.opensource.org/licenses/mit-license.php>
+/*!    SWFObject v2.2 <http://code.google.com/p/swfobject/> 
+       is released under the MIT License 
<http://www.opensource.org/licenses/mit-license.php> 
 */
 
 var swfobject = function() {
@@ -11,145 +10,126 @@
                SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
                FLASH_MIME_TYPE = "application/x-shockwave-flash",
                EXPRESS_INSTALL_ID = "SWFObjectExprInst",
+               ON_READY_STATE_CHANGE = "onreadystatechange",
                
                win = window,
                doc = document,
                nav = navigator,
                
-               domLoadFnArr = [],
+               plugin = false,
+               domLoadFnArr = [main],
                regObjArr = [],
                objIdArr = [],
                listenersArr = [],
-               script,
-               timer = null,
-               storedAltContent = null,
-               storedAltContentId = null,
+               storedAltContent,
+               storedAltContentId,
+               storedCallbackFn,
+               storedCallbackObj,
                isDomLoaded = false,
-               isExpressInstallActive = false;
+               isExpressInstallActive = false,
+               dynamicStylesheet,
+               dynamicStylesheetMedia,
+               autoHideShow = true,
        
        /* Centralized function for browser feature detection
-               - Proprietary feature detection (conditional compiling) is used 
to detect Internet Explorer's features
-               - User agent string detection is only used when no alternative 
is possible
+               - User agent string detection is only used when no good 
alternative is possible
                - Is executed directly for optimal performance
        */      
-       var ua = function() {
+       ua = function() {
                var w3cdom = typeof doc.getElementById != UNDEF && typeof 
doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF,
+                       u = nav.userAgent.toLowerCase(),
+                       p = nav.platform.toLowerCase(),
+                       windows = p ? /win/.test(p) : /win/.test(u),
+                       mac = p ? /mac/.test(p) : /mac/.test(u),
+                       webkit = /webkit/.test(u) ? 
parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, // returns 
either the webkit version or false if not webkit
+                       ie = !+"\v1", // feature detection based on Andrea 
Giammarchi's solution: 
http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html
                        playerVersion = [0,0,0],
                        d = null;
                if (typeof nav.plugins != UNDEF && typeof 
nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
                        d = nav.plugins[SHOCKWAVE_FLASH].description;
                        if (d && !(typeof nav.mimeTypes != UNDEF && 
nav.mimeTypes[FLASH_MIME_TYPE] && 
!nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)) { // 
navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin indicates 
whether plug-ins are enabled or disabled in Safari 3+
+                               plugin = true;
+                               ie = false; // cascaded feature detection for 
Internet Explorer
                                d = d.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
                                playerVersion[0] = 
parseInt(d.replace(/^(.*)\..*$/, "$1"), 10);
                                playerVersion[1] = 
parseInt(d.replace(/^.*\.(.*)\s.*$/, "$1"), 10);
-                               playerVersion[2] = /r/.test(d) ? 
parseInt(d.replace(/^.*r(.*)$/, "$1"), 10) : 0;
+                               playerVersion[2] = /[a-zA-Z]/.test(d) ? 
parseInt(d.replace(/^.*[a-zA-Z]+(.*)$/, "$1"), 10) : 0;
                        }
                }
                else if (typeof win.ActiveXObject != UNDEF) {
-                       var a = null, fp6Crash = false;
                        try {
-                               a = new ActiveXObject(SHOCKWAVE_FLASH_AX + 
".7");
-                       }
-                       catch(e) {
-                               try { 
-                                       a = new 
ActiveXObject(SHOCKWAVE_FLASH_AX + ".6");
-                                       playerVersion = [6,0,21];
-                                       a.AllowScriptAccess = "always";  // 
Introduced in fp6.0.47
-                               }
-                               catch(e) {
-                                       if (playerVersion[0] == 6) {
-                                               fp6Crash = true;
-                                       }
-                               }
-                               if (!fp6Crash) {
-                                       try {
-                                               a = new 
ActiveXObject(SHOCKWAVE_FLASH_AX);
-                                       }
-                                       catch(e) {}
-                               }
-                       }
-                       if (!fp6Crash && a) { // a will return null when 
ActiveX is disabled
-                               try {
-                                       d = a.GetVariable("$version");  // Will 
crash fp6.0.21/23/29
+                               var a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
+                               if (a) { // a will return null when ActiveX is 
disabled
+                                       d = a.GetVariable("$version");
                                        if (d) {
+                                               ie = true; // cascaded feature 
detection for Internet Explorer
                                                d = d.split(" ")[1].split(",");
                                                playerVersion = [parseInt(d[0], 
10), parseInt(d[1], 10), parseInt(d[2], 10)];
                                        }
                                }
-                               catch(e) {}
                        }
+                       catch(e) {}
                }
-               var u = nav.userAgent.toLowerCase(),
-                       p = nav.platform.toLowerCase(),
-                       webkit = /webkit/.test(u) ? 
parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, // returns 
either the webkit version or false if not webkit
-                       ie = false,
-                       windows = p ? /win/.test(p) : /win/.test(u),
-                       mac = p ? /mac/.test(p) : /mac/.test(u);
-               /*...@cc_on
-                       ie = true;
-                       @if (@_win32)
-                               windows = true;
-                       @elif (@_mac)
-                               mac = true;
-                       @end
-               @*/
-               return { w3cdom:w3cdom, pv:playerVersion, webkit:webkit, ie:ie, 
win:windows, mac:mac };
-       }();
-
+               return { w3:w3cdom, pv:playerVersion, wk:webkit, ie:ie, 
win:windows, mac:mac };
+       }(),
+       
        /* Cross-browser onDomLoad
-               - Based on Dean Edwards' solution: 
http://dean.edwards.name/weblog/2006/06/again/
-               - Will fire an event as soon as the DOM of a page is loaded 
(supported by Gecko based browsers - like Firefox -, IE, Opera9+, Safari)
+               - Will fire an event as soon as the DOM of a web page is loaded
+               - Internet Explorer workaround based on Diego Perini's 
solution: http://javascript.nwbox.com/IEContentLoaded/
+               - Regular onload serves as fallback
        */ 
-       var onDomLoad = function() {
-               if (!ua.w3cdom) {
-                       return;
+       onDomLoad = function() {
+               if (!ua.w3) { return; }
+               if ((typeof doc.readyState != UNDEF && doc.readyState == 
"complete") || (typeof doc.readyState == UNDEF && 
(doc.getElementsByTagName("body")[0] || doc.body))) { // function is fired 
after onload, e.g. when script is inserted dynamically 
+                       callDomLoadFunctions();
                }
-               addDomLoadEvent(main);
-               if (ua.ie && ua.win) {
-                       try {    // Avoid a possible Operation Aborted error
-                               doc.write("<scr" + "ipt id=__ie_ondomload 
defer=true src=//:></scr" + "ipt>"); // String is split into pieces to avoid 
Norton AV to add code that can cause errors 
-                               script = getElementById("__ie_ondomload");
-                               if (script) {
-                                       addListener(script, 
"onreadystatechange", checkReadyState);
-                               }
+               if (!isDomLoaded) {
+                       if (typeof doc.addEventListener != UNDEF) {
+                               doc.addEventListener("DOMContentLoaded", 
callDomLoadFunctions, false);
+                       }               
+                       if (ua.ie && ua.win) {
+                               doc.attachEvent(ON_READY_STATE_CHANGE, 
function() {
+                                       if (doc.readyState == "complete") {
+                                               
doc.detachEvent(ON_READY_STATE_CHANGE, arguments.callee);
+                                               callDomLoadFunctions();
+                                       }
+                               });
+                               if (win == top) { // if not inside an iframe
+                                       (function(){
+                                               if (isDomLoaded) { return; }
+                                               try {
+                                                       
doc.documentElement.doScroll("left");
+                                               }
+                                               catch(e) {
+                                                       
setTimeout(arguments.callee, 0);
+                                                       return;
+                                               }
+                                               callDomLoadFunctions();
+                                       })();
+                               }
+                       }
+                       if (ua.wk) {
+                               (function(){
+                                       if (isDomLoaded) { return; }
+                                       if 
(!/loaded|complete/.test(doc.readyState)) {
+                                               setTimeout(arguments.callee, 0);
+                                               return;
+                                       }
+                                       callDomLoadFunctions();
+                               })();
                        }
-                       catch(e) {}
-               }
-               if (ua.webkit && typeof doc.readyState != UNDEF) {
-                       timer = setInterval(function() { if 
(/loaded|complete/.test(doc.readyState)) { callDomLoadFunctions(); }}, 10);
-               }
-               if (typeof doc.addEventListener != UNDEF) {
-                       doc.addEventListener("DOMContentLoaded", 
callDomLoadFunctions, null);
+                       addLoadEvent(callDomLoadFunctions);
                }
-               addLoadEvent(callDomLoadFunctions);
        }();
        
-       function checkReadyState() {
-               if (script.readyState == "complete") {
-                       script.parentNode.removeChild(script);
-                       callDomLoadFunctions();
-               }
-       }
-       
        function callDomLoadFunctions() {
-               if (isDomLoaded) {
-                       return;
-               }
-               if (ua.ie && ua.win) { // Test if we can really add elements to 
the DOM; we don't want to fire it too early
-                       var s = createElement("span");
-                       try { // Avoid a possible Operation Aborted error
-                               var t = 
doc.getElementsByTagName("body")[0].appendChild(s);
-                               t.parentNode.removeChild(t);
-                       }
-                       catch (e) {
-                               return;
-                       }
+               if (isDomLoaded) { return; }
+               try { // test if we can really add/remove elements to/from the 
DOM; we don't want to fire it too early
+                       var t = 
doc.getElementsByTagName("body")[0].appendChild(createElement("span"));
+                       t.parentNode.removeChild(t);
                }
+               catch (e) { return; }
                isDomLoaded = true;
-               if (timer) {
-                       clearInterval(timer);
-                       timer = null;
-               }
                var dl = domLoadFnArr.length;
                for (var i = 0; i < dl; i++) {
                        domLoadFnArr[i]();
@@ -194,109 +174,185 @@
        /* Main function
                - Will preferably execute onDomLoad, otherwise onload (as a 
fallback)
        */
-       function main() { // Static publishing only
-               var rl = regObjArr.length;
-               for (var i = 0; i < rl; i++) { // For each registered object 
element
-                       var id = regObjArr[i].id;
-                       if (ua.pv[0] > 0) {
-                               var obj = getElementById(id);
-                               if (obj) {
-                                       regObjArr[i].width = 
obj.getAttribute("width") ? obj.getAttribute("width") : "0";
-                                       regObjArr[i].height = 
obj.getAttribute("height") ? obj.getAttribute("height") : "0";
-                                       if 
(hasPlayerVersion(regObjArr[i].swfVersion)) { // Flash plug-in version >= Flash 
content version: Houston, we have a match!
-                                               if (ua.webkit && ua.webkit < 
312) { // Older webkit engines ignore the object element's nested param elements
-                                                       fixParams(obj);
-                                               }
-                                               setVisibility(id, true);
-                                       }
-                                       else if (regObjArr[i].expressInstall && 
!isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) { 
// Show the Adobe Express Install dialog if set by the web page author and if 
supported (fp6.0.65+ on Win/Mac OS only)
-                                               
showExpressInstall(regObjArr[i]);
-                                       }
-                                       else { // Flash plug-in and Flash 
content version mismatch: display alternative content instead of Flash content
-                                               displayAltContent(obj);
+       function main() { 
+               if (plugin) {
+                       testPlayerVersion();
+               }
+               else {
+                       matchVersions();
+               }
+       }
+       
+       /* Detect the Flash Player version for non-Internet Explorer browsers
+               - Detecting the plug-in version via the object element is more 
precise than using the plugins collection item's description:
+                 a. Both release and build numbers can be detected
+                 b. Avoid wrong descriptions by corrupt installers provided by 
Adobe
+                 c. Avoid wrong descriptions by multiple Flash Player entries 
in the plugin Array, caused by incorrect browser imports
+               - Disadvantage of this method is that it depends on the 
availability of the DOM, while the plugins collection is immediately available
+       */
+       function testPlayerVersion() {
+               var b = doc.getElementsByTagName("body")[0];
+               var o = createElement(OBJECT);
+               o.setAttribute("type", FLASH_MIME_TYPE);
+               var t = b.appendChild(o);
+               if (t) {
+                       var counter = 0;
+                       (function(){
+                               if (typeof t.GetVariable != UNDEF) {
+                                       var d = t.GetVariable("$version");
+                                       if (d) {
+                                               d = d.split(" ")[1].split(",");
+                                               ua.pv = [parseInt(d[0], 10), 
parseInt(d[1], 10), parseInt(d[2], 10)];
                                        }
                                }
-                       }
-                       else {  // If no fp is installed, we let the object 
element do its job (show alternative content)
-                               setVisibility(id, true);
-                       }
+                               else if (counter < 10) {
+                                       counter++;
+                                       setTimeout(arguments.callee, 10);
+                                       return;
+                               }
+                               b.removeChild(o);
+                               t = null;
+                               matchVersions();
+                       })();
+               }
+               else {
+                       matchVersions();
                }
        }
        
-       /* Fix nested param elements, which are ignored by older webkit engines
-               - This includes Safari up to and including version 1.2.2 on Mac 
OS 10.3
-               - Fall back to the proprietary embed element
+       /* Perform Flash Player and SWF version matching; static publishing only
        */
-       function fixParams(obj) {
-               var nestedObj = obj.getElementsByTagName(OBJECT)[0];
-               if (nestedObj) {
-                       var e = createElement("embed"), a = 
nestedObj.attributes;
-                       if (a) {
-                               var al = a.length;
-                               for (var i = 0; i < al; i++) {
-                                       if (a[i].nodeName == "DATA") {
-                                               e.setAttribute("src", 
a[i].nodeValue);
+       function matchVersions() {
+               var rl = regObjArr.length;
+               if (rl > 0) {
+                       for (var i = 0; i < rl; i++) { // for each registered 
object element
+                               var id = regObjArr[i].id;
+                               var cb = regObjArr[i].callbackFn;
+                               var cbObj = {success:false, id:id};
+                               if (ua.pv[0] > 0) {
+                                       var obj = getElementById(id);
+                                       if (obj) {
+                                               if 
(hasPlayerVersion(regObjArr[i].swfVersion) && !(ua.wk && ua.wk < 312)) { // 
Flash Player version >= published SWF version: Houston, we have a match!
+                                                       setVisibility(id, true);
+                                                       if (cb) {
+                                                               cbObj.success = 
true;
+                                                               cbObj.ref = 
getObjectById(id);
+                                                               cb(cbObj);
+                                                       }
+                                               }
+                                               else if 
(regObjArr[i].expressInstall && canExpressInstall()) { // show the Adobe 
Express Install dialog if set by the web page author and if supported
+                                                       var att = {};
+                                                       att.data = 
regObjArr[i].expressInstall;
+                                                       att.width = 
obj.getAttribute("width") || "0";
+                                                       att.height = 
obj.getAttribute("height") || "0";
+                                                       if 
(obj.getAttribute("class")) { att.styleclass = obj.getAttribute("class"); }
+                                                       if 
(obj.getAttribute("align")) { att.align = obj.getAttribute("align"); }
+                                                       // parse HTML object 
param element's name-value pairs
+                                                       var par = {};
+                                                       var p = 
obj.getElementsByTagName("param");
+                                                       var pl = p.length;
+                                                       for (var j = 0; j < pl; 
j++) {
+                                                               if 
(p[j].getAttribute("name").toLowerCase() != "movie") {
+                                                                       
par[p[j].getAttribute("name")] = p[j].getAttribute("value");
+                                                               }
+                                                       }
+                                                       showExpressInstall(att, 
par, id, cb);
+                                               }
+                                               else { // Flash Player and SWF 
version mismatch or an older Webkit engine that ignores the HTML object 
element's nested param elements: display alternative content instead of SWF
+                                                       displayAltContent(obj);
+                                                       if (cb) { cb(cbObj); }
+                                               }
                                        }
-                                       else {
-                                               e.setAttribute(a[i].nodeName, 
a[i].nodeValue);
+                               }
+                               else {  // if no Flash Player is installed or 
the fp version cannot be detected we let the HTML object element do its job 
(either show a SWF or alternative content)
+                                       setVisibility(id, true);
+                                       if (cb) {
+                                               var o = getObjectById(id); // 
test whether there is an HTML object element or not
+                                               if (o && typeof o.SetVariable 
!= UNDEF) { 
+                                                       cbObj.success = true;
+                                                       cbObj.ref = o;
+                                               }
+                                               cb(cbObj);
                                        }
                                }
                        }
-                       var c = nestedObj.childNodes;
-                       if (c) {
-                               var cl = c.length;
-                               for (var j = 0; j < cl; j++) {
-                                       if (c[j].nodeType == 1 && c[j].nodeName 
== "PARAM") {
-                                               
e.setAttribute(c[j].getAttribute("name"), c[j].getAttribute("value"));
-                                       }
+               }
+       }
+       
+       function getObjectById(objectIdStr) {
+               var r = null;
+               var o = getElementById(objectIdStr);
+               if (o && o.nodeName == "OBJECT") {
+                       if (typeof o.SetVariable != UNDEF) {
+                               r = o;
+                       }
+                       else {
+                               var n = o.getElementsByTagName(OBJECT)[0];
+                               if (n) {
+                                       r = n;
                                }
                        }
-                       obj.parentNode.replaceChild(e, obj);
                }
+               return r;
+       }
+       
+       /* Requirements for Adobe Express Install
+               - only one instance can be active at a time
+               - fp 6.0.65 or higher
+               - Win/Mac OS only
+               - no Webkit engines older than version 312
+       */
+       function canExpressInstall() {
+               return !isExpressInstallActive && hasPlayerVersion("6.0.65") && 
(ua.win || ua.mac) && !(ua.wk && ua.wk < 312);
        }
        
        /* Show the Adobe Express Install dialog
                - Reference: 
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
        */
-       function showExpressInstall(regObj) {
+       function showExpressInstall(att, par, replaceElemIdStr, callbackFn) {
                isExpressInstallActive = true;
-               var obj = getElementById(regObj.id);
+               storedCallbackFn = callbackFn || null;
+               storedCallbackObj = {success:false, id:replaceElemIdStr};
+               var obj = getElementById(replaceElemIdStr);
                if (obj) {
-                       if (regObj.altContentId) {
-                               var ac = getElementById(regObj.altContentId);
-                               if (ac) {
-                                       storedAltContent = ac;
-                                       storedAltContentId = 
regObj.altContentId;
-                               }
-                       }
-                       else {
+                       if (obj.nodeName == "OBJECT") { // static publishing
                                storedAltContent = abstractAltContent(obj);
+                               storedAltContentId = null;
                        }
-                       if (!(/%$/.test(regObj.width)) && 
parseInt(regObj.width, 10) < 310) {
-                               regObj.width = "310";
-                       }
-                       if (!(/%$/.test(regObj.height)) && 
parseInt(regObj.height, 10) < 137) {
-                               regObj.height = "137";
-                       }
+                       else { // dynamic publishing
+                               storedAltContent = obj;
+                               storedAltContentId = replaceElemIdStr;
+                       }
+                       att.id = EXPRESS_INSTALL_ID;
+                       if (typeof att.width == UNDEF || (!/%$/.test(att.width) 
&& parseInt(att.width, 10) < 310)) { att.width = "310"; }
+                       if (typeof att.height == UNDEF || 
(!/%$/.test(att.height) && parseInt(att.height, 10) < 137)) { att.height = 
"137"; }
                        doc.title = doc.title.slice(0, 47) + " - Flash Player 
Installation";
                        var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
-                               dt = doc.title,
-                               fv = "MMredirectURL=" + win.location + 
"&MMplayerType=" + pt + "&MMdoctitle=" + dt,
-                               replaceId = regObj.id;
-                       // For IE when a SWF is loading (AND: not available in 
cache) wait for the onload event to fire to remove the original object element
-                       // In IE you cannot properly cancel a loading SWF file 
without breaking browser load references, also obj.onreadystatechange doesn't 
work
+                               fv = "MMredirectURL=" + 
win.location.toString().replace(/&/g,"%26") + "&MMplayerType=" + pt + 
"&MMdoctitle=" + doc.title;
+                       if (typeof par.flashvars != UNDEF) {
+                               par.flashvars += "&" + fv;
+                       }
+                       else {
+                               par.flashvars = fv;
+                       }
+                       // IE only: when a SWF is loading (AND: not available 
in cache) wait for the readyState of the object element to become 4 before 
removing it,
+                       // because you cannot properly cancel a loading SWF 
file without breaking browser load references, also obj.onreadystatechange 
doesn't work
                        if (ua.ie && ua.win && obj.readyState != 4) {
                                var newObj = createElement("div");
-                               replaceId += "SWFObjectNew";
-                               newObj.setAttribute("id", replaceId);
-                               obj.parentNode.insertBefore(newObj, obj); // 
Insert placeholder div that will be replaced by the object element that loads 
expressinstall.swf
+                               replaceElemIdStr += "SWFObjectNew";
+                               newObj.setAttribute("id", replaceElemIdStr);
+                               obj.parentNode.insertBefore(newObj, obj); // 
insert placeholder div that will be replaced by the object element that loads 
expressinstall.swf
                                obj.style.display = "none";
-                               var fn = function() {
-                                       obj.parentNode.removeChild(obj);
-                               };
-                               addListener(win, "onload", fn);
+                               (function(){
+                                       if (obj.readyState == 4) {
+                                               obj.parentNode.removeChild(obj);
+                                       }
+                                       else {
+                                               setTimeout(arguments.callee, 
10);
+                                       }
+                               })();
                        }
-                       createSWF({ data:regObj.expressInstall, 
id:EXPRESS_INSTALL_ID, width:regObj.width, height:regObj.height }, { 
flashvars:fv }, replaceId);
+                       createSWF(att, par, replaceElemIdStr);
                }
        }
        
@@ -304,16 +360,20 @@
        */
        function displayAltContent(obj) {
                if (ua.ie && ua.win && obj.readyState != 4) {
-                       // For IE when a SWF is loading (AND: not available in 
cache) wait for the onload event to fire to remove the original object element
-                       // In IE you cannot properly cancel a loading SWF file 
without breaking browser load references, also obj.onreadystatechange doesn't 
work
+                       // IE only: when a SWF is loading (AND: not available 
in cache) wait for the readyState of the object element to become 4 before 
removing it,
+                       // because you cannot properly cancel a loading SWF 
file without breaking browser load references, also obj.onreadystatechange 
doesn't work
                        var el = createElement("div");
-                       obj.parentNode.insertBefore(el, obj); // Insert 
placeholder div that will be replaced by the alternative content
+                       obj.parentNode.insertBefore(el, obj); // insert 
placeholder div that will be replaced by the alternative content
                        el.parentNode.replaceChild(abstractAltContent(obj), el);
                        obj.style.display = "none";
-                       var fn = function() {
-                               obj.parentNode.removeChild(obj);
-                       };
-                       addListener(win, "onload", fn);
+                       (function(){
+                               if (obj.readyState == 4) {
+                                       obj.parentNode.removeChild(obj);
+                               }
+                               else {
+                                       setTimeout(arguments.callee, 10);
+                               }
+                       })();
                }
                else {
                        obj.parentNode.replaceChild(abstractAltContent(obj), 
obj);
@@ -346,14 +406,15 @@
        */
        function createSWF(attObj, parObj, id) {
                var r, el = getElementById(id);
+               if (ua.wk && ua.wk < 312) { return r; }
                if (el) {
                        if (typeof attObj.id == UNDEF) { // if no 'id' is 
defined for the object element, it will inherit the 'id' from the alternative 
content
                                attObj.id = id;
                        }
-                       if (ua.ie && ua.win) { // IE, the object element and 
W3C DOM methods do not combine: fall back to outerHTML
+                       if (ua.ie && ua.win) { // Internet Explorer + the HTML 
object element + W3C DOM methods do not combine: fall back to outerHTML
                                var att = "";
                                for (var i in attObj) {
-                                       if (attObj[i] != Object.prototype[i]) { 
// Filter out prototype additions from other potential libraries, like 
Object.prototype.toJSONString = function() {}
+                                       if (attObj[i] != Object.prototype[i]) { 
// filter out prototype additions from other potential libraries
                                                if (i.toLowerCase() == "data") {
                                                        parObj.movie = 
attObj[i];
                                                }
@@ -367,55 +428,29 @@
                                }
                                var par = "";
                                for (var j in parObj) {
-                                       if (parObj[j] != Object.prototype[j]) { 
// Filter out prototype additions from other potential libraries
+                                       if (parObj[j] != Object.prototype[j]) { 
// filter out prototype additions from other potential libraries
                                                par += '<param name="' + j + '" 
value="' + parObj[j] + '" />';
                                        }
                                }
                                el.outerHTML = '<object 
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + 
'</object>';
-                               objIdArr[objIdArr.length] = attObj.id; // 
Stored to fix object 'leaks' on unload (dynamic publishing only)
+                               objIdArr[objIdArr.length] = attObj.id; // 
stored to fix object 'leaks' on unload (dynamic publishing only)
                                r = getElementById(attObj.id);  
                        }
-                       else if (ua.webkit && ua.webkit < 312) { // Older 
webkit engines ignore the object element's nested param elements: fall back to 
the proprietary embed element
-                               var e = createElement("embed");
-                               e.setAttribute("type", FLASH_MIME_TYPE);
-                               for (var k in attObj) {
-                                       if (attObj[k] != Object.prototype[k]) { 
// Filter out prototype additions from other potential libraries
-                                               if (k.toLowerCase() == "data") {
-                                                       e.setAttribute("src", 
attObj[k]);
-                                               }
-                                               else if (k.toLowerCase() == 
"styleclass") { // 'class' is an ECMA4 reserved keyword
-                                                       e.setAttribute("class", 
attObj[k]);
-                                               }
-                                               else if (k.toLowerCase() != 
"classid") { // Filter out IE specific attribute
-                                                       e.setAttribute(k, 
attObj[k]);
-                                               }
-                                       }
-                               }
-                               for (var l in parObj) {
-                                       if (parObj[l] != Object.prototype[l]) { 
// Filter out prototype additions from other potential libraries
-                                               if (l.toLowerCase() != "movie") 
{ // Filter out IE specific param element
-                                                       e.setAttribute(l, 
parObj[l]);
-                                               }
-                                       }
-                               }
-                               el.parentNode.replaceChild(e, el);
-                               r = e;
-                       }
-                       else { // Well-behaving browsers
+                       else { // well-behaving browsers
                                var o = createElement(OBJECT);
                                o.setAttribute("type", FLASH_MIME_TYPE);
                                for (var m in attObj) {
-                                       if (attObj[m] != Object.prototype[m]) { 
// Filter out prototype additions from other potential libraries
+                                       if (attObj[m] != Object.prototype[m]) { 
// filter out prototype additions from other potential libraries
                                                if (m.toLowerCase() == 
"styleclass") { // 'class' is an ECMA4 reserved keyword
                                                        o.setAttribute("class", 
attObj[m]);
                                                }
-                                               else if (m.toLowerCase() != 
"classid") { // Filter out IE specific attribute
+                                               else if (m.toLowerCase() != 
"classid") { // filter out IE specific attribute
                                                        o.setAttribute(m, 
attObj[m]);
                                                }
                                        }
                                }
                                for (var n in parObj) {
-                                       if (parObj[n] != Object.prototype[n] && 
n.toLowerCase() != "movie") { // Filter out prototype additions from other 
potential libraries and IE specific param element
+                                       if (parObj[n] != Object.prototype[n] && 
n.toLowerCase() != "movie") { // filter out prototype additions from other 
potential libraries and IE specific param element
                                                createObjParam(o, n, parObj[n]);
                                        }
                                }
@@ -438,16 +473,17 @@
        */
        function removeSWF(id) {
                var obj = getElementById(id);
-               if (obj && (obj.nodeName == "OBJECT" || obj.nodeName == 
"EMBED")) {
+               if (obj && obj.nodeName == "OBJECT") {
                        if (ua.ie && ua.win) {
-                               if (obj.readyState == 4) {
-                                       removeObjectInIE(id);
-                               }
-                               else {
-                                       win.attachEvent("onload", function() {
+                               obj.style.display = "none";
+                               (function(){
+                                       if (obj.readyState == 4) {
                                                removeObjectInIE(id);
-                                       });
-                               }
+                                       }
+                                       else {
+                                               setTimeout(arguments.callee, 
10);
+                                       }
+                               })();
                        }
                        else {
                                obj.parentNode.removeChild(obj);
@@ -503,26 +539,41 @@
        /* Cross-browser dynamic CSS creation
                - Based on Bobby van der Sluis' solution: 
http://www.bobbyvandersluis.com/articles/dynamicCSS.php
        */      
-       function createCSS(sel, decl) {
-               if (ua.ie && ua.mac) {
-                       return;
-               }
-               var h = doc.getElementsByTagName("head")[0], s = 
createElement("style");
-               s.setAttribute("type", "text/css");
-               s.setAttribute("media", "screen");
-               if (!(ua.ie && ua.win) && typeof doc.createTextNode != UNDEF) {
-                       s.appendChild(doc.createTextNode(sel + " {" + decl + 
"}"));
-               }
-               h.appendChild(s);
-               if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && 
doc.styleSheets.length > 0) {
-                       var ls = doc.styleSheets[doc.styleSheets.length - 1];
-                       if (typeof ls.addRule == OBJECT) {
-                               ls.addRule(sel, decl);
+       function createCSS(sel, decl, media, newStyle) {
+               if (ua.ie && ua.mac) { return; }
+               var h = doc.getElementsByTagName("head")[0];
+               if (!h) { return; } // to also support badly authored HTML 
pages that lack a head element
+               var m = (media && typeof media == "string") ? media : "screen";
+               if (newStyle) {
+                       dynamicStylesheet = null;
+                       dynamicStylesheetMedia = null;
+               }
+               if (!dynamicStylesheet || dynamicStylesheetMedia != m) { 
+                       // create dynamic stylesheet + get a global reference 
to it
+                       var s = createElement("style");
+                       s.setAttribute("type", "text/css");
+                       s.setAttribute("media", m);
+                       dynamicStylesheet = h.appendChild(s);
+                       if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF 
&& doc.styleSheets.length > 0) {
+                               dynamicStylesheet = 
doc.styleSheets[doc.styleSheets.length - 1];
+                       }
+                       dynamicStylesheetMedia = m;
+               }
+               // add style rule
+               if (ua.ie && ua.win) {
+                       if (dynamicStylesheet && typeof 
dynamicStylesheet.addRule == OBJECT) {
+                               dynamicStylesheet.addRule(sel, decl);
+                       }
+               }
+               else {
+                       if (dynamicStylesheet && typeof doc.createTextNode != 
UNDEF) {
+                               
dynamicStylesheet.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
                        }
                }
        }
        
        function setVisibility(id, isVisible) {
+               if (!autoHideShow) { return; }
                var v = isVisible ? "visible" : "hidden";
                if (isDomLoaded && getElementById(id)) {
                        getElementById(id).style.visibility = v;
@@ -532,12 +583,12 @@
                }
        }
 
-       /* Filter to avoid XSS attacks 
+       /* Filter to avoid XSS attacks
        */
        function urlEncodeIfNecessary(s) {
                var regex = /[\\\"<>\.;]/;
                var hasBadChars = regex.exec(s) != null;
-               return hasBadChars ? encodeURIComponent(s) : s;
+               return hasBadChars && typeof encodeURIComponent != UNDEF ? 
encodeURIComponent(s) : s;
        }
        
        /* Release memory to avoid memory leaks caused by closures, fix hanging 
audio/video threads and force open sockets/NetConnections to disconnect 
(Internet Explorer only)
@@ -568,70 +619,55 @@
                }
        }();
        
-       
        return {
                /* Public API
-                       - Reference: 
http://code.google.com/p/swfobject/wiki/SWFObject_2_0_documentation
+                       - Reference: 
http://code.google.com/p/swfobject/wiki/documentation
                */ 
-               registerObject: function(objectIdStr, swfVersionStr, 
xiSwfUrlStr) {
-                       if (!ua.w3cdom || !objectIdStr || !swfVersionStr) {
-                               return;
-                       }
-                       var regObj = {};
-                       regObj.id = objectIdStr;
-                       regObj.swfVersion = swfVersionStr;
-                       regObj.expressInstall = xiSwfUrlStr ? xiSwfUrlStr : 
false;
-                       regObjArr[regObjArr.length] = regObj;
-                       setVisibility(objectIdStr, false);
+               registerObject: function(objectIdStr, swfVersionStr, 
xiSwfUrlStr, callbackFn) {
+                       if (ua.w3 && objectIdStr && swfVersionStr) {
+                               var regObj = {};
+                               regObj.id = objectIdStr;
+                               regObj.swfVersion = swfVersionStr;
+                               regObj.expressInstall = xiSwfUrlStr;
+                               regObj.callbackFn = callbackFn;
+                               regObjArr[regObjArr.length] = regObj;
+                               setVisibility(objectIdStr, false);
+                       }
+                       else if (callbackFn) {
+                               callbackFn({success:false, id:objectIdStr});
+                       }
                },
                
                getObjectById: function(objectIdStr) {
-                       var r = null;
-                       if (ua.w3cdom) {
-                               var o = getElementById(objectIdStr);
-                               if (o) {
-                                       var n = 
o.getElementsByTagName(OBJECT)[0];
-                                       if (!n || (n && typeof o.SetVariable != 
UNDEF)) {
-                                                       r = o;
-                                       }
-                                       else if (typeof n.SetVariable != UNDEF) 
{
-                                               r = n;
-                                       }
-                               }
+                       if (ua.w3) {
+                               return getObjectById(objectIdStr);
                        }
-                       return r;
                },
                
-               embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, 
heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj) {
-                       if (!ua.w3cdom || !swfUrlStr || !replaceElemIdStr || 
!widthStr || !heightStr || !swfVersionStr) {
-                               return;
-                       }
-                       widthStr += ""; // Auto-convert to string
-                       heightStr += "";
-                       if (hasPlayerVersion(swfVersionStr)) {
+               embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, 
heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj, 
callbackFn) {
+                       var callbackObj = {success:false, id:replaceElemIdStr};
+                       if (ua.w3 && !(ua.wk && ua.wk < 312) && swfUrlStr && 
replaceElemIdStr && widthStr && heightStr && swfVersionStr) {
                                setVisibility(replaceElemIdStr, false);
-                               var att = {};
-                               if (attObj && typeof attObj === OBJECT) {
-                                       for (var i in attObj) {
-                                               if (attObj[i] != 
Object.prototype[i]) { // Filter out prototype additions from other potential 
libraries
+                               addDomLoadEvent(function() {
+                                       widthStr += ""; // auto-convert to 
string
+                                       heightStr += "";
+                                       var att = {};
+                                       if (attObj && typeof attObj === OBJECT) 
{
+                                               for (var i in attObj) { // copy 
object to avoid the use of references, because web authors often reuse attObj 
for multiple SWFs
                                                        att[i] = attObj[i];
                                                }
                                        }
-                               }
-                               att.data = swfUrlStr;
-                               att.width = widthStr;
-                               att.height = heightStr;
-                               var par = {}; 
-                               if (parObj && typeof parObj === OBJECT) {
-                                       for (var j in parObj) {
-                                               if (parObj[j] != 
Object.prototype[j]) { // Filter out prototype additions from other potential 
libraries
+                                       att.data = swfUrlStr;
+                                       att.width = widthStr;
+                                       att.height = heightStr;
+                                       var par = {}; 
+                                       if (parObj && typeof parObj === OBJECT) 
{
+                                               for (var j in parObj) { // copy 
object to avoid the use of references, because web authors often reuse parObj 
for multiple SWFs
                                                        par[j] = parObj[j];
                                                }
                                        }
-                               }
-                               if (flashvarsObj && typeof flashvarsObj === 
OBJECT) {
-                                       for (var k in flashvarsObj) {
-                                               if (flashvarsObj[k] != 
Object.prototype[k]) { // Filter out prototype additions from other potential 
libraries
+                                       if (flashvarsObj && typeof flashvarsObj 
=== OBJECT) {
+                                               for (var k in flashvarsObj) { 
// copy object to avoid the use of references, because web authors often reuse 
flashvarsObj for multiple SWFs
                                                        if (typeof 
par.flashvars != UNDEF) {
                                                                par.flashvars 
+= "&" + k + "=" + flashvarsObj[k];
                                                        }
@@ -640,28 +676,34 @@
                                                        }
                                                }
                                        }
-                               }
-                               addDomLoadEvent(function() {
-                                       createSWF(att, par, replaceElemIdStr);
-                                       if (att.id == replaceElemIdStr) {
+                                       if (hasPlayerVersion(swfVersionStr)) { 
// create SWF
+                                               var obj = createSWF(att, par, 
replaceElemIdStr);
+                                               if (att.id == replaceElemIdStr) 
{
+                                                       
setVisibility(replaceElemIdStr, true);
+                                               }
+                                               callbackObj.success = true;
+                                               callbackObj.ref = obj;
+                                       }
+                                       else if (xiSwfUrlStr && 
canExpressInstall()) { // show Adobe Express Install
+                                               att.data = xiSwfUrlStr;
+                                               showExpressInstall(att, par, 
replaceElemIdStr, callbackFn);
+                                               return;
+                                       }
+                                       else { // show alternative content
                                                setVisibility(replaceElemIdStr, 
true);
                                        }
+                                       if (callbackFn) { 
callbackFn(callbackObj); }
                                });
                        }
-                       else if (xiSwfUrlStr && !isExpressInstallActive && 
hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) {
-                               isExpressInstallActive = true; // deferred 
execution
-                               setVisibility(replaceElemIdStr, false);
-                               addDomLoadEvent(function() {
-                                       var regObj = {};
-                                       regObj.id = regObj.altContentId = 
replaceElemIdStr;
-                                       regObj.width = widthStr;
-                                       regObj.height = heightStr;
-                                       regObj.expressInstall = xiSwfUrlStr;
-                                       showExpressInstall(regObj);
-                               });
-                       }
+                       else if (callbackFn) { callbackFn(callbackObj); }
                },
                
+               switchOffAutoHideShow: function() {
+                       autoHideShow = false;
+               },
+               
+               ua: ua,
+               
                getFlashPlayerVersion: function() {
                        return { major:ua.pv[0], minor:ua.pv[1], 
release:ua.pv[2] };
                },
@@ -669,7 +711,7 @@
                hasFlashPlayerVersion: hasPlayerVersion,
                
                createSWF: function(attObj, parObj, replaceElemIdStr) {
-                       if (ua.w3cdom) {
+                       if (ua.w3) {
                                return createSWF(attObj, parObj, 
replaceElemIdStr);
                        }
                        else {
@@ -677,15 +719,21 @@
                        }
                },
                
+               showExpressInstall: function(att, par, replaceElemIdStr, 
callbackFn) {
+                       if (ua.w3 && canExpressInstall()) {
+                               showExpressInstall(att, par, replaceElemIdStr, 
callbackFn);
+                       }
+               },
+               
                removeSWF: function(objElemIdStr) {
-                       if (ua.w3cdom) {
+                       if (ua.w3) {
                                removeSWF(objElemIdStr);
                        }
                },
                
-               createCSS: function(sel, decl) {
-                       if (ua.w3cdom) {
-                               createCSS(sel, decl);
+               createCSS: function(selStr, declStr, mediaStr, newStyleBoolean) 
{
+                       if (ua.w3) {
+                               createCSS(selStr, declStr, mediaStr, 
newStyleBoolean);
                        }
                },
                
@@ -695,11 +743,12 @@
                
                getQueryParamValue: function(param) {
                        var q = doc.location.search || doc.location.hash;
-                       if (param == null) {
-                               return urlEncodeIfNecessary(q);
-                       }
                        if (q) {
-                               var pairs = q.substring(1).split("&");
+                               if (/\?/.test(q)) { q = q.split("?")[1]; } // 
strip question mark
+                               if (param == null) {
+                                       return urlEncodeIfNecessary(q);
+                               }
+                               var pairs = q.split("&");
                                for (var i = 0; i < pairs.length; i++) {
                                        if (pairs[i].substring(0, 
pairs[i].indexOf("=")) == param) {
                                                return 
urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=") + 1)));
@@ -711,20 +760,17 @@
                
                // For internal usage only
                expressInstallCallback: function() {
-                       if (isExpressInstallActive && storedAltContent) {
+                       if (isExpressInstallActive) {
                                var obj = getElementById(EXPRESS_INSTALL_ID);
-                               if (obj) {
+                               if (obj && storedAltContent) {
                                        
obj.parentNode.replaceChild(storedAltContent, obj);
                                        if (storedAltContentId) {
                                                
setVisibility(storedAltContentId, true);
-                                               if (ua.ie && ua.win) {
-                                                       
storedAltContent.style.display = "block";
-                                               }
+                                               if (ua.ie && ua.win) { 
storedAltContent.style.display = "block"; }
                                        }
-                                       storedAltContent = null;
-                                       storedAltContentId = null;
-                                       isExpressInstallActive = false;
+                                       if (storedCallbackFn) { 
storedCallbackFn(storedCallbackObj); }
                                }
+                               isExpressInstallActive = false;
                        } 
                }
        };

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.opt.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.opt.js?rev=898938&r1=898937&r2=898938&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.opt.js
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/swfobject/swfobject.opt.js
 Wed Jan 13 20:56:29 2010
@@ -1,5 +1,4 @@
-/* SWFObject v2.1 <http://code.google.com/p/swfobject/>
-       Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van 
der Sluis
-       This software is released under the MIT License 
<http://www.opensource.org/licenses/mit-license.php>
+/*     SWFObject v2.2 <http://code.google.com/p/swfobject/> 
+       is released under the MIT License 
<http://www.opensource.org/licenses/mit-license.php> 
 */
-var swfobject=function(){var b="undefined",Q="object",n="Shockwave 
Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var
 h=function(){var v=typeof K.getElementById!=b&&typeof 
K.getElementsByTagName!=b&&typeof 
K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof 
T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof 
T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof
 j.ActiveXObject!=b){var y=null,AB=false;try{y=new 
ActiveXObject(p+".7")}catch(t){try{y=new 
ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new
 ActiveXObject(p)}catch(t){}}}if(
 !AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" 
")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var
 
AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*...@cc_on
 
q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@e...@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var
 L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("<script 
id=__ie_ondomload defer=true 
src=//:><\/script>");J=C("__ie_ondomload");if(J){I(J,"onreadystatechange",S)}}catch(q){}}if(h.webkit&&typeof
 
K.readyState!=b){Z=setInterval(function(){if(/loaded|complete/.test(K.readyState)){E()}},10)}if(typeof
 
K.addEventListener!=b){K.addEventListener("DOMContentLoaded",E,null)}R(E)}();function
 S(){if(J.readyState=="complete"){J.parentNode.removeChild(J);E()}}function 
E(){if(e){return }if(h.i
 e&&h.win){var v=a("span");try{var 
u=K.getElementsByTagName("body")[0].appendChild(v);u.parentNode.removeChild(u)}catch(w){return
 }}e=true;if(Z){clearInterval(Z);Z=null}var q=o.length;for(var 
r=0;r<q;r++){o[r]()}}function f(q){if(e){q()}else{o[o.length]=q}}function 
R(r){if(typeof 
j.addEventListener!=b){j.addEventListener("load",r,false)}else{if(typeof 
K.addEventListener!=b){K.addEventListener("load",r,false)}else{if(typeof 
j.attachEvent!=b){I(j,"onload",r)}else{if(typeof j.onload=="function"){var 
q=j.onload;j.onload=function(){q();r()}}else{j.onload=r}}}}}function H(){var 
t=N.length;for(var q=0;q<t;q++){var u=N[q].id;if(h.pv[0]>0){var 
r=C(u);if(r){N[q].width=r.getAttribute("width")?r.getAttribute("width"):"0";N[q].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(c(N[q].swfVersion)){if(h.webkit&&h.webkit<312){Y(r)}W(u,true)}else{if(N[q].expressInstall&&!A&&c("6.0.65")&&(h.win||h.mac)){k(N[q])}else{O(r)}}}}else{W(u,true)}}}function
 Y(t){var q=t.getElementsByTagNa
 me(Q)[0];if(q){var w=a("embed"),y=q.attributes;if(y){var v=y.length;for(var 
u=0;u<v;u++){if(y[u].nodeName=="DATA"){w.setAttribute("src",y[u].nodeValue)}else{w.setAttribute(y[u].nodeName,y[u].nodeValue)}}}var
 x=q.childNodes;if(x){var z=x.length;for(var 
r=0;r<z;r++){if(x[r].nodeType==1&&x[r].nodeName=="PARAM"){w.setAttribute(x[r].getAttribute("name"),x[r].getAttribute("value"))}}}t.parentNode.replaceChild(w,t)}}function
 k(w){A=true;var u=C(w.id);if(u){if(w.altContentId){var 
y=C(w.altContentId);if(y){M=y;l=w.altContentId}}else{M=G(u)}if(!(/%$/.test(w.width))&&parseInt(w.width,10)<310){w.width="310"}if(!(/%$/.test(w.height))&&parseInt(w.height,10)<137){w.height="137"}K.title=K.title.slice(0,47)+"
 - Flash Player Installation";var 
z=h.ie&&h.win?"ActiveX":"PlugIn",q=K.title,r="MMredirectURL="+j.location+"&MMplayerType="+z+"&MMdoctitle="+q,x=w.id;if(h.ie&&h.win&&u.readyState!=4){var
 
t=a("div");x+="SWFObjectNew";t.setAttribute("id",x);u.parentNode.insertBefore(t,u);u.style.display="n
 one";var 
v=function(){u.parentNode.removeChild(u)};I(j,"onload",v)}U({data:w.expressInstall,id:m,width:w.width,height:w.height},{flashvars:r},x)}}function
 O(t){if(h.ie&&h.win&&t.readyState!=4){var 
r=a("div");t.parentNode.insertBefore(r,t);r.parentNode.replaceChild(G(t),r);t.style.display="none";var
 
q=function(){t.parentNode.removeChild(t)};I(j,"onload",q)}else{t.parentNode.replaceChild(G(t),t)}}function
 G(v){var u=a("div");if(h.win&&h.ie){u.innerHTML=v.innerHTML}else{var 
r=v.getElementsByTagName(Q)[0];if(r){var w=r.childNodes;if(w){var 
q=w.length;for(var 
t=0;t<q;t++){if(!(w[t].nodeType==1&&w[t].nodeName=="PARAM")&&!(w[t].nodeType==8)){u.appendChild(w[t].cloneNode(true))}}}}}return
 u}function U(AG,AE,t){var q,v=C(t);if(v){if(typeof 
AG.id==b){AG.id=t}if(h.ie&&h.win){var AF="";for(var AB in 
AG){if(AG[AB]!=Object.prototype[AB]){if(AB.toLowerCase()=="data"){AE.movie=AG[AB]}else{if(AB.toLowerCase()=="styleclass"){AF+='
 class="'+AG[AB]+'"'}else{if(AB.toLowerCase()!="classid"){AF+="
  "+AB+'="'+AG[AB]+'"'}}}}}var AD="";for(var AA in 
AE){if(AE[AA]!=Object.prototype[AA]){AD+='<param name="'+AA+'" 
value="'+AE[AA]+'" />'}}v.outerHTML='<object 
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AF+">"+AD+"</object>";i[i.length]=AG.id;q=C(AG.id)}else{if(h.webkit&&h.webkit<312){var
 AC=a("embed");AC.setAttribute("type",P);for(var z in 
AG){if(AG[z]!=Object.prototype[z]){if(z.toLowerCase()=="data"){AC.setAttribute("src",AG[z])}else{if(z.toLowerCase()=="styleclass"){AC.setAttribute("class",AG[z])}else{if(z.toLowerCase()!="classid"){AC.setAttribute(z,AG[z])}}}}}for(var
 y in 
AE){if(AE[y]!=Object.prototype[y]){if(y.toLowerCase()!="movie"){AC.setAttribute(y,AE[y])}}}v.parentNode.replaceChild(AC,v);q=AC}else{var
 u=a(Q);u.setAttribute("type",P);for(var x in 
AG){if(AG[x]!=Object.prototype[x]){if(x.toLowerCase()=="styleclass"){u.setAttribute("class",AG[x])}else{if(x.toLowerCase()!="classid"){u.setAttribute(x,AG[x])}}}}for(var
 w in AE){if(AE[w]!=Object.prototype[w]&&w.toL
 owerCase()!="movie"){F(u,w,AE[w])}}v.parentNode.replaceChild(u,v);q=u}}}return 
q}function F(t,q,r){var 
u=a("param");u.setAttribute("name",q);u.setAttribute("value",r);t.appendChild(u)}function
 X(r){var 
q=C(r);if(q&&(q.nodeName=="OBJECT"||q.nodeName=="EMBED")){if(h.ie&&h.win){if(q.readyState==4){B(r)}else{j.attachEvent("onload",function(){B(r)})}}else{q.parentNode.removeChild(q)}}}function
 B(t){var r=C(t);if(r){for(var q in r){if(typeof 
r[q]=="function"){r[q]=null}}r.parentNode.removeChild(r)}}function C(t){var 
q=null;try{q=K.getElementById(t)}catch(r){}return q}function a(q){return 
K.createElement(q)}function 
I(t,q,r){t.attachEvent(q,r);d[d.length]=[t,q,r]}function c(t){var 
r=h.pv,q=t.split(".");q[0]=parseInt(q[0],10);q[1]=parseInt(q[1],10)||0;q[2]=parseInt(q[2],10)||0;return(r[0]>q[0]||(r[0]==q[0]&&r[1]>q[1])||(r[0]==q[0]&&r[1]==q[1]&&r[2]>=q[2]))?true:false}function
 V(v,r){if(h.ie&&h.mac){return }var 
u=K.getElementsByTagName("head")[0],t=a("style");t.setAttribute("type","t
 ext/css");t.setAttribute("media","screen");if(!(h.ie&&h.win)&&typeof 
K.createTextNode!=b){t.appendChild(K.createTextNode(v+" 
{"+r+"}"))}u.appendChild(t);if(h.ie&&h.win&&typeof 
K.styleSheets!=b&&K.styleSheets.length>0){var 
q=K.styleSheets[K.styleSheets.length-1];if(typeof 
q.addRule==Q){q.addRule(v,r)}}}function W(t,q){var 
r=q?"visible":"hidden";if(e&&C(t)){C(t).style.visibility=r}else{V("#"+t,"visibility:"+r)}}function
 g(s){var r=/[\\\"<>\.;]/;var q=r.exec(s)!=null;return 
q?encodeURIComponent(s):s}var 
D=function(){if(h.ie&&h.win){window.attachEvent("onunload",function(){var 
w=d.length;for(var v=0;v<w;v++){d[v][0].detachEvent(d[v][1],d[v][2])}var 
t=i.length;for(var u=0;u<t;u++){X(i[u])}for(var r in 
h){h[r]=null}h=null;for(var q in 
swfobject){swfobject[q]=null}swfobject=null})}}();return{registerObject:function(u,q,t){if(!h.w3cdom||!u||!q){return
 }var 
r={};r.id=u;r.swfVersion=q;r.expressInstall=t?t:false;N[N.length]=r;W(u,false)},getObjectById:function(v){var
 q=null;if(h.w3cdom
 ){var t=C(v);if(t){var u=t.getElementsByTagName(Q)[0];if(!u||(u&&typeof 
t.SetVariable!=b)){q=t}else{if(typeof u.SetVariable!=b){q=u}}}}return 
q},embedSWF:function(x,AE,AB,AD,q,w,r,z,AC){if(!h.w3cdom||!x||!AE||!AB||!AD||!q){return
 }AB+="";AD+="";if(c(q)){W(AE,false);var AA={};if(AC&&typeof AC===Q){for(var v 
in 
AC){if(AC[v]!=Object.prototype[v]){AA[v]=AC[v]}}}AA.data=x;AA.width=AB;AA.height=AD;var
 y={};if(z&&typeof z===Q){for(var u in 
z){if(z[u]!=Object.prototype[u]){y[u]=z[u]}}}if(r&&typeof r===Q){for(var t in 
r){if(r[t]!=Object.prototype[t]){if(typeof 
y.flashvars!=b){y.flashvars+="&"+t+"="+r[t]}else{y.flashvars=t+"="+r[t]}}}}f(function(){U(AA,y,AE);if(AA.id==AE){W(AE,true)}})}else{if(w&&!A&&c("6.0.65")&&(h.win||h.mac)){A=true;W(AE,false);f(function(){var
 
AF={};AF.id=AF.altContentId=AE;AF.width=AB;AF.height=AD;AF.expressInstall=w;k(AF)})}}},getFlashPlayerVersion:function(){return{major:h.pv[0],minor:h.pv[1],release:h.pv[2]}},hasFlashPlayerVersion:c,createSWF:function(t,r,q){i
 f(h.w3cdom){return U(t,r,q)}else{return 
undefined}},removeSWF:function(q){if(h.w3cdom){X(q)}},createCSS:function(r,q){if(h.w3cdom){V(r,q)}},addDomLoadEvent:f,addLoadEvent:R,getQueryParamValue:function(v){var
 u=K.location.search||K.location.hash;if(v==null){return g(u)}if(u){var 
t=u.substring(1).split("&");for(var 
r=0;r<t.length;r++){if(t[r].substring(0,t[r].indexOf("="))==v){return 
g(t[r].substring((t[r].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A&&M){var
 
q=C(m);if(q){q.parentNode.replaceChild(M,q);if(l){W(l,true);if(h.ie&&h.win){M.style.display="block"}}M=null;l=null;A=false}}}}}();
+var swfobject=function(){var D="undefined",r="object",S="Shockwave 
Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var
 aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof 
j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof
 t.plugins!=D&&typeof 
t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof 
t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace
 (/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var 
ad=new 
ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split("
 
")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof
 j.readyState!=D&&j.readyState=="complete")||(typeof 
j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof
 
j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function
 f(){if(J){return}try{var Z=j.getElementsByTagName("
 
body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var
 X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function 
K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof 
O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof 
j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof 
O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var 
X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function 
h(){if(T){V()}else{H()}}function V(){var 
X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var 
Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var 
ab=Z.GetVariable("$version");if(ab){ab=ab.split(" 
")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function
 H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[a
 f].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var 
ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var
 
ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var
 ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var 
ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var
 Z=z(Y);if(Z&&typeof 
Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var 
X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof 
Y.SetVariable!=D){X=Y}else{var 
Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(
 ){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function 
P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var 
ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof
 
aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof
 
aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+"
 - Flash Player Installation";var 
ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof
 
ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var
 
Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function
 p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.pare
 
ntNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function
 g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var 
Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var 
X=ad.length;for(var 
Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return
 aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return 
X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in 
ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+='
 class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" 
"+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in 
ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'
 " />'}}aa.outerHTML='<object 
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var
 Z=C(r);Z.setAttribute("type",q);for(var ac in 
ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var
 ab in 
ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return
 X}function e(Z,X,Y){var 
aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function
 y(Y){var 
X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function
 b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof 
Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var 
X=null;try{X=j.getElementById(Z)}catch(Y){}r
 eturn X}function C(X){return j.createElement(X)}function 
i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var 
Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function
 v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var 
aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof 
ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var 
Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof
 
j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof
 n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof 
j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function 
w(Z,X){if(!m){return}var 
Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function
 L(Y){var Z
 =/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof 
encodeURIComponent!=D?encodeURIComponent(Y):Y}var 
d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var 
ac=I.length;for(var 
ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var 
aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in 
swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var
 
Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return
 z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var 
X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var
 aj={};if(af&&typeof af===r){for(var al in 
af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof 
ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(
 var ai in Z){if(typeof 
am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var
 
an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return
 u(Z,Y,X)}else{return 
undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var
 
Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return
 L(Z)}var Y=Z.split("&");for(var 
X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return 
L(Y[X].substring((Y[X].indexOf("=")+1)))}}}ret
 urn""},expressInstallCallback:function(){if(a){var 
X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();
\ No newline at end of file


Reply via email to