try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

/* show and hide divs */
function toggleTags(parentObj) { 
	var allTags = parentObj.getElementsByTagName("div"); 
	for (i = 0; i < allTags.length; i++) { 
		allTags[i].style.display = (allTags[i].style.display == 'none')? 'block' : 'none'; 
	} 
}

/* copy text to clipboard */
function copy_clip(txtToCopy)
{
	if (window.clipboardData) 
		window.clipboardData.setData("Text", txtToCopy);
	else if (window.netscape) 
	{ 
		netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
		var clip = Components.classes['@mozilla.org/widget/clipboard;1']
				  .createInstance(Components.interfaces.nsIClipboard);
		if (!clip) return;
			var trans = Components.classes['@mozilla.org/widget/transferable;1']
					   .createInstance(Components.interfaces.nsITransferable);
		if (!trans) return;
			trans.addDataFlavor('text/unicode');
			var str = new Object();
			var len = new Object();
			var str = Components.classes["@mozilla.org/supports-string;1"]
					 .createInstance(Components.interfaces.nsISupportsString);
			var copytext=txtToCopy;
			str.data=copytext;
			trans.setTransferData("text/unicode",str,copytext.length*2);
			var clipid=Components.interfaces.nsIClipboard;
			if (!clip) return false;
			clip.setData(trans,null,clipid.kGlobalClipboard);
	}
	return false;
}

/* ajax window switch */
function createRequestObject() {
    var ro;
    var browser = navigator.appName;
    if(browser == "Microsoft Internet Explorer"){
        ro = new ActiveXObject("Microsoft.XMLHTTP");
    }else{
        ro = new XMLHttpRequest();
    }
    return ro;
}

var http = createRequestObject();

function ajaxRss(action) {
    http.open('get', 'http://www.kung-fu.co.il/hebrew/include/rss.asp?feed='+action);
    http.onreadystatechange = handleResponse;
    http.send(null);
}

function ajaxRandomTitle(action) {
    http.open('get', 'http://www.kung-fu.co.il/hebrew/include/randomtitle.asp?rnd='+action);
    http.onreadystatechange = handleResponse;
    http.send(null);
}

function ajaxRnd(action) {
    http.open('get', 'http://www.kung-fu.co.il/english/include/randomtitle.asp?rnd='+action);
    http.onreadystatechange = handleResponse;
    http.send(null);
}

function handleResponse() {
    if(http.readyState == 4){
        var response = http.responseText;
        var update = new Array();

        if(response.indexOf('|' != -1)) {
            update = response.split('█');
            document.getElementById(update[0]).innerHTML = update[1];
        }
    }
}

/* shadow image script */
init();

function init() {
  var oldOnLoad = window.onload;
  window.onload = function() {
    if (oldOnLoad) oldOnLoad();
    addMattesAndShadows();
  }
}

function addMattesAndShadows() {

/*

1. Get all the imgs in the document.
2. Step through the imgs, identifying the shadow ones. (Hi, DOM guys?
   A getElementByCSSSelector functon would kick ass. Kay? Thanks.)
3. For each img of class shadow:
   a. Create a new div node of class shadow.
   b. Set the width of the new node to the width of the img plus a little
      extra to accommodate the matte were adding.
   c. Add a clone of the img to the new div as a child.
   d. Create the four corner divs and add them to the new div as children.
   e. Replace the img with the new shadow div.

Im going to identify each step as I go, so if you see something that doesnt
make sense, just look for the closest number.

*/

  /* 1. */
  var imgs = document.getElementsByTagName("img");

  /* 2. */
  for (var i = 0; i < imgs.length; i++) {
    var thisImg = imgs[i];
    var isShadow = false;
    var extraWidth = 10;

    /* A word about extraWidth. This value represents the width of the white
       matte were adding around our shadowed images. I like a five-pixel
       matte, hence extraWidth equals ten.

       Yes, its lame to hard-code the matte into both the CSS and the
       JavaScript. We are, in fact, just asking for trouble by doing it this
       way. But after literally tens of seconds of intense thought, I failed
       to come up with a more clever solution. If you feel like tackling
       it, knock yourself out. Since Im only applying one kind of matte
       per site-wide instance of this technique, I really dont care. */

    if (thisImg.className) {

      /* First well tokenize the className, since classes can have multiple
         space-separated values. */

      var classTokens = thisImg.className.split(' ');
      for (var j = 0; j < classTokens.length; j++) {
        var thisToken = classTokens[j];
        if (thisToken == "shadow")
          isShadow = true;
        if (thisToken == "nomatte")
          extraWidth = 0;
      }

      /* If thisImg is a shadow image  um  apply the shadow. Duh. */

      /* 3. */
      if (isShadow) {

        /* 3a. */
        var shadowDiv = document.createElement('div');
        shadowDiv.className = 'shadow';
        /* Yes, you can use setAttribute, but this way works in IE too. */

        /* 3b. */
        shadowDiv.style.width = (thisImg.width + extraWidth) + "px";

        /* 3c. */
        shadowDiv.appendChild(thisImg.cloneNode(false));
        /* Img elements cant have children in HTML, so no need for a deep
           clone. Thats what the false argument means. Stupid C-like
           non-named-arguments having JavaScript syntax. */

        /* 3d. */
        var topLeft = document.createElement('div');
        topLeft.className = "topleft";
        shadowDiv.appendChild(topLeft);

        var topRight = document.createElement('div');
        topRight.className = "topright";
        shadowDiv.appendChild(topRight);

        var bottomLeft = document.createElement('div');
        bottomLeft.className = "bottomleft";
        shadowDiv.appendChild(bottomLeft);

        var bottomRight = document.createElement('div');
        bottomRight.className = "bottomright";
        shadowDiv.appendChild(bottomRight);

        /* 3e. */
        thisImg.parentNode.replaceChild(shadowDiv, thisImg);

      }

    }

  }

}

/*
 * Interface elements for jQuery - http://interface.eyecon.ro
 *
 * Copyright (c) 2006 Stefan Petre
 * Dual licensed under the MIT (MIT-LICENSE.txt) 
 * and GPL (GPL-LICENSE.txt) licenses.
 */

eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)d[e(c)]=k[c]||e(c);k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('f.1x={4C:v(e,s){j l=0;j t=0;j 1a=0;j 1b=0;j w=f.E(e,\'21\');j h=f.E(e,\'22\');j Y=e.2y;j Z=e.2x;2z(e.2A){l+=e.2C+(e.M?u(e.M.24)||0:0);t+=e.2B+(e.M?u(e.M.26)||0:0);6(s){1a+=e.1q.1h||0;1b+=e.1q.19||0}e=e.2A}l+=e.2C+(e.M?u(e.M.24)||0:0);t+=e.2B+(e.M?u(e.M.26)||0:0);1b=t-1b;1a=l-1a;d{x:l,y:t,4B:1a,4A:1b,w:w,h:h,Y:Y,Z:Z}},2J:v(e){j x=0;j y=0;j 1t=1l;B=e.1r;6(f(e).E(\'11\')==\'1e\'){1s=B.16;28=B.J;B.16=\'1Z\';B.11=\'2r\';B.J=\'1A\';1t=1g}8=e;2z(8){x+=8.2C+(8.M&&!f.1B.3d?u(8.M.24)||0:0);y+=8.2B+(8.M&&!f.1B.3d?u(8.M.26)||0:0);8=8.2A}8=e;2z(8&&8.4z.4y()!=\'O\'){x-=8.1h||0;y-=8.19||0;8=8.1q}6(1t){B.11=\'1e\';B.J=28;B.16=1s}d{x:x,y:y}},35:v(e){j w=f.E(e,\'21\');j h=f.E(e,\'22\');j Y=0;j Z=0;B=e.1r;6(f(e).E(\'11\')!=\'1e\'){Y=e.2y;Z=e.2x}A{1s=B.16;28=B.J;B.16=\'1Z\';B.11=\'2r\';B.J=\'1A\';Y=e.2y;Z=e.2x;B.11=\'1e\';B.J=28;B.16=1s}d{w:w,h:h,Y:Y,Z:Z}},4x:v(e){6(e){w=e.1H;h=e.1G}A{1I=G.S;w=1J.2u||27.2u||(1I&&1I.1H)||G.O.1H;h=1J.2t||27.2t||(1I&&1I.1G)||G.O.1G}d{w:w,h:h}},2I:v(e){6(e){t=e.19;l=e.1h;w=e.2w;h=e.2v;1j=0;1k=0}A{6(G.S&&G.S.19){t=G.S.19;l=G.S.1h;w=G.S.2w;h=G.S.2v}A 6(G.O){t=G.O.19;l=G.O.1h;w=G.O.2w;h=G.O.2v}1j=27.2u||G.S.1H||G.O.1H||0;1k=27.2t||G.S.1G||G.O.1G||0}d{t:t,l:l,w:w,h:h,1j:1j,1k:1k}},34:v(e,1v){8=f(e);t=8.E(\'1Y\')||\'\';r=8.E(\'1X\')||\'\';b=8.E(\'1W\')||\'\';l=8.E(\'1V\')||\'\';6(1v)d{t:u(t)||0,r:u(r)||0,b:u(b)||0,l:u(l)};A d{t:t,r:r,b:b,l:l}},4w:v(e,1v){8=f(e);t=8.E(\'4v\')||\'\';r=8.E(\'4u\')||\'\';b=8.E(\'4t\')||\'\';l=8.E(\'4s\')||\'\';6(1v)d{t:u(t)||0,r:u(r)||0,b:u(b)||0,l:u(l)};A d{t:t,r:r,b:b,l:l}},4r:v(e,1v){8=f(e);t=8.E(\'26\')||\'\';r=8.E(\'4q\')||\'\';b=8.E(\'4p\')||\'\';l=8.E(\'24\')||\'\';6(1v)d{t:u(t)||0,r:u(r)||0,b:u(b)||0,l:u(l)||0};A d{t:t,r:r,b:b,l:l}},4o:v(1F){x=1F.4n||(1F.4m+(G.S.1h||G.O.1h))||0;y=1F.4l||(1F.4k+(G.S.19||G.O.19))||0;d{x:x,y:y}}};f.T=v(2s,1u,Q,P){j z=1c;z.P=/2U|2T|2S|2Q|2R|2P|2N|2O|2M/.1R(P)?P:\'2e\';z.o={k:1u.k||4j,1D:1u.1D,14:1u.14};z.8=2s;j y=z.8.1r;z.a=v(){6(1u.14)1u.14.37(2s,[z.W]);6(Q=="1f"){6(z.W==1)z.W=0.4i;6(1J.4h)y.2Z="2Y(1f="+z.W*2X+")";A y.1f=z.W}A 6(u(z.W))y[Q]=u(z.W)+"15";y.11="2r"};z.3c=v(){d 1y(f.E(z.8,Q))};z.2p=v(){j r=1y(f.4g(z.8,Q));d r&&r>-32?r:z.3c()};z.2o=v(2q,3b){z.2n=(1w 1M()).1L();z.W=2q;z.a();z.1i=2D(v(){z.14(2q,3b)},13)};z.33=v(p){6(!z.8.12)z.8.12={};z.8.12[Q]=1c.2p();z.2o(0,z.8.12[Q]);6(Q!="1f")y[Q]="4f"};z.1C=v(){6(!z.8.12)z.8.12={};z.8.12[Q]=1c.2p();z.o.1C=1g;z.2o(z.8.12[Q],0)};6(f.1B.2h&&!z.8.M.4e)y.4d="1";6(!z.8.4c)z.8.3a=f.E(z.8,"20");y.20="1Z";z.14=v(C,2m){j t=(1w 1M()).1L();6(t>z.o.k+z.2n){2H(z.1i);z.1i=2G;z.W=2m;z.a();6(z.8.1E)z.8.1E[Q]=1g;j 23=1g;39(j i 38 z.8.1E){6(z.8.1E[i]!==1g)23=1l}6(23){y.20=z.8.3a;6(z.o.1C)y.11=\'1e\';6(z.o.1C){39(j p 38 z.8.1E){y[p]=z.8.12[p]+(p=="1f"?"":"15");6(p==\'22\'||p==\'21\')f.4b(z.8,p)}}}6(23&&z.o.1D&&z.o.1D.4a==49)z.o.1D.37(z.8)}A{j n=t-1c.2n;j p=n/z.o.k;z.W=f.T.1K(p,n,C,(2m-C),z.o.k,z.P);z.a()}}};f.36=v(e){6(/48|47|46|44|43|42|41|40|3Z|O|3Y|3X|3W|3V|3U|3T|3S/i.1R(e.2l))d 1l;A d 1g};f.T.3R=v(e,17){c=e.3Q;18=c.1r;18.J=17.J;18.1Y=17.X.t;18.1V=17.X.l;18.1W=17.X.b;18.1X=17.X.r;18.V=17.V+\'15\';18.U=17.U+\'15\';e.1q.2V(c,e);e.1q.3P(e)};f.T.3O=v(e){6(!f.36(e))d 1l;j t=f(e);j B=e.1r;j 1t=1l;H={};H.J=t.E(\'J\');H.2j=f.1x.35(e);H.X=f.1x.34(e);2i=e.M?e.M.30:t.E(\'3N\');6(t.E(\'11\')==\'1e\'){1s=t.E(\'16\');t.33();1t=1g}H.V=u(t.E(\'V\'))||0;H.U=u(t.E(\'U\'))||0;6(1t){t.1C();B.16=1s}j 31=\'3M\'+u(L.3L()*32);j 1d=G.3K(/3J|2L|3I|3H|3G|3F|3E|3D|3C|3B|3A|3z|3y|3x/i.1R(e.2l)?\'3w\':e.2l);f.3v(1d,\'3u\',31);3t=f(1d).3s(\'3r\');j N=1d.1r;j V=0;j U=0;6(H.J==\'2k\'||H.J==\'1A\'){V=H.V;U=H.U}N.V=V+\'15\';N.U=U+\'15\';N.J=H.J!=\'2k\'&&H.J!=\'1A\'?\'2k\':H.J;N.22=H.2j.Z+\'15\';N.21=H.2j.Y+\'15\';N.1Y=H.X.t;N.1X=H.X.r;N.1W=H.X.b;N.1V=H.X.l;N.20=\'1Z\';6(f.1B.2h){N.30=2i}A{N.3q=2i}6(f.1B=="2h"){B.2Z="2Y(1f="+0.2W*2X+")"}B.1f=0.2W;e.1q.2V(1d,e);1d.3p(e);B.1Y=\'1p\';B.1X=\'1p\';B.1W=\'1p\';B.1V=\'1p\';B.J=\'1A\';B.3o=\'1e\';B.V=\'1p\';B.U=\'1p\';d{H:H,3n:f(1d)}};f.T.1K=v(p,n,C,q,k,R){6(R==\'2e\'){d((-L.3m(p*L.1z)/2)+0.5)*q+C}6(R==\'2U\'){d q*(n/=k)*n*n+C}6(R==\'2T\'){d-q*((n=n/k-1)*n*n*n-1)+C}6(R==\'2S\'){6((n/=k/2)<1)d q/2*n*n*n*n+C;d-q/2*((n-=2)*n*n*n-2)+C}6(R==\'2R\'){6((n/=k)<(1/2.D)){d q*(7.K*n*n)+C}A 6(n<(2/2.D)){d q*(7.K*(n-=(1.5/2.D))*n+.D)+C}A 6(n<(2.5/2.D)){d q*(7.K*(n-=(2.25/2.D))*n+.1U)+C}A{d q*(7.K*(n-=(2.1T/2.D))*n+.1S)+C}}6(R==\'2Q\'){F=k-n;6((F/=k)<(1/2.D)){m=q*(7.K*F*F)}A 6(F<(2/2.D)){m=q*(7.K*(F-=(1.5/2.D))*F+.D)}A 6(F<(2.5/2.D)){m=q*(7.K*(F-=(2.25/2.D))*F+.1U)}A{m=q*(7.K*(F-=(2.1T/2.D))*F+.1S)}d q-m+C}6(R==\'2P\'){6(n<k/2){F=n*2;6((F/=k)<(1/2.D)){m=q*(7.K*F*F)}A 6(F<(2/2.D)){m=q*(7.K*(F-=(1.5/2.D))*F+.D)}A 6(F<(2.5/2.D)){m=q*(7.K*(F-=(2.25/2.D))*F+.1U)}A{m=q*(7.K*(F-=(2.1T/2.D))*F+.1S)}d(q-m+C)*.5+C}A{n=n*2-k;6((n/=k)<(1/2.D)){m=q*(7.K*n*n)+C}A 6(n<(2/2.D)){m=q*(7.K*(n-=(1.5/2.D))*n+.D)+C}A 6(n<(2.5/2.D)){m=q*(7.K*(n-=(2.25/2.D))*n+.1U)+C}A{m=q*(7.K*(n-=(2.1T/2.D))*n+.1S)+C}d m*.5+q*.5+C}}6(R==\'2O\'){6((n/=k)==1)d C+q;d q*L.1Q(2,-10*n)*L.1P((n*k-(k*.3)/4)*(2*L.1z)/(k*.3))+q+C}6(R==\'2N\'){6(n==0)d b;6((n/=k)==1)d C+q;d-(q*L.1Q(2,10*(n-=1))*L.1P((n*k-(k*.3)/4)*(2*L.1z)/(k*.3)))+C}6(R==\'2M\'){6(n==0)d C;6((n/=k)==1)d C+q;f(\'#1R\').3l(p+\'<2L />\'+n);6(p<1)d-.5*(q*L.1Q(2,10*(n-=1))*L.1P((n*k-(k*.45)/4)*(2*L.1z)/(k*.45)))+C;d q*L.1Q(2,-10*(n-=1))*L.1P((n*k-(k*.45)/4)*(2*L.1z)/(k*.45))*.5+q+C}};f.T.3k=v(1O){6(I=/2K\\(\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*\\)/.1N(1O))d{r:u(I[1]),g:u(I[2]),b:u(I[3])};A 6(I=/2K\\(\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*\\)/.1N(1O))d{r:1y(I[1])*2.2g,g:1y(I[2])*2.2g,b:1y(I[3])*2.2g};A 6(I=/#([a-1o-1n-9])([a-1o-1n-9])([a-1o-1n-9])/.1N(1O))d{r:u("1m"+I[1]+I[1]),g:u("1m"+I[2]+I[2]),b:u("1m"+I[3]+I[3])};A 6(I=/#([a-1o-1n-9]{2})([a-1o-1n-9]{2})([a-1o-1n-9]{2})/.1N(c))d{r:u("1m"+I[1]),g:u("1m"+I[2]),b:u("1m"+I[3])};A d 1l};f.3j.2f=v(s,P){o=f.3i(s);d 1c.3h(\'2F\',v(){1w f.T.2f(1c,o,P)})};f.T.2f=v(e,o,P){j z=1c;z.o=o;z.e=e;z.P=P||\'2e\';p=f.1x.2J(e);s=f.1x.2I();z.2E=v(){2H(z.1i);z.1i=2G;f.3g(z.e,\'2F\')};z.t=(1w 1M).1L();s.h=s.h>s.1k?(s.h-s.1k):s.h;s.w=s.w>s.1j?(s.w-s.1j):s.w;z.2d=p.y>s.h?s.h:p.y;z.2b=p.x>s.w?s.w:p.x;z.2c=s.t;z.2a=s.l;z.14=v(){j t=(1w 1M).1L();j n=t-z.t;j p=n/z.o.k;6(t>=z.o.k+z.t){z.2E();3f(v(){z.29(z.2d,z.2b)},13)}A{1b=f.T.1K(p,n,z.2c,(z.2d-z.2c),z.o.k,z.P);1a=f.T.1K(p,n,z.2a,(z.2b-z.2a),z.o.k,z.P);z.29(1b,1a)}};z.29=v(t,l){1J.3e(l,t)};z.1i=2D(v(){z.14()},13)};',62,287,'||||||if||el|||||return||jQuery||||var|duration||||||delta||||parseInt|function|||||else|es|firstNum|75|css|nm|document|oldStyle|result|position|5625|Math|currentStyle|wrs|body|transition|prop|type|documentElement|fx|left|top|now|margins|wb|hb||display|orig||step|px|visibility|old|cs|scrollTop|sl|st|this|wr|none|opacity|true|scrollLeft|timer|iw|ih|false|0x|F0|fA|0px|parentNode|style|oldVisibility|restoreStyle|options|toInteger|new|iUtil|parseFloat|PI|absolute|browser|hide|complete|curAnim|event|clientHeight|clientWidth|de|window|transitions|getTime|Date|exec|color|sin|pow|test|984375|625|9375|marginLeft|marginBottom|marginRight|marginTop|hidden|overflow|width|height|done|borderLeftWidth||borderTopWidth|self|oldPosition|scroll|startLeft|endLeft|startTop|endTop|original|ScrollTo|55|msie|oldFloat|sizes|relative|nodeName|lastNum|startTime|custom|cur|from|block|elem|innerHeight|innerWidth|scrollHeight|scrollWidth|offsetHeight|offsetWidth|while|offsetParent|offsetTop|offsetLeft|setInterval|clear|interfaceFX|null|clearInterval|getScroll|getPosition|rgb|br|elasticboth|elasticin|elasticout|bounceboth|bouncein|bounceout|easeboth|easeout|easein|insertBefore|999|100|alpha|filter|styleFloat|wid|10000|show|getMargins|getSize|fxCheckTag|apply|in|for|oldOverflow|to|max|opera|scrollTo|setTimeout|dequeue|queue|speed|fn|parseColor|html|cos|wrapper|listStyle|appendChild|cssFloat|fxWrapper|addClass|wrapEl|id|attr|div|ol|dl|ul|table|form|button|iframe|object|textarea|select|hr|input|img|createElement|random|w_|float|buildWrapper|removeChild|firstChild|destroyWrapper|meta|optgroup|option|frameset|frame|script|header|th|colgroup|col|tfoot|thead|caption||tbody|td|tr|Function|constructor|setAuto|oldOverlay|zoom|hasLayout|1px|curCSS|ActiveXObject|9999|400|clientY|pageY|clientX|pageX|getPointer|borderBottomWidth|borderRightWidth|getBorder|paddingLeft|paddingBottom|paddingRight|paddingTop|getPadding|getClient|toLowerCase|tagName|sy|sx|getPos'.split('|'),0,{}))

/* 
 * Tooltip compressed with http://dean.edwards.name/packer/
 * Original from http://boxover.swazz.org/
 * title="cssbody=[hoverdiv_body] cssheader=[hoverdiv_header] header=[כותרת] body=[תוכן ראשי]"
*/
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)d[e(c)]=k[c]||e(c);k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('6(2I 7.J!=\'3R\'){2S.J(\'3Q\',2a);7.J(\'3P\',1Y);7.J(\'29\',1B)}I{2S.K(\'3O\',2a,n);7.K(\'3N\',1Y,n);7.K(\'28\',1B,n)}l b=7.1e("1d");l h=7.1e("1d");l c=7.1e("1d");l 2D,F,16,15,E,D,3M,3L,H,G,1L,1K,1J,1I,m,C,B,2R,Q,R;2R=n;H=10;G=10;E=0;D=0;g 2a(){b.1c(h);b.1c(c);b.8.3K="3J";b.8.z=\'Y\';7.r.1c(b)}g 2s(){h.1q=\'<3I  8="3H-3G:3F"  3E="3D.3C">&2Q;&2Q;\'+h.1q;h.8.3B=\'3A\';h.8.V=\'2P\';h.8.2O=\'2N\';h.8.3z=\'1y 1x #1w\';h.8.2L=\'3\';h.8.2M=\'11\';h.8.2K=\'#3y\';h.8.2J=\'#3x\';h.8.1F=\'1E(P=1v)\';h.8.P=\'0.1v\'}g 2u(){c.8.3w=\'1y 1x #1w\';c.8.3v=\'1y 1x #1w\';c.8.3u=\'1y 1x #1w\';c.8.V=\'2P\';c.8.2O=\'2N\';c.8.2M=\'11\';c.8.2L=\'3\';c.8.2K=\'#3t\';c.8.2J=\'#3s\';c.8.1F=\'1E(P=1v)\';c.8.P=\'0.1v\'}g 2H(L){6(!L||2I(L)!=\'3r\')q n;6((L.1u(\'2G\')>-1)&&(L.1u(\'r\')>-1)&&(L.1u(\'[\')>-1)&&(L.1u(\'[\')>-1))q t;I q n}g 2q(4){6(2H(4.9)){4.21=f(\'2G\',4.9);4.1Z=f(\'r\',4.9);4.23=f(\'3q\',4.9);4.22=f(\'3p\',4.9);4.1g=(f(\'3o\',4.9)==\'1t\')?t:n;4.1V=o(f(\'3n\',4.9));4.1U=o(f(\'3m\',4.9));4.2o=o(f(\'3l\',4.9));4.2n=o(f(\'3k\',4.9));4.1S=(f(\'2F\',4.9)!=\'\')?o(f(\'2F\',4.9)):10;4.1T=(f(\'2E\',4.9)!=\'\')?o(f(\'2E\',4.9)):10;4.1W=(f(\'1W\',4.9)==\'1t\')?t:n;4.1m=(f(\'1m\',4.9)!=\'\')?f(\'1m\',4.9):0.3j;4.1a=(f(\'1a\',4.9)!=\'\')?o(f(\'1a\',4.9)):0;6(f(\'1j\',4.9)==\'1t\'){4.1j=t;7.1s?4.J(\'29\',1H):4.K(\'28\',1H,n);7.1s?4.J(\'3i\',1G):4.K(\'3h\',1G,n)}I{6(f(\'3g\',4.9)!=\'2C\'){7.1s?4.J(\'3f\',14):4.K(\'3e\',14,n)}6(f(\'3d\',4.9)==\'1t\'){7.1s?4.J(\'29\',14):4.K(\'28\',14,n)}}4.2k=f(\'2D\',4.9).3c()==\'2C\'?n:t;4.9=\'\';4.T=1}I 4.T=2}g f(27,2A){l 2B=3b 3a(\'([^a-39-Z]\'+27+\'|^\'+27+\')\\\\s*=\\\\s*\\\\[\\\\s*(((\\\\[\\\\[)|(\\\\]\\\\])|([^\\\\]\\\\[]))*)\\\\s*\\\\]\');l 26=2B.38(2A);l 37;6(26)q 26[2].2z(\'[[\',\'[\').2z(\']]\',\']\');I q\'\'}g 1l(j){l x=0;6(j.25)q j.25;l 1r=j;O(j){6((j.X)&&(!S(o(j.X.2y)))&&(x!=0))x+=o(j.X.2y);x+=j.36;j=j.2w}1r.25=x;q x}g 1k(j){l x=0;6(j.24)q j.24;l 1r=j;O(j){6((j.X)&&(!S(o(j.X.2x)))&&(x!=0))x+=o(j.X.2x);x+=j.35;j=j.2w}1r.24=x;q x}l 1p,1o;g 2p(){6(1o)b.2v(c);6(1p)b.2v(h);h=7.1e("1d");c=7.1e("1d");5.23?c.2t=5.23:2u();5.22?h.2t=5.22:2s();h.1q=5.21;c.1q=5.1Z;1p=n;1o=n;6(5.21!=\'\'){b.1c(h);1p=t}6(5.1Z!=\'\'){b.1c(c);1o=t}}l k,p,1Q,5,1X,R,Q,V,1n;l 34=n;g 17(){6(7.r&&(7.r.W!=0)){V=7.r.W;1n=7.r.2r}6(7.w&&(7.w.W!=0)&&(7.r.W+20>=7.w.W)){V=7.w.W;1n=7.w.2r}q[V,1n]}l v=y;g 1Y(e){e?m=e:m=1A;k=m.1i?m.1i:m.2g;6(!k.T){U=k;O((U.N)&&(!U.T)){2q(U);U=U.N}}6((k!=1Q)&&(!A(k,h))&&(!A(k,c))){6(!k.1b){p=k;O((p.T==2)&&(p.N))p=p.N;k.1b=p}p=k.1b;6(k.1b&&(k.1b.T==1)){1X=5;5=p;6(5!=1X){2p();6(!5.1j)6(5.1W){6(v!=y)1R(v);v=1D("2h("+5.1m+")",5.1a)}I{6(v!=y)1R(v);u=1;v=1D("b.8.z=\'12\';v=y;",5.1a)}6(5.1g){2f()}16=!S(5.1V)?1l(5)+5.1V:5.2o;15=!S(5.1U)?1k(5)+5.1U:5.2n;E=0;D=0;F=t;H=5.1T?5.1T:10;G=5.1S?5.1S:10}}I 6(!A(k,h)&&!A(k,c)&&(F)){6((!A(5,k))||(k.33!=\'32\')){5=y;6(v!=y)1R(v);1h();1f()}}1Q=k}I 6(((A(k,h)||A(k,c))&&(F))){R=0;Q=0;p=k;O(p){6(!S(o(p.19)))Q+=o(p.19);6(!S(o(p.18)))R+=o(p.18);p=p.N}6(5!=y){1L=1l(5)-R;1K=o(1l(5)+5.1O)-R;1J=1k(5)-Q;1I=o(1k(5)+5.1P)-Q;2i()}}6(F&&5){1M=7.w&&7.w.19?7.w.19:7.r.19;1N=7.w&&7.w.18?7.w.18:7.r.18;C=m.2m?m.2m-1N:m.31-7.r.30;B=m.2l?m.2l-1M:m.2Z-7.r.2Y;6((5)&&(5.2k)){B<-G?D=-B-G:D=0;C<-H?E=-C-H:E=0;B>(17()[1]-b.1P-G)?D=-B+17()[1]-b.1P-G:D=D;C>(17()[0]-c.1O-H)?E=-C-H+17()[0]-c.1O:E=E}b.8.2X=((16)||(16==0))?16:1N+C+H+E+"2j";b.8.2W=((15)||(15==0))?15:1M+B+G+D+"2j"}}g 2i(){6((C<1L)||(C>1K)||(B<1J)||(B>1I)){6(!5.1j)1h();6(5.1g){1f()}5=y}}g 14(e){e?m=e:m=1A;F=n;m.2V=t}g 1H(e){b.8.z=(b.8.z!=\'12\')?\'12\':\'Y\'}g 1G(e){b.8.z=\'Y\'}l u=0;l 2U=n;g 2h(13){v=y;u=0;b.8.z=\'12\';1C(13)}g 1C(13){u=u+13;u=(u>1)?1:u;b.8.1F=\'1E(P=\'+o(2T*u)+\')\';b.8.P=u;6(u<1)1D("1C("+13+")",20)}g 1h(){b.8.z=\'Y\'}g A(s,d){O(s){6(s==d)q t;s=s.N}q n}l 1z;g 1B(e){e?m=e:m=1A;1z=m.1i?m.1i:m.2g;6((!F)&&(!A(1z,b))){1h();6(5&&5.1g){1f()}F=t;5=y}}g 1f(){l M=7.2e("2d");2c(i=0;i<M.2b;i++){M[i].8.z=\'12\'}}g 2f(){l M=7.2e("2d");2c(i=0;i<M.2b;i++){M[i].8.z=\'Y\'}}',62,240,'||||curNode|CBE|if|document|style|title||oDv|dvBdy|||getParam|function|dvHdr||elem|CSE|var|evt|false|parseInt|iterElem|return|body||true|COL|ID|documentElement||null|visibility|isChild|mouseY|mouseX|lockY|lockX|boxMove|oy|ox|else|attachEvent|addEventListener|txt|elements|parentNode|while|opacity|totalScrollTop|totalScrollLeft|isNaN|hasbox|iElem|width|clientWidth|currentStyle|hidden||||visible|fs|pauseBox|fixposy|fixposx|SHW|scrollLeft|scrollTop|delay|boxItem|appendChild|div|createElement|showSelects|IEbugfix|fadeOut|target|requireclick|Top|Left|fadespeed|height|ab|ah|innerHTML|oElem|all|on|indexOf|85|A5CFE9|solid|1px|cSrc|event|checkMove|fadeIn2|setTimeout|alpha|filter|hideBox|showHideBox|boxBottom|boxTop|boxRight|boxLeft|bodyScrollTop|bodyScrollLet|offsetWidth|offsetHeight|LSE|clearTimeout|offY|offX|fixY|fixX|fade|LBE|moveMouse|boBDY||boHDR|boCSSHDR|boCSSBDY|calcTop|calcLeft|res|param|click|onclick|init|length|for|select|getElementsByTagName|hideSelects|srcElement|fadeIn|doCheck|px|windowLock|pageY|pageX|absY|absX|applyStyles|scanBO|clientHeight|defHdrStyle|className|defBdyStyle|removeChild|offsetParent|borderTopWidth|borderLeftWidth|replace|list|reg|off|windowlock|offsetx|offsety|header|checkElemBO|typeof|background|color|padding|fontSize|arial|fontFamily|150px|nbsp|boxOpen|window|100|stopfade|cancelBubble|top|left|clientTop|clientY|clientLeft|clientX|TABLE|tagName|ini|offsetTop|offsetLeft|returnvar|exec|zA|RegExp|new|toLowerCase|singleclickstop|dblclick|ondblclick|doubleclickstop|mouseover|onmouseover|04|fixedabsy|fixedabsx|fixedrely|fixedrelx|hideselects|cssheader|cssbody|string|FFFFFF|1B4966|borderRight|borderLeft|borderBottom|D5EBF9|4B7A98|border|bold|fontWeight|gif|info|src|middle|align|vertical|img|absolute|position|fixy|fixx|mousemove|load|onmousemove|onload|undefined'.split('|'),0,{}))
