PageRenderTime 51ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/source/_SiteNote/WWW/Scripts/swfobject.js

#
JavaScript | 172 lines | 161 code | 3 blank | 8 comment | 24 complexity | 76b9c1de58caa202766dcc06dac7a8c1 MD5 | raw file
  1. /**
  2. * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
  3. *
  4. * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
  5. * http://www.opensource.org/licenses/mit-license.php
  6. *
  7. */
  8. if(typeof deconcept=="undefined")
  9. {
  10. var deconcept=new Object();
  11. }
  12. if(typeof deconcept.util=="undefined")
  13. {
  14. deconcept.util=new Object();
  15. }
  16. if(typeof deconcept.SWFObjectUtil=="undefined")
  17. {
  18. deconcept.SWFObjectUtil=new Object();
  19. }
  20. deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a)
  21. {
  22. if(!document.getElementById)
  23. {
  24. return;
  25. }
  26. this.DETECT_KEY=_a?_a:"detectflash";
  27. this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);
  28. this.params=new Object();
  29. this.variables=new Object();
  30. this.attributes=new Array();
  31. if(_1)
  32. {
  33. this.setAttribute("swf",_1);
  34. }if(id)
  35. {
  36. this.setAttribute("id",id);
  37. }
  38. if(w)
  39. {
  40. this.setAttribute("width",w);
  41. }
  42. if(h)
  43. {
  44. this.setAttribute("height",h);
  45. }
  46. if(_5)
  47. {
  48. this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));
  49. }
  50. this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();
  51. if(!window.opera&&document.all&&this.installedVer.major>7)
  52. {
  53. deconcept.SWFObject.doPrepUnload=true;
  54. }
  55. if(c)
  56. {
  57. this.addParam("bgcolor",c);
  58. }
  59. var q=_7?_7:"high";
  60. this.addParam("quality",q);
  61. this.setAttribute("useExpressInstall",false);
  62. this.setAttribute("doExpressInstall",false);
  63. var _c=(_8)?_8:window.location;
  64. this.setAttribute("xiRedirectUrl",_c);
  65. this.setAttribute("redirectUrl","");
  66. if(_9)
  67. {
  68. this.setAttribute("redirectUrl",_9);
  69. }
  70. };deconcept.SWFObject.prototype={useExpressInstall:function(_d)
  71. {
  72. this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);
  73. }
  74. ,setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function()
  75. {
  76. var _16=new Array();
  77. var key;
  78. var _18=this.getVariables();
  79. for(key in _18)
  80. {
  81. _16[_16.length]=key+"="+_18[key];
  82. }
  83. return _16;
  84. }
  85. ,getSWFHTML:function()
  86. {
  87. var _19="";
  88. if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length)
  89. {
  90. if(this.getAttribute("doExpressInstall"))
  91. {
  92. this.addVariable("MMplayerType","PlugIn");
  93. this.setAttribute("swf",this.xiSWFPath);
  94. }
  95. _19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";
  96. _19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
  97. var _1a=this.getParams();
  98. for(var key in _1a)
  99. {
  100. _19+=[key]+"=\""+_1a[key]+"\" ";
  101. }
  102. var _1c=this.getVariablePairs().join("&");
  103. if(_1c.length>0)
  104. {
  105. _19+="flashvars=\""+_1c+"\"";
  106. }
  107. _19+="/>";
  108. }
  109. else
  110. {
  111. var currentLocation = document.location.href;
  112. if(this.getAttribute("doExpressInstall"))
  113. {
  114. this.addVariable("MMplayerType","ActiveX");
  115. this.setAttribute("swf",this.xiSWFPath);
  116. }
  117. _19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style");
  118. if(currentLocation.toLowerCase().indexOf("sitenote_mode=catalog",0) > 0)
  119. {
  120. _19+=";visibility:hidden";
  121. }
  122. _19+="\">";
  123. _19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
  124. var _1d=this.getParams();
  125. for(var key in _1d)
  126. {
  127. _19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";
  128. }
  129. var _1f=this.getVariablePairs().join("&");
  130. if(_1f.length>0)
  131. {
  132. _19+="<param name=\"flashvars\" value=\""+_1f+"\" />";
  133. }
  134. _19+="</object>";
  135. }
  136. //alert(_19);
  137. return _19;
  138. }
  139. ,write:function(_20)
  140. {
  141. if(this.getAttribute("useExpressInstall"))
  142. {
  143. var _21=new deconcept.PlayerVersion([6,0,65]);
  144. if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version")))
  145. {
  146. this.setAttribute("doExpressInstall",true);
  147. this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
  148. document.title=document.title.slice(0,47)+" - Flash Player Installation";
  149. this.addVariable("MMdoctitle",document.title);
  150. }
  151. }
  152. if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version")))
  153. {
  154. var n=(typeof _20=="string")?document.getElementById(_20):_20;
  155. n.innerHTML=this.getSWFHTML();
  156. return true;
  157. }
  158. else
  159. {
  160. if(this.getAttribute("redirectUrl")!="")
  161. {
  162. document.location.replace(this.getAttribute("redirectUrl"));
  163. }
  164. }
  165. return false;
  166. }
  167. };
  168. deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;
  169. var SWFObject=deconcept.SWFObject;