swfobject.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:33k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /*! SWFObject v2.2 <http://code.google.com/p/swfobject/> 
  2.     is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
  3. */
  4. var swfobject = function() {
  5.     
  6.     var UNDEF = "undefined",
  7.         OBJECT = "object",
  8.         SHOCKWAVE_FLASH = "Shockwave Flash",
  9.         SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
  10.         FLASH_MIME_TYPE = "application/x-shockwave-flash",
  11.         EXPRESS_INSTALL_ID = "SWFObjectExprInst",
  12.         ON_READY_STATE_CHANGE = "onreadystatechange",
  13.         
  14.         win = window,
  15.         doc = document,
  16.         nav = navigator,
  17.         
  18.         plugin = false,
  19.         domLoadFnArr = [main],
  20.         regObjArr = [],
  21.         objIdArr = [],
  22.         listenersArr = [],
  23.         storedAltContent,
  24.         storedAltContentId,
  25.         storedCallbackFn,
  26.         storedCallbackObj,
  27.         isDomLoaded = false,
  28.         isExpressInstallActive = false,
  29.         dynamicStylesheet,
  30.         dynamicStylesheetMedia,
  31.         autoHideShow = true,
  32.     
  33.     /* Centralized function for browser feature detection
  34.         - User agent string detection is only used when no good alternative is possible
  35.         - Is executed directly for optimal performance
  36.     */  
  37.     ua = function() {
  38.         var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF,
  39.             u = nav.userAgent.toLowerCase(),
  40.             p = nav.platform.toLowerCase(),
  41.             windows = p ? /win/.test(p) : /win/.test(u),
  42.             mac = p ? /mac/.test(p) : /mac/.test(u),
  43.             webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit/(d+(.d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit
  44.             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
  45.             playerVersion = [0,0,0],
  46.             d = null;
  47.         if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
  48.             d = nav.plugins[SHOCKWAVE_FLASH].description;
  49.             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+
  50.                 plugin = true;
  51.                 ie = false; // cascaded feature detection for Internet Explorer
  52.                 d = d.replace(/^.*s+(S+s+S+$)/, "$1");
  53.                 playerVersion[0] = parseInt(d.replace(/^(.*)..*$/, "$1"), 10);
  54.                 playerVersion[1] = parseInt(d.replace(/^.*.(.*)s.*$/, "$1"), 10);
  55.                 playerVersion[2] = /[a-zA-Z]/.test(d) ? parseInt(d.replace(/^.*[a-zA-Z]+(.*)$/, "$1"), 10) : 0;
  56.             }
  57.         }
  58.         else if (typeof win.ActiveXObject != UNDEF) {
  59.             try {
  60.                 var a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
  61.                 if (a) { // a will return null when ActiveX is disabled
  62.                     d = a.GetVariable("$version");
  63.                     if (d) {
  64.                         ie = true; // cascaded feature detection for Internet Explorer
  65.                         d = d.split(" ")[1].split(",");
  66.                         playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
  67.                     }
  68.                 }
  69.             }
  70.             catch(e) {}
  71.         }
  72.         return { w3:w3cdom, pv:playerVersion, wk:webkit, ie:ie, win:windows, mac:mac };
  73.     }(),
  74.     
  75.     /* Cross-browser onDomLoad
  76.         - Will fire an event as soon as the DOM of a web page is loaded
  77.         - Internet Explorer workaround based on Diego Perini's solution: http://javascript.nwbox.com/IEContentLoaded/
  78.         - Regular onload serves as fallback
  79.     */ 
  80.     onDomLoad = function() {
  81.         if (!ua.w3) { return; }
  82.         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 
  83.             callDomLoadFunctions();
  84.         }
  85.         if (!isDomLoaded) {
  86.             if (typeof doc.addEventListener != UNDEF) {
  87.                 doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, false);
  88.             }       
  89.             if (ua.ie && ua.win) {
  90.                 doc.attachEvent(ON_READY_STATE_CHANGE, function() {
  91.                     if (doc.readyState == "complete") {
  92.                         doc.detachEvent(ON_READY_STATE_CHANGE, arguments.callee);
  93.                         callDomLoadFunctions();
  94.                     }
  95.                 });
  96.                 if (win == top) { // if not inside an iframe
  97.                     (function(){
  98.                         if (isDomLoaded) { return; }
  99.                         try {
  100.                             doc.documentElement.doScroll("left");
  101.                         }
  102.                         catch(e) {
  103.                             setTimeout(arguments.callee, 0);
  104.                             return;
  105.                         }
  106.                         callDomLoadFunctions();
  107.                     })();
  108.                 }
  109.             }
  110.             if (ua.wk) {
  111.                 (function(){
  112.                     if (isDomLoaded) { return; }
  113.                     if (!/loaded|complete/.test(doc.readyState)) {
  114.                         setTimeout(arguments.callee, 0);
  115.                         return;
  116.                     }
  117.                     callDomLoadFunctions();
  118.                 })();
  119.             }
  120.             addLoadEvent(callDomLoadFunctions);
  121.         }
  122.     }();
  123.     
  124.     function callDomLoadFunctions() {
  125.         if (isDomLoaded) { return; }
  126.         try { // test if we can really add/remove elements to/from the DOM; we don't want to fire it too early
  127.             var t = doc.getElementsByTagName("body")[0].appendChild(createElement("span"));
  128.             t.parentNode.removeChild(t);
  129.         }
  130.         catch (e) { return; }
  131.         isDomLoaded = true;
  132.         var dl = domLoadFnArr.length;
  133.         for (var i = 0; i < dl; i++) {
  134.             domLoadFnArr[i]();
  135.         }
  136.     }
  137.     
  138.     function addDomLoadEvent(fn) {
  139.         if (isDomLoaded) {
  140.             fn();
  141.         }
  142.         else { 
  143.             domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+
  144.         }
  145.     }
  146.     
  147.     /* Cross-browser onload
  148.         - Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/
  149.         - Will fire an event as soon as a web page including all of its assets are loaded 
  150.      */
  151.     function addLoadEvent(fn) {
  152.         if (typeof win.addEventListener != UNDEF) {
  153.             win.addEventListener("load", fn, false);
  154.         }
  155.         else if (typeof doc.addEventListener != UNDEF) {
  156.             doc.addEventListener("load", fn, false);
  157.         }
  158.         else if (typeof win.attachEvent != UNDEF) {
  159.             addListener(win, "onload", fn);
  160.         }
  161.         else if (typeof win.onload == "function") {
  162.             var fnOld = win.onload;
  163.             win.onload = function() {
  164.                 fnOld();
  165.                 fn();
  166.             };
  167.         }
  168.         else {
  169.             win.onload = fn;
  170.         }
  171.     }
  172.     
  173.     /* Main function
  174.         - Will preferably execute onDomLoad, otherwise onload (as a fallback)
  175.     */
  176.     function main() { 
  177.         if (plugin) {
  178.             testPlayerVersion();
  179.         }
  180.         else {
  181.             matchVersions();
  182.         }
  183.     }
  184.     
  185.     /* Detect the Flash Player version for non-Internet Explorer browsers
  186.         - Detecting the plug-in version via the object element is more precise than using the plugins collection item's description:
  187.           a. Both release and build numbers can be detected
  188.           b. Avoid wrong descriptions by corrupt installers provided by Adobe
  189.           c. Avoid wrong descriptions by multiple Flash Player entries in the plugin Array, caused by incorrect browser imports
  190.         - Disadvantage of this method is that it depends on the availability of the DOM, while the plugins collection is immediately available
  191.     */
  192.     function testPlayerVersion() {
  193.         var b = doc.getElementsByTagName("body")[0];
  194.         var o = createElement(OBJECT);
  195.         o.setAttribute("type", FLASH_MIME_TYPE);
  196.         var t = b.appendChild(o);
  197.         if (t) {
  198.             var counter = 0;
  199.             (function(){
  200.                 if (typeof t.GetVariable != UNDEF) {
  201.                     var d = t.GetVariable("$version");
  202.                     if (d) {
  203.                         d = d.split(" ")[1].split(",");
  204.                         ua.pv = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
  205.                     }
  206.                 }
  207.                 else if (counter < 10) {
  208.                     counter++;
  209.                     setTimeout(arguments.callee, 10);
  210.                     return;
  211.                 }
  212.                 b.removeChild(o);
  213.                 t = null;
  214.                 matchVersions();
  215.             })();
  216.         }
  217.         else {
  218.             matchVersions();
  219.         }
  220.     }
  221.     
  222.     /* Perform Flash Player and SWF version matching; static publishing only
  223.     */
  224.     function matchVersions() {
  225.         var rl = regObjArr.length;
  226.         if (rl > 0) {
  227.             for (var i = 0; i < rl; i++) { // for each registered object element
  228.                 var id = regObjArr[i].id;
  229.                 var cb = regObjArr[i].callbackFn;
  230.                 var cbObj = {success:false, id:id};
  231.                 if (ua.pv[0] > 0) {
  232.                     var obj = getElementById(id);
  233.                     if (obj) {
  234.                         if (hasPlayerVersion(regObjArr[i].swfVersion) && !(ua.wk && ua.wk < 312)) { // Flash Player version >= published SWF version: Houston, we have a match!
  235.                             setVisibility(id, true);
  236.                             if (cb) {
  237.                                 cbObj.success = true;
  238.                                 cbObj.ref = getObjectById(id);
  239.                                 cb(cbObj);
  240.                             }
  241.                         }
  242.                         else if (regObjArr[i].expressInstall && canExpressInstall()) { // show the Adobe Express Install dialog if set by the web page author and if supported
  243.                             var att = {};
  244.                             att.data = regObjArr[i].expressInstall;
  245.                             att.width = obj.getAttribute("width") || "0";
  246.                             att.height = obj.getAttribute("height") || "0";
  247.                             if (obj.getAttribute("class")) { att.styleclass = obj.getAttribute("class"); }
  248.                             if (obj.getAttribute("align")) { att.align = obj.getAttribute("align"); }
  249.                             // parse HTML object param element's name-value pairs
  250.                             var par = {};
  251.                             var p = obj.getElementsByTagName("param");
  252.                             var pl = p.length;
  253.                             for (var j = 0; j < pl; j++) {
  254.                                 if (p[j].getAttribute("name").toLowerCase() != "movie") {
  255.                                     par[p[j].getAttribute("name")] = p[j].getAttribute("value");
  256.                                 }
  257.                             }
  258.                             showExpressInstall(att, par, id, cb);
  259.                         }
  260.                         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
  261.                             displayAltContent(obj);
  262.                             if (cb) { cb(cbObj); }
  263.                         }
  264.                     }
  265.                 }
  266.                 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)
  267.                     setVisibility(id, true);
  268.                     if (cb) {
  269.                         var o = getObjectById(id); // test whether there is an HTML object element or not
  270.                         if (o && typeof o.SetVariable != UNDEF) { 
  271.                             cbObj.success = true;
  272.                             cbObj.ref = o;
  273.                         }
  274.                         cb(cbObj);
  275.                     }
  276.                 }
  277.             }
  278.         }
  279.     }
  280.     
  281.     function getObjectById(objectIdStr) {
  282.         var r = null;
  283.         var o = getElementById(objectIdStr);
  284.         if (o && o.nodeName == "OBJECT") {
  285.             if (typeof o.SetVariable != UNDEF) {
  286.                 r = o;
  287.             }
  288.             else {
  289.                 var n = o.getElementsByTagName(OBJECT)[0];
  290.                 if (n) {
  291.                     r = n;
  292.                 }
  293.             }
  294.         }
  295.         return r;
  296.     }
  297.     
  298.     /* Requirements for Adobe Express Install
  299.         - only one instance can be active at a time
  300.         - fp 6.0.65 or higher
  301.         - Win/Mac OS only
  302.         - no Webkit engines older than version 312
  303.     */
  304.     function canExpressInstall() {
  305.         return !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac) && !(ua.wk && ua.wk < 312);
  306.     }
  307.     
  308.     /* Show the Adobe Express Install dialog
  309.         - Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
  310.     */
  311.     function showExpressInstall(att, par, replaceElemIdStr, callbackFn) {
  312.         isExpressInstallActive = true;
  313.         storedCallbackFn = callbackFn || null;
  314.         storedCallbackObj = {success:false, id:replaceElemIdStr};
  315.         var obj = getElementById(replaceElemIdStr);
  316.         if (obj) {
  317.             if (obj.nodeName == "OBJECT") { // static publishing
  318.                 storedAltContent = abstractAltContent(obj);
  319.                 storedAltContentId = null;
  320.             }
  321.             else { // dynamic publishing
  322.                 storedAltContent = obj;
  323.                 storedAltContentId = replaceElemIdStr;
  324.             }
  325.             att.id = EXPRESS_INSTALL_ID;
  326.             if (typeof att.width == UNDEF || (!/%$/.test(att.width) && parseInt(att.width, 10) < 310)) { att.width = "310"; }
  327.             if (typeof att.height == UNDEF || (!/%$/.test(att.height) && parseInt(att.height, 10) < 137)) { att.height = "137"; }
  328.             doc.title = doc.title.slice(0, 47) + " - Flash Player Installation";
  329.             var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
  330.                 fv = "MMredirectURL=" + win.location.toString().replace(/&/g,"%26") + "&MMplayerType=" + pt + "&MMdoctitle=" + doc.title;
  331.             if (typeof par.flashvars != UNDEF) {
  332.                 par.flashvars += "&" + fv;
  333.             }
  334.             else {
  335.                 par.flashvars = fv;
  336.             }
  337.             // 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,
  338.             // because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
  339.             if (ua.ie && ua.win && obj.readyState != 4) {
  340.                 var newObj = createElement("div");
  341.                 replaceElemIdStr += "SWFObjectNew";
  342.                 newObj.setAttribute("id", replaceElemIdStr);
  343.                 obj.parentNode.insertBefore(newObj, obj); // insert placeholder div that will be replaced by the object element that loads expressinstall.swf
  344.                 obj.style.display = "none";
  345.                 (function(){
  346.                     if (obj.readyState == 4) {
  347.                         obj.parentNode.removeChild(obj);
  348.                     }
  349.                     else {
  350.                         setTimeout(arguments.callee, 10);
  351.                     }
  352.                 })();
  353.             }
  354.             createSWF(att, par, replaceElemIdStr);
  355.         }
  356.     }
  357.     
  358.     /* Functions to abstract and display alternative content
  359.     */
  360.     function displayAltContent(obj) {
  361.         if (ua.ie && ua.win && obj.readyState != 4) {
  362.             // 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,
  363.             // because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
  364.             var el = createElement("div");
  365.             obj.parentNode.insertBefore(el, obj); // insert placeholder div that will be replaced by the alternative content
  366.             el.parentNode.replaceChild(abstractAltContent(obj), el);
  367.             obj.style.display = "none";
  368.             (function(){
  369.                 if (obj.readyState == 4) {
  370.                     obj.parentNode.removeChild(obj);
  371.                 }
  372.                 else {
  373.                     setTimeout(arguments.callee, 10);
  374.                 }
  375.             })();
  376.         }
  377.         else {
  378.             obj.parentNode.replaceChild(abstractAltContent(obj), obj);
  379.         }
  380.     } 
  381.     function abstractAltContent(obj) {
  382.         var ac = createElement("div");
  383.         if (ua.win && ua.ie) {
  384.             ac.innerHTML = obj.innerHTML;
  385.         }
  386.         else {
  387.             var nestedObj = obj.getElementsByTagName(OBJECT)[0];
  388.             if (nestedObj) {
  389.                 var c = nestedObj.childNodes;
  390.                 if (c) {
  391.                     var cl = c.length;
  392.                     for (var i = 0; i < cl; i++) {
  393.                         if (!(c[i].nodeType == 1 && c[i].nodeName == "PARAM") && !(c[i].nodeType == 8)) {
  394.                             ac.appendChild(c[i].cloneNode(true));
  395.                         }
  396.                     }
  397.                 }
  398.             }
  399.         }
  400.         return ac;
  401.     }
  402.     
  403.     /* Cross-browser dynamic SWF creation
  404.     */
  405.     function createSWF(attObj, parObj, id) {
  406.         var r, el = getElementById(id);
  407.         if (ua.wk && ua.wk < 312) { return r; }
  408.         if (el) {
  409.             if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
  410.                 attObj.id = id;
  411.             }
  412.             if (ua.ie && ua.win) { // Internet Explorer + the HTML object element + W3C DOM methods do not combine: fall back to outerHTML
  413.                 var att = "";
  414.                 for (var i in attObj) {
  415.                     if (attObj[i] != Object.prototype[i]) { // filter out prototype additions from other potential libraries
  416.                         if (i.toLowerCase() == "data") {
  417.                             parObj.movie = attObj[i];
  418.                         }
  419.                         else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
  420.                             att += ' class="' + attObj[i] + '"';
  421.                         }
  422.                         else if (i.toLowerCase() != "classid") {
  423.                             att += ' ' + i + '="' + attObj[i] + '"';
  424.                         }
  425.                     }
  426.                 }
  427.                 var par = "";
  428.                 for (var j in parObj) {
  429.                     if (parObj[j] != Object.prototype[j]) { // filter out prototype additions from other potential libraries
  430.                         par += '<param name="' + j + '" value="' + parObj[j] + '" />';
  431.                     }
  432.                 }
  433.                 el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
  434.                 objIdArr[objIdArr.length] = attObj.id; // stored to fix object 'leaks' on unload (dynamic publishing only)
  435.                 r = getElementById(attObj.id);  
  436.             }
  437.             else { // well-behaving browsers
  438.                 var o = createElement(OBJECT);
  439.                 o.setAttribute("type", FLASH_MIME_TYPE);
  440.                 for (var m in attObj) {
  441.                     if (attObj[m] != Object.prototype[m]) { // filter out prototype additions from other potential libraries
  442.                         if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
  443.                             o.setAttribute("class", attObj[m]);
  444.                         }
  445.                         else if (m.toLowerCase() != "classid") { // filter out IE specific attribute
  446.                             o.setAttribute(m, attObj[m]);
  447.                         }
  448.                     }
  449.                 }
  450.                 for (var n in parObj) {
  451.                     if (parObj[n] != Object.prototype[n] && n.toLowerCase() != "movie") { // filter out prototype additions from other potential libraries and IE specific param element
  452.                         createObjParam(o, n, parObj[n]);
  453.                     }
  454.                 }
  455.                 el.parentNode.replaceChild(o, el);
  456.                 r = o;
  457.             }
  458.         }
  459.         return r;
  460.     }
  461.     
  462.     function createObjParam(el, pName, pValue) {
  463.         var p = createElement("param");
  464.         p.setAttribute("name", pName);  
  465.         p.setAttribute("value", pValue);
  466.         el.appendChild(p);
  467.     }
  468.     
  469.     /* Cross-browser SWF removal
  470.         - Especially needed to safely and completely remove a SWF in Internet Explorer
  471.     */
  472.     function removeSWF(id) {
  473.         var obj = getElementById(id);
  474.         if (obj && obj.nodeName == "OBJECT") {
  475.             if (ua.ie && ua.win) {
  476.                 obj.style.display = "none";
  477.                 (function(){
  478.                     if (obj.readyState == 4) {
  479.                         removeObjectInIE(id);
  480.                     }
  481.                     else {
  482.                         setTimeout(arguments.callee, 10);
  483.                     }
  484.                 })();
  485.             }
  486.             else {
  487.                 obj.parentNode.removeChild(obj);
  488.             }
  489.         }
  490.     }
  491.     
  492.     function removeObjectInIE(id) {
  493.         var obj = getElementById(id);
  494.         if (obj) {
  495.             for (var i in obj) {
  496.                 if (typeof obj[i] == "function") {
  497.                     obj[i] = null;
  498.                 }
  499.             }
  500.             obj.parentNode.removeChild(obj);
  501.         }
  502.     }
  503.     
  504.     /* Functions to optimize JavaScript compression
  505.     */
  506.     function getElementById(id) {
  507.         var el = null;
  508.         try {
  509.             el = doc.getElementById(id);
  510.         }
  511.         catch (e) {}
  512.         return el;
  513.     }
  514.     
  515.     function createElement(el) {
  516.         return doc.createElement(el);
  517.     }
  518.     
  519.     /* Updated attachEvent function for Internet Explorer
  520.         - Stores attachEvent information in an Array, so on unload the detachEvent functions can be called to avoid memory leaks
  521.     */  
  522.     function addListener(target, eventType, fn) {
  523.         target.attachEvent(eventType, fn);
  524.         listenersArr[listenersArr.length] = [target, eventType, fn];
  525.     }
  526.     
  527.     /* Flash Player and SWF content version matching
  528.     */
  529.     function hasPlayerVersion(rv) {
  530.         var pv = ua.pv, v = rv.split(".");
  531.         v[0] = parseInt(v[0], 10);
  532.         v[1] = parseInt(v[1], 10) || 0; // supports short notation, e.g. "9" instead of "9.0.0"
  533.         v[2] = parseInt(v[2], 10) || 0;
  534.         return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
  535.     }
  536.     
  537.     /* Cross-browser dynamic CSS creation
  538.         - Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php
  539.     */  
  540.     function createCSS(sel, decl, media, newStyle) {
  541.         if (ua.ie && ua.mac) { return; }
  542.         var h = doc.getElementsByTagName("head")[0];
  543.         if (!h) { return; } // to also support badly authored HTML pages that lack a head element
  544.         var m = (media && typeof media == "string") ? media : "screen";
  545.         if (newStyle) {
  546.             dynamicStylesheet = null;
  547.             dynamicStylesheetMedia = null;
  548.         }
  549.         if (!dynamicStylesheet || dynamicStylesheetMedia != m) { 
  550.             // create dynamic stylesheet + get a global reference to it
  551.             var s = createElement("style");
  552.             s.setAttribute("type", "text/css");
  553.             s.setAttribute("media", m);
  554.             dynamicStylesheet = h.appendChild(s);
  555.             if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) {
  556.                 dynamicStylesheet = doc.styleSheets[doc.styleSheets.length - 1];
  557.             }
  558.             dynamicStylesheetMedia = m;
  559.         }
  560.         // add style rule
  561.         if (ua.ie && ua.win) {
  562.             if (dynamicStylesheet && typeof dynamicStylesheet.addRule == OBJECT) {
  563.                 dynamicStylesheet.addRule(sel, decl);
  564.             }
  565.         }
  566.         else {
  567.             if (dynamicStylesheet && typeof doc.createTextNode != UNDEF) {
  568.                 dynamicStylesheet.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
  569.             }
  570.         }
  571.     }
  572.     
  573.     function setVisibility(id, isVisible) {
  574.         if (!autoHideShow) { return; }
  575.         var v = isVisible ? "visible" : "hidden";
  576.         if (isDomLoaded && getElementById(id)) {
  577.             getElementById(id).style.visibility = v;
  578.         }
  579.         else {
  580.             createCSS("#" + id, "visibility:" + v);
  581.         }
  582.     }
  583.     /* Filter to avoid XSS attacks
  584.     */
  585.     function urlEncodeIfNecessary(s) {
  586.         var regex = /[\"<>.;]/;
  587.         var hasBadChars = regex.exec(s) != null;
  588.         return hasBadChars && typeof encodeURIComponent != UNDEF ? encodeURIComponent(s) : s;
  589.     }
  590.     
  591.     /* Release memory to avoid memory leaks caused by closures, fix hanging audio/video threads and force open sockets/NetConnections to disconnect (Internet Explorer only)
  592.     */
  593.     var cleanup = function() {
  594.         if (ua.ie && ua.win) {
  595.             window.attachEvent("onunload", function() {
  596.                 // remove listeners to avoid memory leaks
  597.                 var ll = listenersArr.length;
  598.                 for (var i = 0; i < ll; i++) {
  599.                     listenersArr[i][0].detachEvent(listenersArr[i][1], listenersArr[i][2]);
  600.                 }
  601.                 // cleanup dynamically embedded objects to fix audio/video threads and force open sockets and NetConnections to disconnect
  602.                 var il = objIdArr.length;
  603.                 for (var j = 0; j < il; j++) {
  604.                     removeSWF(objIdArr[j]);
  605.                 }
  606.                 // cleanup library's main closures to avoid memory leaks
  607.                 for (var k in ua) {
  608.                     ua[k] = null;
  609.                 }
  610.                 ua = null;
  611.                 for (var l in swfobject) {
  612.                     swfobject[l] = null;
  613.                 }
  614.                 swfobject = null;
  615.             });
  616.         }
  617.     }();
  618.     
  619.     return {
  620.         /* Public API
  621.             - Reference: http://code.google.com/p/swfobject/wiki/documentation
  622.         */ 
  623.         registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr, callbackFn) {
  624.             if (ua.w3 && objectIdStr && swfVersionStr) {
  625.                 var regObj = {};
  626.                 regObj.id = objectIdStr;
  627.                 regObj.swfVersion = swfVersionStr;
  628.                 regObj.expressInstall = xiSwfUrlStr;
  629.                 regObj.callbackFn = callbackFn;
  630.                 regObjArr[regObjArr.length] = regObj;
  631.                 setVisibility(objectIdStr, false);
  632.             }
  633.             else if (callbackFn) {
  634.                 callbackFn({success:false, id:objectIdStr});
  635.             }
  636.         },
  637.         
  638.         getObjectById: function(objectIdStr) {
  639.             if (ua.w3) {
  640.                 return getObjectById(objectIdStr);
  641.             }
  642.         },
  643.         
  644.         embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj, callbackFn) {
  645.             var callbackObj = {success:false, id:replaceElemIdStr};
  646.             if (ua.w3 && !(ua.wk && ua.wk < 312) && swfUrlStr && replaceElemIdStr && widthStr && heightStr && swfVersionStr) {
  647.                 setVisibility(replaceElemIdStr, false);
  648.                 addDomLoadEvent(function() {
  649.                     widthStr += ""; // auto-convert to string
  650.                     heightStr += "";
  651.                     var att = {};
  652.                     if (attObj && typeof attObj === OBJECT) {
  653.                         for (var i in attObj) { // copy object to avoid the use of references, because web authors often reuse attObj for multiple SWFs
  654.                             att[i] = attObj[i];
  655.                         }
  656.                     }
  657.                     att.data = swfUrlStr;
  658.                     att.width = widthStr;
  659.                     att.height = heightStr;
  660.                     var par = {}; 
  661.                     if (parObj && typeof parObj === OBJECT) {
  662.                         for (var j in parObj) { // copy object to avoid the use of references, because web authors often reuse parObj for multiple SWFs
  663.                             par[j] = parObj[j];
  664.                         }
  665.                     }
  666.                     if (flashvarsObj && typeof flashvarsObj === OBJECT) {
  667.                         for (var k in flashvarsObj) { // copy object to avoid the use of references, because web authors often reuse flashvarsObj for multiple SWFs
  668.                             if (typeof par.flashvars != UNDEF) {
  669.                                 par.flashvars += "&" + k + "=" + flashvarsObj[k];
  670.                             }
  671.                             else {
  672.                                 par.flashvars = k + "=" + flashvarsObj[k];
  673.                             }
  674.                         }
  675.                     }
  676.                     if (hasPlayerVersion(swfVersionStr)) { // create SWF
  677.                         var obj = createSWF(att, par, replaceElemIdStr);
  678.                         if (att.id == replaceElemIdStr) {
  679.                             setVisibility(replaceElemIdStr, true);
  680.                         }
  681.                         callbackObj.success = true;
  682.                         callbackObj.ref = obj;
  683.                     }
  684.                     else if (xiSwfUrlStr && canExpressInstall()) { // show Adobe Express Install
  685.                         att.data = xiSwfUrlStr;
  686.                         showExpressInstall(att, par, replaceElemIdStr, callbackFn);
  687.                         return;
  688.                     }
  689.                     else { // show alternative content
  690.                         setVisibility(replaceElemIdStr, true);
  691.                     }
  692.                     if (callbackFn) { callbackFn(callbackObj); }
  693.                 });
  694.             }
  695.             else if (callbackFn) { callbackFn(callbackObj); }
  696.         },
  697.         
  698.         switchOffAutoHideShow: function() {
  699.             autoHideShow = false;
  700.         },
  701.         
  702.         ua: ua,
  703.         
  704.         getFlashPlayerVersion: function() {
  705.             return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] };
  706.         },
  707.         
  708.         hasFlashPlayerVersion: hasPlayerVersion,
  709.         
  710.         createSWF: function(attObj, parObj, replaceElemIdStr) {
  711.             if (ua.w3) {
  712.                 return createSWF(attObj, parObj, replaceElemIdStr);
  713.             }
  714.             else {
  715.                 return undefined;
  716.             }
  717.         },
  718.         
  719.         showExpressInstall: function(att, par, replaceElemIdStr, callbackFn) {
  720.             if (ua.w3 && canExpressInstall()) {
  721.                 showExpressInstall(att, par, replaceElemIdStr, callbackFn);
  722.             }
  723.         },
  724.         
  725.         removeSWF: function(objElemIdStr) {
  726.             if (ua.w3) {
  727.                 removeSWF(objElemIdStr);
  728.             }
  729.         },
  730.         
  731.         createCSS: function(selStr, declStr, mediaStr, newStyleBoolean) {
  732.             if (ua.w3) {
  733.                 createCSS(selStr, declStr, mediaStr, newStyleBoolean);
  734.             }
  735.         },
  736.         
  737.         addDomLoadEvent: addDomLoadEvent,
  738.         
  739.         addLoadEvent: addLoadEvent,
  740.         
  741.         getQueryParamValue: function(param) {
  742.             var q = doc.location.search || doc.location.hash;
  743.             if (q) {
  744.                 if (/?/.test(q)) { q = q.split("?")[1]; } // strip question mark
  745.                 if (param == null) {
  746.                     return urlEncodeIfNecessary(q);
  747.                 }
  748.                 var pairs = q.split("&");
  749.                 for (var i = 0; i < pairs.length; i++) {
  750.                     if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
  751.                         return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=") + 1)));
  752.                     }
  753.                 }
  754.             }
  755.             return "";
  756.         },
  757.         
  758.         // For internal usage only
  759.         expressInstallCallback: function() {
  760.             if (isExpressInstallActive) {
  761.                 var obj = getElementById(EXPRESS_INSTALL_ID);
  762.                 if (obj && storedAltContent) {
  763.                     obj.parentNode.replaceChild(storedAltContent, obj);
  764.                     if (storedAltContentId) {
  765.                         setVisibility(storedAltContentId, true);
  766.                         if (ua.ie && ua.win) { storedAltContent.style.display = "block"; }
  767.                     }
  768.                     if (storedCallbackFn) { storedCallbackFn(storedCallbackObj); }
  769.                 }
  770.                 isExpressInstallActive = false;
  771.             } 
  772.         }
  773.     };
  774. }();