// Paradigm Shift JavaScript Platform - Micro Version
// v2.0.0
//
// Date Created:  2000-09-01
// Last Modified: 2011-10-11
//
// Created by Mark Ormston of MeMSO
// (c) Copyright 2000 to 2011
// License: LGPLv3 (http://www.gnu.org/licenses/lgpl-3.0.html)
(function(Z,F,H){if(Z.PS)return;var n='PSJS-PreloadImages',m='PSJS-AddContentTable',f='PSJS-RightBottomDot',B='PSJS-Test-Region',J=/top|right|bottom|left|margin|padding|textIndent|fontSize|[Ww]idth|[Hh]eight|Spacing|Radius|Offset/,z=/[Cc]olor/,r=/top|bottom|[Hh]eight/,P=/^border(Top|Right|Bottom|Left)Width$/,y=/^[A-Z0-9_.%!#$&\'*+\/=?^`{|}~-]+@[A-Z0-9_%-]+(\.[A-Z0-9_%-]+)+$/i,k={Inner:0,Padding:1,Outer:2,Margins:3,Position:4},O=20,t=F.defaultView?F.defaultView.getComputedStyle:null,X=Object.prototype.toString,D=0,M={},N={},l={},V=[],a=[],d=[],I='',A=null,_=[],E=false,v='',C='',u={},s={'float':'cssFloat'},b={},x={load:1,resize:1,unload:1},L={select:'input',change:'input',submit:'form',reset:'form',error:'img',load:'img',abort:'img'},Q={},w,o,p,c=null,i=null,h=null;function NOP(){}if(Function.prototype.apply===H){Function.prototype.apply=function(object,parameters){var U,G,Y,K;object=object||Z;object.__APPLY_FUNC__=this;if(parameters!==H){Y=[];for(K=0;K<parameters.length;K++)Y[K]='parameters['+K+']';U='object.__APPLY_FUNC__('+Y.join(',')+');';}else {U='object.__APPLY_FUNC__();';}G=eval(U);delete object.__APPLY_FUNC__;return G;};}if(String.prototype.trim===H){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,'');};}w={TYPE_STRING:1,TYPE_INT:2,TYPE_FLOAT:3,TYPE_BOOLEAN:4,TYPE_STRINGDIRECT:103,IncludeRoot:'/includes/js/',WebRoot:'/',BlankImage:'/images/dot.gif',IP:'',PageLoaded:0,Debug:false,Includes:{PS:'2.0.0'},Cookies:{},GetQuery:{},ScrollX:0,ScrollY:0,ScrollBarWidth:32,ScrollBarHeight:32,WindowWidth:0,WindowHeight:0,MouseX:0,MouseY:0,MouseButton:0,MouseButtonCurrent:0,GSErrorPos:-1,UniqueCode:0,UA:{IE:0,NS:0,FF:0,WebKit:0,Safari:0,Chrome:0,Konqueror:0,Opera:0,Version:-1,VersionMinor:-1,DOM:0},RBDot:null,Head:(F.getElementsByTagName('head')[0]||F.documentElement),Body:null,ExecuteOnLoad:function(U){if(w.PageLoaded>=3)return;if(w.PageLoaded){w.Execute(U);return;}V.push(U);},ExecuteOnFullLoad:function(U){if(w.PageLoaded>=3)return;if(w.PageLoaded>=2){w.Execute(U);return;}a.push(U);},ExecuteOnUnLoad:function(U){if(w.PageLoaded>=3){w.Execute(U);return;}d.push(U);},Cast:function(U,G){var Y,K=typeof U;switch(G){case w.TYPE_INT:if(K=='number')return Math.round(U);if(K=='boolean')return U?1:0;if(w.IsString(U)){Y=parseInt(U,10);if(!isFinite(Y))Y=0;return Y;}return 0;case w.TYPE_FLOAT:if(K=='number')return U;if(K=='boolean')return U?1.0:0.0;if(w.IsString(U)){Y=parseFloat(U);if(!isFinite(Y))Y=0.0;return Y;}return 0.0;case w.TYPE_STRING:case w.TYPE_STRINGDIRECT:if(U===H)return '';if(K!='object')return (G==w.TYPE_STRING)?(''+U).trim():''+U;return '';case w.TYPE_BOOLEAN:return !!U;}return null;},Random:function(U){D=(D*0x01B19FA5+0x0F)&0x7FFFFFFF;return ((D>>16)*U)>>15;},GetNamedFlags:function(U,G,Y){var K,W;if(!Y)Y=0;if(!U)return Y;if(w.IsString(U))U=U.split(',');for(K=0;K<U.length;K++){if(W=G[U[K]]){if(w.IsArray(W)){Y&=~W[1];Y|=W[0];}else {Y|=W;}}}return Y;},GetUnitType:function(U,G){var Y;if(typeof U=='number')return [U,''];if(!w.IsString(U)||!(Y=U.match(/^((-|\+)?\d+(\.\d+)?)([\w%]*)$/)))return G?[0,'']:null;return [parseFloat(Y[1]),Y[4]];},Copy:function(U,G){var Y,K,W;if(!w.IsObject(U)||w.IsDOM(U)||w.IsFunction(U)||U===Z)return U;if(w.IsArray(U)){Y=[];W=U.length;for(K=0;K<W;K++)Y[K]=G?U[K]:w.Copy(U[K]);}else {Y={};for(K in U){if(!U.hasOwnProperty(K))continue;Y[K]=G?U[K]:w.Copy(U[K]);}}return Y;},DebugLog:function(U){throw new SyntaxError(w.StripHTML(U));},Extend:function(U,G,Y){var K;if(!w.IsObject(G))return U;for(K in G){if(!G.hasOwnProperty(K))continue;U[K]=Y?w.Copy(G[K]):G[K];}return U;},Execute:function(U,G){var Y,K;if(!U)return;if(w.IsArray(U)){Y=[];for(K=0;K<U.length;K++){Y.push(w.Execute(U[K],G));}}else if(w.IsFunction(U)){if(G===H){Y=U.apply(null);}else {if(!w.IsArray(G))G=[G];Y=U.apply(null,G);}}else if(w.IsString(U)&&U){Y=w.GlobalEval(U);}return Y;},AddExecute:function(U,G){if(!U)U=[G];else if(!w.IsArray(U))U=[U,G];else U.push(G);return U;},GlobalEval:function(U){var G=F.createElement('script');G.type='text/javascript';if(p.NoCreateTextNodeScript)G.text=U;else G.appendChild(F.createTextNode(U));w.Head.appendChild(G);w.Head.removeChild(G);},IsFunction:function(U){return typeof U=='function';},IsArray:function(U){return X.call(U)=='[object Array]';},IsObject:function(U){return (U&&!w.IsString(U)&&typeof U=='object');},IsString:function(U){return (typeof U=='string'||(typeof U=='object'&&X.call(U)=='[object String]'));},IsDOM:function(U){return (typeof U=='object'&&/^(\[object|function) HTML/.test(U.constructor.toString()));},IsDOMElement:function(U){return (w.IsDOM(U)&&U.nodeType==1);},IsWhiteSpace:function(U){if(!w.IsString(somestring)||somestring.length<1)return false;return (U.charCodeAt(0)<=32);},Repeat:function(U,G,Y){var K=Y,W=U.length,S;if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);if(!U)return '';Y=w.Cast(Y,w.TYPE_INT);if(G<=0&&Y<=0)return '';if(G>0){S=U;while(--G){S+=U;}return S;}S='';if(Y>10&&U.length<4){while(U.length<4){U+=U;}}while(K){if(K>=W){S+=U;K-=W;}else {S+=U.substr(0,K);K=0;}}return S;},PadLeft:function(U,G,Y){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);if(U.length>=G)return U;if(!w.IsString(Y))Y=w.Cast(Y,w.TYPE_STRING);if(!Y)Y=' ';return w.Repeat(Y,0,G-U.length)+U;},PadRight:function(U,G,Y){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);if(U.length>=G)return U;if(!w.IsString(Y))Y=w.Cast(Y,w.TYPE_STRING);if(!Y)Y=' ';return U+w.Repeat(Y,0,G-U.length);},ZeroPad:function(U,G){var Y;Y=(typeof U!='number')?w.Cast(U,w.TYPE_STRING):U.toString();if(!G)G=2;return w.PadLeft(Y,G,'0');},ByteHex:function(U,G){var Y=U.toString(16);if(G){G<<=1;if(Y.length>G)Y=Y.substr(0,G);else Y=w.ZeroPad(Y,G);}else if(Y.length&0x01){Y='0'+Y;}return Y.toUpperCase();},PathClean:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return U.replace(/%/g,'%25').replace(/ /g,'%20');},HTMLClean:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return U.replace(/&/g,'&amp;').replace(/"/g,'&quot;').replace(/'/g,'&#39;').replace(/</g,'&lt;').replace(/>/g,'&gt;');},PathHTMLClean:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return w.HTMLClean(U).replace(/%/g,'%25').replace(/ /g,'%20');},DeHTMLClean:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return U.replace(/&amp;/g,'&').replace(/&quote;/g,'"').replace(/&(apos|#39);/g,'\'').replace(/&lt/g,'<').replace(/&gt;/g,'>');},SafeHTMLClean:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return U.replace(/&/g,'&amp;').replace(/&amp;([#0-9A-Za-z]+;)/g,'&$1').replace(/"/g,'&quot;').replace(/'/g,'&#39;').replace(/</g,'&lt;').replace(/>/g,'&gt;');},JSClean:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return U.replace(/\\/g, '\\\\')   .replace(/\n/g,'\\n').replace(/\r/g,'\\r').replace(/'/g,'\\\'').replace(/"/g,'\\"');},JSONClean:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return U.replace(/\\/g, '\\\\')   .replace(/\n/g,'\\n').replace(/\r/g,'\\r').replace(/\f/g,'\\f').replace(/\x08/g,'\\b').replace(/\t/g,'\\t').replace(/"/g,'\\"');},HTMLJSClean:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return w.HTMLClean(w.JSClean(U));},Camelize:function(U){if(!w.IsString(U))U=w.Cast(U,w.TYPE_STRING);return U.replace(/[ .-]([^ .-]+)/g,function (G,Y){return Y.charAt(0).toUpperCase()+Y.substr(1);});},PreloadImages:function(U){if(w.PageLoaded>=2){w.PreloadImagesInner(U);return }if(I)I+=',';I+=U;},Create:function(U,G){if(w.IsString(G)){if(G.indexOf('position:')==-1)G='position: absolute;'+G;}else {G='position: absolute;';}return w.CreateInside(null,U,G);},CreateInside:function(U,G,Y){var K,W;if(!w.PageLoaded&&!p.CannotCreateUntilLoaded)return null;if(F.getElementById(G)){w.DebugLog('<p>Paradigm Shift Error:</p><p>Attempting to create an object with ID of \''+G+'\' when an object with that ID already exists!</p>');return null;}if(!(U=U?w.GSS(U):w.Body))return null;W=F.createElement('div');if(W){W.id=G;if(Y){if(p.CSSText)W.style.cssText=Y;else W.setAttribute('style',Y);}U.appendChild(W);}return W;},Destroy:function(U){var G,Y,K;U=w.GS(U);if(!(Y=U.length))return;for(K=0;K<Y;K++){G=U[K];if(G.parentNode)G.parentNode.removeChild(G);}},SetStyle:function(U,G,Y){var K,W,S,R,g,q,j,T;U=w.GS(U);if(!(K=U.length))return;if(arguments.length>2){W={};W[G]=Y;}else {W=G;}for(q in W){if(!W.hasOwnProperty(q))continue;j=W[q];T=q=w.Camelize(q);if(s[T])T=s[T];else if(u[T])T=C+T.charAt(0).toUpperCase()+T.substr(1);if(q=='opacity'){if(typeof j!='number')j=w.Cast(j,w.TYPE_FLOAT);if(j<0.0)j=0.0;else if(j>1.0)j=1.0;if(p.Filters){j=Math.round(j*100);for(R=0;R<K;R++){try{U[R].filters.alpha.opacity=j;}catch(g){U[R].style.filter+='alpha(opacity='+j+')';}U[R].filters.item('alpha').enabled=(j!=100);}continue;}for(R=0;R<K;R++){U[R].style[T]=j;}continue;}if(q=='clip'&&j=='auto'&&p.UseRectForNoClipping)j='rect(auto)';if(typeof j=='number'&&q!='zIndex'&&q!='zoom')j+='px';try{for(R=0;R<K;R++){U[R].style[T]=j;}}catch(g){}}},GetStyle:function(U,G,Y){var K,W='',S,R=false;if(typeof Y!='number'){if(Y=='NoCompute')R=true;Y=w.TYPE_STRING;}if(!(U=w.GSS(U)))return w.Cast(W,Y);K=G=w.Camelize(G);if(s[K])K=s[K];else if(u[K])K=C+K.charAt(0).toUpperCase()+K.substr(1);if(G=='opacity'){if(p.Filters){try{W=U.filters.alpha.opacity;}catch(S){W=100;}W=w.Cast(W,w.TYPE_INT)/100;}else if(t){W=t(U,null)[K];}return w.Cast(W,Y);}if(R)return w.Cast(t?U.style[K]:U.currentStyle[K],w.TYPE_STRING);if(t){W=t(U,null)[K];}else if(U.currentStyle){W=U.currentStyle[K];if(G=='zIndex'){W=parseInt(W,10);}else if(G=='float'){W=parseFloat(W);}else if(z.test(G)){W=GetColor(U,W);}else if(J.test(G)){W=GetRealSize(U,W);if(G=='outlineOffset')W=parseInt(W,10)+'px';else W+='px';}}function GetRealSize(U,g){var q,j,T,Zp,Fp,Hp;if(g=='0')return 0;q=w.GetUnitType(g);if(!q){if(g=='inherit'){if(U=U.parentNode)return GetRealSize(U,U.currentStyle[K]);return 0;}if(P.test(G)){if(g=='medium'||g=='thin'||g=='thick'){if(U.currentStyle[K.replace('Width','Style')]=='none')return 0;if(g=='thin')T=1;else if(g=='medium')T=3;else T=5;if(p.UseOldBorderTranslations)T++;return T;}}if((G=='lineHeight')&&g=='normal')g='1.2em';}else {j=q[0];q=q[1];if(j==0)return 0;if(q=='px')return j;if(G=='lineHeight'&&(q=='%'||!q)){if(q=='%')j/=100;g=j+'em';}}Zp=r.test(G)?'top':'left';Fp=U.style[Zp];Hp=U.runtimeStyle[Zp];U.runtimeStyle[Zp]=U.currentStyle[Zp];U.style[Zp]=g||0;T=U.style['pixel'+((Zp=='top')?'Top':'Left')];U.style[Zp]=Fp;U.runtimeStyle[Zp]=Hp;return T;}function GetColor(U,g){var q;if(g=='transparent')return g;if(g=='currentColor'&&G!='color')return w.GetStyle(U,'color');q=w.GetColorObject(g);if(!q)return 'rgb(0, 0, 0)';if(q.A!==H)return 'rgba('+q.R+', '+q.G+', '+q.B+', '+q.A+')';return 'rgb('+q.R+', '+q.G+', '+q.B+')';}return w.Cast(W,Y);},SetClass:function(U,G){var Y,K;U=w.GS(U);if(!(Y=U.length))return;for(K=0;K<Y;K++){U[K].className=G;}},GetClass:function(U){if(!(U=w.GSS(U)))return '';return U.className?U.className:'';},AddClass:function(U,G){var Y,K,W,S,R=G.split(' '),g;U=w.GS(U);if(!(Y=U.length))return;for(K=0;K<Y;K++){S=U[K];if(!S.className){S.className=G;continue;}g=' '+S.className+' ';for(W=0;W<R.length;W++){if(g.indexOf(' '+R[W]+' ')==-1)S.className+=' '+R[W];}}},RemoveClass:function(U,G){var Y,K,W,S,R=G.split(' '),g;U=w.GS(U);if(!(Y=U.length))return;for(K=0;K<Y;K++){S=U[K];if(!S.className)continue;g=' '+S.className+' ';for(W=0;W<R.length;W++){g=g.replace(' '+R[W]+' ',' ');}S.className=g.substr(1,g.length-1).trim();}},ToggleClass:function(U,G,Y){if(Y)w.AddClass(U,G);else w.RemoveClass(U,G);},SetAttribute:function(U,G,Y){var K,W,S,R;U=w.GS(U);if(!(K=U.length))return;if(arguments.length>2){R={};R[G]=Y;}else {R=G;}for(G in R){if(!R.hasOwnProperty(G))continue;Y=R[G];G=G.toLowerCase();Y=''+Y;if(G=='class'){w.SetClass(U,Y);continue;}for(W=0;W<K;W++){S=U[W];if(G=='style'&&p.CSSText)S.style.cssText=Y;else S.setAttribute(G,Y);}}},GetAttribute:function(U,G,Y){var K='';if(G=='class')return w.Cast(w.GetClass(U),Y);if(typeof Y!='number')Y=w.TYPE_STRING;if(!(U=w.GSS(U)))return w.Cast(K,Y);G=G.toLowerCase();if(G=='style'&&p.CSSText){if(U.style.cssText!==H)K=U.style.cssText;}else {curval=U.getAttribute(G);if(curval)K=curval;}return w.Cast(K,Y);},SetImage:function(U,G,Y,K,W){if(!Y)Y=0;if(!K)K=0;if(W===H)W=null;if(!(U=w.GSS(U)))return;if(Y||K){U.src=w.BlankImage;setTimeout((function(S,R,g,q,j){return function(){SetImageInner(S,R,g,q,j);};})(U,G,Y,K,W),1);}else {SetImageInner(U,G,Y,K,W);}function SetImageInner(U,G,Y,K,W){U.src=G;if(Y)U.width=Y;if(K)U.height=K;if(W!==null)U.alt=W;}},SetContent:function(U,G){var Y,K,W;U=w.GS(U);if(!(Y=U.length))return;if(p.DOMMemoryLeaks)w.ClearContent(U);for(K=0;K<Y;K++){W=U[K];W.innerHTML=G;}},AddContent:function(U,G,Y){var K=1,W,S,R,g,q,j,T,Zp,Fp,Hp;if(!U){U=[w.Body];}else {U=w.GS(U);if(!(K=U.length))return;}if(!Y)Y=0;else if(w.IsString(Y))Y=w.GetNamedFlags(Y,{End:[0,0x03],Start:[0x01,0x03],After:[0x02,0x03],Before:0x03});if(p.UseInsertAdjacentHTML){Zp=(Y&0x02)?((Y&0x01)?'BeforeBegin':'AfterEnd'):((Y&0x01)?'AfterBegin':'BeforeEnd');for(W=0;W<K;W++){g=U[W];try{g.insertAdjacentHTML(Zp,G);}catch(R){q=g.tagName.toLowerCase();if(q=='tbody'||q=='thead'||q=='tfoot'){j=F.createElement('div');w.Body.appendChild(j);j.innerHTML='<table id="'+m+'" style="display: none;">'+G+'<\/table>';T=w.GSS('#'+m);for(S=0;S<T.rows.length;S++){switch(Y&0x03){case 0x03:g.parentNode.insertBefore(T.rows[S].cloneNode(true),g.nextSibling);break;case 0x02:g.parentNode.insertBefore(T.rows[S].cloneNode(true),g);break;case 0x01:g.insertBefore(T.rows[S].cloneNode(true),g.firstChild);break;case 0x00:g.appendChild(T.rows[S].cloneNode(true));break;}}w.Body.removeChild(j);}}}return;}for(W=0;W<K;W++){g=U[W];Fp=g.ownerDocument.createRange();if(Y&0x02){if(Y&0x01){Fp.setStartBefore(g);Hp=Fp.createContextualFragment(G);g.parentNode.insertBefore(Hp,g);}else {Fp.setStartAfter(g);Hp=Fp.createContextualFragment(G);g.parentNode.insertBefore(Hp,g.nextSibling);}}else {Fp.selectNodeContents(g);Fp.collapse(true);Hp=Fp.createContextualFragment(G);if(Y&0x01)g.insertBefore(Hp,g.firstChild);else g.appendChild(Hp);}}},ClearContent:function(U){var G,Y,K;U=w.GS(U);if(!(G=U.length))return;for(Y=0;Y<G;Y++){K=U[Y];if(p.DOMMemoryLeaks)i(K,false);K.innerHTML='';}},SetVisible:function(U,G,Y,K){var W,S,R,g,q,j;U=w.GS(U);if(!(W=U.length))return;if(typeof Y!='number'||!Y)Y=0xFFFF;if(!w.IsString(K))K='';if(G===H)G=1;if(Y&0x01)S=G?(G==1?'inherit':'visible'):'hidden';if(Y&0x02){R=G?((!K||(p.RequireDisplayBlock&&K!='inline'))?'block':K):'none';}for(g=0;g<W;g++){q=U[g];if(Y&0x01)q.style.visibility=S;if(Y&0x02){if(G){if(w.GetStyle(q,'display')=='none')q.style.display=(!K&&q.PS_OldDisplay)?q.PS_OldDisplay:R;}else {j=w.GetStyle(q,'display');if(j!='none')q.PS_OldDisplay=j;q.style.display=R;}}}},GetVisible:function(U){if(!(U=w.GSS(U)))return 0;return (U.style.visibility=='hidden')?0:((U.style.display!='none')?1:0);},GetLeft:function(U,G){var Y=0,K,W,S;if(!(U=w.GSS(U)))return 0;if(typeof G!='number'&&(G=k[G])===H)G=2;if(G==4){Y=w.GetStyle(U,'left',w.TYPE_FLOAT);if(U.PS_Fixed)Y-=w.ScrollX;return Y;}if(U.getBoundingClientRect&&(U!=w.Body||!p.NoBoundingClientRectOnBody)){Y=U.getBoundingClientRect().left+w.ScrollX;if(p.UseDocBodyClient)Y-=w.Body.clientLeft;else if(p.UseClientLeftTop)Y-=F.documentElement.clientLeft;if(t){W=t(U,null);if(G<1)Y+=parseFloat(W['paddingLeft']);if(G<2)Y+=parseFloat(W['borderLeftWidth']);if(G>=3)Y-=parseFloat(W['marginLeft']);}else {if(G<1)Y+=w.GetStyle(U,'paddingLeft',w.TYPE_INT);if(G<2)Y+=w.GetStyle(U,'borderLeftWidth',w.TYPE_INT);if(G>=3)Y-=w.GetStyle(U,'marginLeft',w.TYPE_INT);}}else if(t){Y=U.offsetLeft;W=t(U,null);if(G<1)Y+=parseFloat(W['paddingLeft']);if(G<2)Y+=parseFloat(W['borderLeftWidth']);if(G>=3)Y-=parseFloat(W['marginLeft']);if(p.AdjustByFixed&&w.GetStyle(U,'position')=='fixed')Y+=w.ScrollX;K=U;while((K=K.offsetParent)&&(K!=w.Body||!p.NoAdjustByBody)){Y+=K.offsetLeft;if(!p.NoAdjustByScroll&&(K!=w.Body||!p.NoAdjustByBodyScroll))Y-=K.scrollLeft;if(!p.NoAdjustByBorder)Y+=parseFloat(t(K,null)['borderLeftWidth']);if(p.AdjustByFixed&&w.GetStyle(K,'position')=='fixed')Y+=w.ScrollX;}}return Y;},GetTop:function(U,G){var Y=0,K,W,S;if(!(U=w.GSS(U)))return 0;if(typeof G!='number'&&(G=k[G])===H)G=2;if(G==4){Y=w.GetStyle(U,'top',w.TYPE_FLOAT);if(U.PS_Fixed)Y-=w.ScrollY;return Y;}if(U.getBoundingClientRect&&(U!=w.Body||!p.NoBoundingClientRectOnBody)){Y=U.getBoundingClientRect().top+w.ScrollY;if(p.UseDocBodyClient)Y-=w.Body.clientTop;else if(p.UseClientLeftTop)Y-=F.documentElement.clientTop;if(t){W=t(U,null);if(G<1)Y+=parseFloat(W['paddingTop']);if(G<2)Y+=parseFloat(W['borderTopWidth']);if(G>=3)Y-=parseFloat(W['marginTop']);}else {if(G<1)Y+=w.GetStyle(U,'paddingTop',w.TYPE_INT);if(G<2)Y+=w.GetStyle(U,'borderTopWidth',w.TYPE_INT);if(G>=3)Y-=w.GetStyle(U,'marginTop',w.TYPE_INT);}}else if(t){Y=U.offsetTop;W=t(U,null);if(G<1)Y+=parseFloat(W['paddingTop']);if(G<2)Y+=parseFloat(W['borderTopWidth']);if(G>=3)Y-=parseFloat(W['marginTop']);if(p.AdjustByFixed&&w.GetStyle(U,'position')=='fixed')Y+=w.ScrollY;K=U;while((K=K.offsetParent)&&(K!=w.Body||!p.NoAdjustByBody)){Y+=K.offsetTop;if(!p.NoAdjustByScroll&&(K!=w.Body||p.NoAdjustByBodyScroll))Y-=K.scrollTop;if(!p.NoAdjustByBorder)Y+=parseFloat(t(K,null)['borderTopWidth']);if(p.AdjustByFixed&&w.GetStyle(K,'position')=='fixed')Y+=w.ScrollY;}}return Y;},Move:function(U,G,Y){var K,W,S,R,g;U=w.GS(U);if(!(K=U.length))return;for(W=0;W<K;W++){S=U[W];R=G;g=Y;if(S.PS_Fixed){S.PS_Fixed.Flags&=~0x03;S.PS_Fixed.X=R;S.PS_Fixed.Y=g;R+=w.ScrollX;g+=w.ScrollY;}S.style.left=R+'px';S.style.top=g+'px';}},SetLeft:function(U,G){var Y,K,W,S;U=w.GS(U);if(!(Y=U.length))return;for(K=0;K<Y;K++){W=U[K];S=G;if(W.PS_Fixed){W.PS_Fixed.Flags&=~0x01;W.PS_Fixed.X=S;S+=w.ScrollX;}W.style.left=S+'px';}},SetTop:function(U,G){var Y,K,W,S;U=w.GS(U);if(!(Y=U.length))return;for(K=0;K<Y;K++){W=U[K];S=G;if(W.PS_Fixed){W.PS_Fixed.Flags&=~0x02;W.PS_Fixed.Y=S;S+=w.ScrollY;}W.style.top=S+'px';}},GetWidth:function(U,G){var Y=0;if(!(U=w.GSS(U)))return 0;if(typeof G!='number'&&(G=k[G])===H)G=2;if(G==4)G=0;Y=w.Cast(U.offsetWidth||U.style.pixelWidth||U.style.width,w.TYPE_FLOAT);if(!G)Y-=w.GetStyle(U,'paddingLeft',w.TYPE_FLOAT)+w.GetStyle(U,'paddingRight',w.TYPE_FLOAT);if(G<2)Y-=w.GetStyle(U,'borderLeftWidth',w.TYPE_FLOAT)+w.GetStyle(U,'borderRightWidth',w.TYPE_FLOAT);if(G>=3)Y+=w.GetStyle(U,'marginLeft',w.TYPE_FLOAT)+w.GetStyle(U,'marginRight',w.TYPE_FLOAT);return Y;},GetHeight:function(U,G){var Y=0;if(!(U=w.GSS(U)))return 0;if(typeof G!='number'&&(G=k[G])===H)G=2;if(G==4)G=0;Y=w.Cast(U.offsetHeight||U.style.pixelHeight||U.style.height,w.TYPE_FLOAT);if(!G)Y-=w.GetStyle(U,'paddingTop',w.TYPE_FLOAT)+w.GetStyle(U,'paddingBottom',w.TYPE_FLOAT);if(G<2)Y-=w.GetStyle(U,'borderTopWidth',w.TYPE_FLOAT)+w.GetStyle(U,'borderBottomWidth',w.TYPE_FLOAT);if(G>=3)Y+=w.GetStyle(U,'marginTop',w.TYPE_FLOAT)+w.GetStyle(U,'marginBottom',w.TYPE_FLOAT);return Y;},SetSize:function(U,G,Y){var K,W,S;U=w.GS(U);if(!(K=U.length))return;for(W=0;W<K;W++){S=U[W];if(p.UsePixelPosition){S.style.pixelWidth=G;S.style.pixelHeight=Y;}else {S.style.width=G+'px';S.style.height=Y+'px';}}},SetWidth:function(U,G){var Y,K;U=w.GS(U);if(!(Y=U.length))return;for(K=0;K<Y;K++){if(p.UsePixelPosition)U[K].style.pixelWidth=G;else U[K].style.width=G+'px';}},SetHeight:function(U,G){var Y,K;U=w.GS(U);if(!(Y=U.length))return;for(K=0;K<Y;K++){if(p.UsePixelPosition)U[K].style.pixelHeight=G;else U[K].style.height=G+'px';}},GetBoxData:function(U,G){if(!(U=w.GSS(U)))return null;if(typeof G!='number'&&(G=k[G])===H)G=2;if(G==4)G=0;return {X:w.GetLeft(U,G),Y:w.GetTop(U,G),Width:w.GetWidth(U,G),Height:w.GetHeight(U,G)};},GetRelativeParent:function(U){if(!(U=w.GSS(U)))return null;while((U=U.parentNode)&&U!=w.Body){if(w.GetStyle(U,'position')!='static')return U;}return null;},SetClip:function(U,G,Y,K,W){var S,R,g;U=w.GS(U);if(!(S=U.length))return;g='rect('+G+'px '+Y+'px '+K+'px '+W+'px)';for(R=0;R<S;R++)U[R].style.clip=g;},RemoveClip:function(U){w.SetStyle(U,'clip','auto');},GetLayeredHTML:function(U,G,Y){var K=0,W=0,S=0,R,g,q,j,T,Zp;if(!w.IsObject(Y))Y={};g=w.IsString(Y.Flags)?w.GetNamedFlags(Y.Flags,{End:0x01,Stop:0x01,Start:[0,0x01],StartStop:0x02,ChopIDs:0x04,ChopClasses:0x08}):w.Cast(Y.Flags,w.TYPE_INT);if(U){if(w.IsString(U))U=U.split(',');K=U.length;}if(G){if(w.IsString(G))G=G.split(',');W=G.length;}R=Y.Tag||'div';if(g&0x08&&W>K)W=K;else if(g&0x04&&W<K)K=W;S=Math.max(Math.max(K,W),1);q=(g&0x03)?(S-K):0;j=q+K;if(g&0x02)q++;Zp={PreHTML:'',PostHTML:''};if(!S)return Zp;for(T=0;T<S;T++){Zp.PreHTML+='<'+R;if(!T&&(g&0x02))Zp.PreHTML+=' id="'+w.HTMLClean(U[0])+'"';else if(T>=q&&T<j)Zp.PreHTML+=' id="'+w.HTMLClean(U[T-q+((g&0x02)?1:0)])+'"';if(T<W)Zp.PreHTML+=' class="'+w.HTMLClean(G[T])+'"';if(!T&&Y.OuterAttributes)Zp.PreHTML+=' '+Y.OuterAttributes;if(T==S-1&&Y.InnerAttributes)Zp.PreHTML+=' '+Y.InnerAttributes;Zp.PreHTML+='>';Zp.PostHTML+='</'+R+'>';}return Zp;},PrepareLayeredClass:function(U,G){var Y;G=w.Cast(G,w.TYPE_INT);if(w.IsString(U))U=U.split(',');else if(!w.IsArray(U))U=[];if(U.length<G){for(Y=U.length;Y<G;Y++){U[Y]='';}}return U;},GetSingleSelector:function(U,G){var Y;if(!U)return null;if(U.nodeType||U===Z)return U;Y=w.GS(U,G);return Y.length?Y[0]:null;},GetSelector:function(U,G){var Y;if(w.IsArray(U))return U;if(U.nodeType)return [U];if(!w.IsString(U)||U.charAt(0)!='#')return [];if(!G)G=F;if(Y=G.getElementById(U.substr(1)))return [Y];return [];},GetWindowSize:function(){w.WindowWidth=Z.innerWidth||F.documentElement.clientWidth||w.Body.clientWidth;w.WindowHeight=Z.innerHeight||F.documentElement.clientHeight||w.Body.clientHeight;},GetWindowScroll:function(){w.ScrollX=Z.pageXOffset||F.documentElement.scrollLeft||w.Body.scrollLeft;w.ScrollY=Z.pageYOffset||F.documentElement.scrollTop||w.Body.scrollTop;},EventLoad:function(){var U,G=V,Y,K,W;if(w.PageLoaded)return;w.PageLoaded=1;w.Body=F.body||F.documentElement.getElementsByTagName('body')[0]||F.documentElement;Y=F.cookie.split(';');for(U=0;U<Y.length;U++){K=Y[U].split('=');if(K.length>1)W=unescape(K[1].trim());else W='';w.Cookies[K[0].trim()]=W;}w.GetWindowScroll();w.GetWindowSize();h();o.Initialize();w.RBDot=w.Create(f,'display: block; visibility: hidden; right: 0; bottom: 0; width: 1px; height: 1px;');for(U=0;U<G.length;U++){w.Execute(G[U]);}V=null;if(p.DOMContentLoaded)o.Remove(null,'DOMContentLoaded',w.EventLoad);},EventFullLoad:function(){var U,G=a;if(!w.PageLoaded)w.EventLoad();if(w.PageLoaded>=2)return;w.PageLoaded=2;for(U=0;U<G.length;U++){w.Execute(G[U]);}a=null;if(I){w.PreloadImagesInner(I);I='';}},PreloadImagesInner:function(U){var G='',Y=U.split(','),K;if(!A)A=[w.Create(n,'left: -10000px; top: -10000px; width: 1px; height: 1px; overflow: hidden;')];for(K=0;K<Y.length;K++){G+='<p><img src="'+w.PathHTMLClean(Y[K])+'" width="1" height="1" alt="" /><\/p>';}w.AddContent(A,G);}};w.Event={Initialize:function(){var U={mousemove:function(G){var Y=o.Translate(G);w.MouseX=Y.MouseX;w.MouseY=Y.MouseY;return true;},mousedown:function(G){var Y=o.Translate(G);w.MouseButton|=Y.MouseButton;w.MouseButtonCurrent=Y.MouseButton;return true;},mouseup:function(G){var Y=o.Translate(G);w.MouseButton&=~Y.MouseButton;w.MouseButtonCurrent=Y.MouseButton;return true;},scroll:function(G){var Y,K;w.GetWindowScroll();if(p.NoFixed&&_.length){for(Y=0;Y<_.length;Y++){K=_[Y];w['Set'+((K.PS_Fixed.Flags&0x01)?'Right':'Left')](K,K.PS_Fixed.X);w['Set'+((K.PS_Fixed.Flags&0x02)?'Bottom':'Top')](K,K.PS_Fixed.Y);}K=null;}return true;},resize:function(G){w.GetWindowScroll();w.GetWindowSize();return true;}};if(p.Mutations){U.DOMNodeInserted=U.DOMNodeRemoved=function(G){G=G||Z.event;with(G.target){if(nodeType!=2&&parentNode)parentNode.PS_cnl++;}return o.NoPropagation(G);};}o.Add(null,U);},Add:function(U,G,Y){var K,W,S,R,g,q,j,T;if(U===F||U===Z||!U){U=[F];}else {U=w.GS(U);}if(!(g=U.length))return;if(arguments.length>2){K={};K[G]=Y;}else {K=G;}for(G in K){if(!K.hasOwnProperty(G))continue;Y=K[G];if(G.substr(0,2)=='on')G=G.substr(2);G=b[G]||G;if(!w.IsFunction(Y))continue;j=Y;if((G=='mouseleave'||G=='mouseenter')&&!p.MouseEnterLeave){j=SmartMOFunc(Y);G=(G=='mouseenter')?'mouseover':'mouseout';}for(W=0;W<g;W++){S=U[W];if(S===F&&((p.EventsAsAttr&&Z['on'+G]!==H)||x[G]))S=Z;if(p.UseEventHandler){R=(S!==Z)?S:F;if(!R.PS_Events)R.PS_Events={};if(!R.PS_Events[G]){R.PS_Events[G]=[];q=MakeThisEvent(S);if(p.EventsAsAttr){S['on'+G]=(w.IsFunction(S['on'+G]))?TwoFunc(S['on'+G],q):q;}else {R['PS_e_'+G]=q;S.attachEvent('on'+G,q);}}R.PS_Events[G].push(j);continue;}S.addEventListener(G,j,false);}}S=R=null;function SmartMOFunc(j){return function(Zp){if(w.SmartMO(Zp,this))j.call(this,Zp);};}function TwoFunc(q,j){return function(Zp){q(Zp);j(Zp);};}function MakeThisEvent(Zp){return function(Fp){c.call(Zp,Fp);};}},Remove:function(U,G,Y){var K,W,S,R,g=true;U=(!U)?[F]:w.GS(U);if(!(R=U.length))return true;if(b[G])G=b[G];if((G=='mouseleave'||G=='mouseenter')&&!p.MouseEnterLeave)return false;for(K=0;K<R;K++){W=U[K];if(W===F){if(p.EventsAsAttr)W=(Z['on'+G]!==H)?Z:F;else if(x[G])W=Z;}if(p.UseEventHandler){if(W.PS_Events&&(S=W.PS_Events[G])){R=S.length;for(K=0;K<R;K++){if(S[K]==Y){S.splice(K,1);if(!S.length){if(!p.EventsAsAttr){W.detachEvent('on'+G,W['PS_e_'+G]);delete W.PS_Events[G];}}break;}}}continue;}W.removeEventListener(G,Y,false);}return g;},NoDefault:function(U,G){U=U||Z.event;if(!U)return false;if(G)o.NoPropagation(U);if(U.preventDefault)U.preventDefault();U.cancel=true;U.returnValue=false;return false;},NoPropagation:function(U){U=U||Z.event;if(!U)return false;if(U.stopPropagation)U.stopPropagation();else if(U.preventBubble)U.preventBubble();U.cancelBubble=true;return false;},Supported:function(U){var G=false,Y,K;if(Q[U]!==H)return Q[U];U=U.toLowerCase();K='on'+U;if(x[U])G=(K in Z);if(!G){Y=F.createElement(L[U]||'div');if(!(G=(K in Y))){Y.setAttribute(K,'return;');if(!(G=(typeof Y[K]=='function'))&&Z.Event){G=(U.toUpperCase() in Z.Event);}}Y=null;}Q[U]=G;return G;},Translate:function(U){var G={},Y,K;U=U||Z.event;Y=U.type;G.Target=U.target?U.target:(U.srcElement?U.srcElement:F);G.LastTarget=(U.relatedTarget||U.fromElement)?(U.relatedtarget||((U.fromElement==G.Target)?U.toElement:U.fromElement)):F;if(G.Target.nodeType!=1)G.Target=G.Target.parentNode;if(G.LastTarget.nodeType!=1)G.LastTarget=G.LastTarget.parentNode;if(Y.substr(0,3)=='key'){G.KeyCode=U.keyCode;if(Y=='keypress')U.KeyChar=U.charCode?String.fromCharCode(U.charCode):'';}else if(Y.substr(0,5)=='mouse'||Y=='click'){if(Y=='mousewheel'){G.MouseWheel=event.detail?((event.detail>0)?1:-1):((event.wheelDelta>0)?1:-1);}else {if(Y!='click'){if(p.UseClientLeftTop){G.MouseX=U.clientX-F.documentElement.clientLeft;G.MouseY=U.clientY-F.documentElement.clientTop;if(p.UseDocBodyClient){G.MouseX-=w.Body.clientLeft;G.MouseY-=w.Body.clientTop;}}else {G.MouseX=U.pageX;G.MouseY=U.pageY;}if(p.MouseAddScroll){G.MouseX+=w.ScrollX;G.MouseY+=w.ScrollY;}}if(Y=='mousedown'||Y=='mouseup'||Y=='click'){if(U.button){G.MouseButton=U.button&0x07;}else {K=U.which;G.MouseButton=(K==2)?0x04:((K==3)?0x02:((!K||K==1)?0x01:0));}}}}else if(Y.substr(0,5)=='touch'){if(!U.touches||!(K=U.touches[0])){G.MouseX=G.MouseY=0;}else {G.MouseX=K.pageX;G.MouseY=K.pageY;}}return G;}};o=w.Event;p=w.UA;w.NoDefault=o.NoDefault;w.NoPropagation=o.NoPropagation;w.GSS=w.GetSingleSelector;w.GS=w.GetSelector;w.SetPosition=w.Move;Z.PS=w;(function(){var U,G,Y,K,W;U=navigator.userAgent.toLowerCase();p.Version=parseInt(navigator.appVersion,10);p.VersionMinor=-1;if((Y=U.indexOf('opera'))!=-1){K=U.indexOf('version/');if(K>=0)Y=K+8;else Y+=6;p.Opera=p.Version=parseInt(U.substr(Y,2),10);Y=U.indexOf('.',Y);if(Y!=1)p.VersionMinor=parseInt(U.substr(Y+1,2),10);}else if((Y=U.indexOf('msie'))!=-1){if(p.Version>=4)p.Version=parseInt(U.substr(Y+5,2),10);p.IE=p.Version;}else if((Y=U.indexOf('webkit/'))!=-1){U=U.substr(Y+7);K=parseInt(U,10);p.Version=p.WebKit=K;if((Y=U.indexOf('chrome'))!=-1){p.Chrome=p.Version=parseInt(U.substr(Y+7,2),10);Y=U.indexOf('.',Y);if(Y!=1)p.VersionMinor=parseInt(U.substr(Y+1,2),10);}else if(U.indexOf('safari')!=-1){W=[48,0,8,73,0,9,85,1,0,100,1,1,125,1,2,312,1,3,412,2,0,522,3,0,525,3,1,526,4,0,99999];for(Y=3;Y<W.length;Y+=3){if(K<W[Y]){p.Version=W[Y-2];p.VersionMinor=W[Y-1];break;}}p.Safari=p.Version;}}else if((Y=U.indexOf('firefox'))!=-1){p.FF=p.Version=parseInt(U.substr(Y+8,2),10);Y=U.indexOf('.',Y);if(Y!=1)p.VersionMinor=parseInt(U.substr(Y+1,2),10);p.Gecko=p.Moz=true;}else if((Y=U.indexOf('konqueror'))!=-1){p.Konqueror=p.Version=parseInt(U.substr(Y+10,2),10);Y=U.indexOf('.',Y);if(Y!=1)p.VersionMinor=parseInt(U.substr(Y+1,2),10);}else if((Y=U.indexOf('netscape'))!=-1){p.NS=p.Version=parseInt(U.substr(Y+9,2),10);if(p.Version>=5)p.Gecko=p.Moz=true;}else if(U.indexOf('gecko')!=-1){p.Gecko=p.Moz=true;}else if(U.indexOf('mozilla')!=-1){p.Moz=true;}else {p.Unknown=true;p.Version=-1;}U=navigator.platform.toLowerCase();p.OSWin=(U.indexOf('win')!=-1);p.OSMac=(U.indexOf('mac')!=-1);if(F.getElementById){p.DOM=1;if(F.implementation){if(F.implementation.hasFeature('Core','3.0'))p.DOM=3;else if(F.implementation.hasFeature('Core','2.0')||p.IE>=8)p.DOM=2;}}p.Quirks=(F.compatMode===H||!/CSS.Compat/.test(F.compatMode));p.Mutations=(p.DOM>=2&&!p.Konqueror&&(F.implementation.hasFeature('MutationEvents','2.0')||p.FF>=2));p.ElementChild=(F.documentElement.childElementCount!==H);p.NoSortDupes=true;[0,0].sort(function(){p.NoSortDupes=false;return 0;});p.QuerySelector=(F.querySelectorAll!==H&&((!p.IE||p.IE>=8)&&(!p.Safari||p.Safari>3)));p.GetByName=(F.getElementsByName&&(!p.IE||p.IE>=8)&&!p.Opera);p.RGBA=(p.FF>=3||p.Opera>=10||p.WebKit>=525);p.DOMContentLoaded=(!p.IE);p.UseEventHandler=p.EventsAsAttr=(!F.addEventListener&&!F.attachEvent);p.SendAsBinary=!!(XMLHttpRequest&&XMLHttpRequest.prototype.sendAsBinary);if(p.IE){p.MouseEnterLeave=p.Filters=p.BaseIgnoredOnRedirect=p.CloseWithSelf=p.CannotCreateUntilLoaded=p.UseInsertAdjacentHTML=p.RequireDisplayBlock=p.UseClientLeftTop=p.MouseAddScroll=p.UseIEXMLHTTP=p.UseOnReadyStateChange=p.NoCreateTextNodeScript=p.DOMMemoryLeaks=p.UseEventHandler=p.CSSText=true;x.scroll=1;if(p.IE<8)p.UseOldBorderTranslations=true;if(p.IE<8||p.Quirks)p.UseRectForNoClipping=true;if(p.Quirks){p.SizeIsOuter=p.UseDocBodyClient=p.NoFixed=true;}if(p.IE>=9){v='-ms-';C='MS';p.BorderRadius=true;p.Transforms=true;u.transform=u.transformOrigin=1;}s['float']='styleFloat';}if(p.Opera){p.NoAdjustByScroll=p.NoAdjustByBorder=p.UsePixelPosition=p.NoAdjustByBody=p.ScrollTopMaxUseOffset=p.MouseMoveOnScroll=true;x.scroll=1;v='-o-';C='O';if(p.Opera>=10){p.BorderRadius=true;if(p.Opera>10||p.VersionMinor>=5){p.Transforms=true;u.transform=u.transformOrigin=1;}}}if(p.WebKit){p.UseWindowScrollTo=p.NoAdjustByBodyScroll=true;v='-webkit-';C='Webkit';if(p.WebKit>=522){p.BorderRadius=true;u.borderRadius=1;if(p.WebKit>=525){p.Transforms=true;u.transform=u.transformOrigin=1;}}}if(p.Konqueror){p.NoAdjustByScroll=p.AdjustByFixed=true;v='-khtml-';C='KHTML';u.opacity=1;x.scroll=1;}if(p.Moz){p.NoBoundingClientRectOnBody=p.NoAdjustByBody=true;v='-moz-';C='Moz';if(p.FF<3)u.opacity=1;}if(p.FF){b.mousewheel='DOMMouseScroll';if(p.FF>=3){p.BorderRadius=p.MOZBorderRadius=true;u.borderRadius=1;if(p.FF>3||(p.FF==3&&p.VersionMinor>=5)){p.Transforms=true;u.transform=u.transformOrigin=1;}}}})();c=function(U){var G,Y,K,W,S;U=U||Z.event;G=(this===Z)?F:this;if(G.PS_Events&&G.PS_Events[U.type]){G=w.Copy(G.PS_Events[U.type]);K=G.length;for(W=0;W<K;W++){Y=G[W];S=Y.call(this,U);if(S===false)return false;}}return true;};if(p.DOMMemoryLeaks){i=function(U,G){var Y,K,W,S;if(U.nodeType!==1)return;if(G){if((Y=U.PS_Events)&&U.detachEvent){for(K in Y){U.detachEvent('on'+K,U['PS_e_'+K]);}}}if(G){if(Y=U.attributes){for(K=Y.length-1;K>=0;K--){if(!w.IsObject(Y[K]))continue;S=Y[K].name;if(S.substr(0,3)=='PS_'||typeof U[S]=='function')U[S]=null;}}}if(Y=U.childNodes){W=Y.length;for(K=0;K<W;K++){i(Y[K],true);}}};}h=function(){};(function(){var U,G,Y,K;Y=(new Date()).getTime()%0x7FFFFFFF;D=0;for(G=0;G<31;G++){if(Y&(1<<G))D|=1<<(30-G);}if(F.readyState=='complete'){w.EventFullLoad();}else {if(p.DOMContentLoaded){o.Add(null,'DOMContentLoaded',w.EventLoad);}else if(p.IE){if(!Z.frameElement){IELoadEmu();}else {F.onreadystatechange=function(){if(F.readyState=='complete'){F.onreadystatechange=null;w.EventLoad();}};}}o.Add(null,'load',w.EventFullLoad);}o.Add(null,'unload',function(){var G,W=d;if(!w.PageLoaded||w.PageLoaded>=3)return;w.PageLoaded=3;for(G=0;G<W.length;G++){w.Execute(W[G]);}d=null;});function IELoadEmu(){try{F.documentElement.doScroll('left');}catch(e){setTimeout(IELoadEmu,1);return;}w.EventLoad();}})();})(window,document);
// realZOOM
// Version 2.0.11
//
// Date Created:  2002-03-01 - appx
// Last Modified: 2011-07-04
//
// Requires: Paradigm Shift v2+
//
// Created by Mark Ormston of MeMSO and A Far Site Better
// (c) Copyright 2002 to 2011
// License: realZOOM is licensed by site. Contact A Far Site Better for details: http://www.afarsitebetter.com
// U.S. Patent 7,774,712
var Zyxes = '$ju/&t|vk&t!;l|nvos%!k nv#C:V0*}xd+}v|t{ony9st#po(L/78)~w\"0 !vttwn%nr|nz;}P8::\"# wqvzxr#<o|&xxR92?)!!xwJrz*%|**uxMEC<EOy%!u\'t|+}$#(|r#s=GEC,{\'\"m#s~#w(8s}+*J@=;1\"%#n)9v\' &uu.y|QGC*,H{y%{~}$%r z }z[j;5(*#o6(!\'&zy$P\"(WC>=7)\"(v4)\"-E~~\"\"/{\"XDH2**! W!-)\'&t&!}\"\"YLA<M\",|9)#-&#!\"1w%Ky/$&.z56TPG8-&1?/0..%##&}4}!+}4G|5%66TTL30,-35Q$,.$%}2&1<[UM46R%#.3\"z9\'($(0+ek@Q=4/\'%/+\'!7(68T\'/(cHBS>,4.#0,-G/,2(+*7+$9\'9=[[s6755\")8) ;(3\'(:W#/:.87gWLB3649X!+</?.:50/+;-5F\'OWC:5-+51-\'=.<>Z-;02:&AC`[SD92=K)6254+538/4,>7nt|=;;q,641604@L^h2>:.2-752715A59U75BHhU]H6>8-60;X1:69@585;5@HlXak5A=150:85:48D8<X:8EJ7,qaVL=@>)?\\/<>=61IA19B7F3=]fe_O?9C24=7;?5@]>D9MKhi`GD@A3GIe8J=FI2MC1Io\\\\ZUf;E5RB<F>8;8<K=?kj`^eN=ID/RCFD=Lo3@MH8Bx_XeOGG>=t>JF>B9?D8OD<Lof\"\\VIKD0ACFKC;SK},]WJLE1BDGLD<TM~-^XKMF2LECFBI=<GvpoiYICM<CGHFFCDf9Y{pgOPMD>HMSJIxrqk[KEO>EOQRDQ\"1b\\OQJ6KI@IIIGAZdF[XLButmTQMN@BPj@PKKGMGQSKDKkt~HTPDHCMKHMGKW>X}R#tr[JVQ<MJKLISmC[GVZU%uynHZSA_pKVnq^SJX_8 ]OMPwTw7<GPoa9mYLTb{L%9x.MNTVMJ[vSSkKE8:3}s{pztzzi*!A^j6$qy> {s.\'s|S~}wG%szV!yyw6!~>nf)~u$,|qV&|xX/)=^\\\\3QQTK=_aRX-}Y\\Z|ET`[0\\LUS0b~Jc)_aR^{B_[\\8UVxK4QUX!aeU]y8YP^~PZYg(Vi]V~7_Z^`tT]lY)Oj`NgXa`s!/_Veu`%_Yt|Yy#d)Fsrp~refcZTkccZc#L^Zn[PtqopadbMu&[e_eTT^^T`orwik\'ZXdZ]\\cdQ_Yn`Ty5otgibNhYZg^eYXc\"Tduwwjkh_Yphh_h(Qc_qi]&vo#xtibm{kljja__bYefi`fe&hzxsbniTwhki^oZdltnYra_t#yy~$p\"U?.?DN\' zmcrlv.0~hg$pqne_dhf`q*]jtffm,{bg%!(l4j`jiog_lu7S,HTM/J{+-~nhraclfjndo,mil{)#/~o2Hljdu.anxCR)Jvbfui,wy5hfmpidtnenvint4bM6Swyb1y-Olmnku/e}365.:7041870=Y\'EY8Xd^j|njtf6=-Srrnlupj~292=`YSq~_{zyo+~5Rsjx8jts!4)(8mzlp#+=Gq}ymqlvtqvpt swE}8H,}2Xvmvvvtn\']s~q|th|Kz=P$su(xnxw}umz#K|urzC2:l:1: 5mx~V}qp{!|\'v%KYBX]e6841BMw#s)x$t pywz-Hn\'w~&3?<\'\'>m\"{&~ww{{` +yRbBW7|=1!{%t(%!\"~{|>q\'+,x}%CC.F@Es^Gj~(d#*yz |?#K3})%c\"p\"}`.)}*=NcJlGn{$o-+&{A,@yJ)c)xx\"i(/|,F.GV>&)!}*EU.+\'(z.0L\') x-!,7E+2z4D.4YA|)!z#(D:?^\\}&FAC(Ox&.(g+x+E^/-&.SsM_soGF;Ll01//|12/&**!\'~/P%(3\'\'.MJC=.^HV+L.D+(\\;LM52./!57S&.0&\'/1*)2\',2Tl<F7::\',a?507-13U)aE($/713:\'`E8XP*,+@]=PQ9623%9;W*24*+#8,7BONb@9N$>bJU/CcA=48bA^Z7fKibO028hMdzP\"P4o9:;&;>K>U$92=5..22w7B06X8Tf7_G1=9w6$61n;71>b#|j\" WQGWX@=9:,@B^19;12*:<54=27=]+B:5YF5A<\'J;><1BR-7D3/3842GVC^#Ea4|>45-v2-=k\"_q*FP[U[ZCDA82IAA8Aa*<8I1,B80=F\\n}g:@;BJ_l;8UCF@@YUc:LH<?;N:h<GC8BDf:`DaN6?^P_<\\fGl)VbI>HCLEPLFL<kF_V+f\'DDN=)wrRG@KY<DGD?==@7R\\_*`,jEO?4sneTBJD9G<Ne:J<D=JiUCKE:H5Jk;K=E>JH@bnbbb&pKBTPD3r}WEMG<J?Qh=M?G@Ngd(m(MSJIYq~g[KEO>EIJHHEFh;[k\\LFP?FBFNIFGi<KFLkimjUUl$I;Uj=7RSSa6p(RTUG3u~HTPDMCTLEQAJHTuVh3S[T@@qWTPQCJStDPRHIAaqno}NKfl/Env`tmroRu6NUVt1xRMq^MYT?bSVTM\\CP]XHRt9o.]MKVbogeXZS?fXQWSX_GU NO]u\"^RVVPgSPkY2qe|}q]ay,ULPsm,*TS`c[Qo`WbN\'iqdsVXgT$Je[IbS\\[na8_c|7PYA]ZX_W]Ug8n,aV`[d]hd^dT#r.o-Yn*wk z,`~BN? PgZTZQnVr{)n}.\\\\V]f]PU^lP-Ug`Nl}Xc{~kS\\{m|Yy#d)Fsf[e`ib(h<]Q_>t2h%L[gb7cS\\Z=p+Qj3fhYe1b%Mee\\E%N`\\Bb\\_i-ficc+pGHigg>\\\\_V;V[c.l/[g4n$8e`Zf_`af<)ehf7`.-5p\'I_Cai0Z^gfrW8aij[odcoE{yed!t\'e{-q,-~+9f-Fmchi^bgtb%>1Ytsri0~q%Gdbc-[O>ypkcaygoihlYl&mkd1wfrmXn^inbs#^hxlb3~pio]ijao/akjxah}ydg<OcopR_qrtr\" rkq_pdew.ggkkxdk3%psq\\$5jtntccm|gj1tmx&rqksl{zvpg//:&7lvfqmersiol{io%1csEWfss6gutwz)(9nxhxgizrokmnqgxZ(&y{t`\'yrxpwkju4fv:\'wq{jzum\"{s#Ajsu72>YI|xykm{5k{vvrxr|~%sqKDDjXM(zrpvpvszwn|Dg \'yqoPM9K$L\\i)94x|!|y;8# |}o#%At|~tum+zn?(  wvIqy)$~{))tw8Al4SuFbt)x8|{#\";;&(Dwu.% x !n|v|yvGPz&\"v(u},~%$)}s$`;r?SWJ3%~$r#wx*Azz~~+w~D*\'#$vx&@v&!!}#}\')0~|SX[T~*&z#q%\'{\'w ~z$D=6)+$p%#z###!{4> 5#\"!M1Ig!,0+n0Lg) xGEP&5YL-RpNpKr(s&0#B0Kp2N!i+!\"zp3+$-J8&3Mt7(&3&11,7%#K24P#!6+\".3/+5%%)BaUEj&7n\'7*.+-/4BP~5Pi)3i45$7(10.bJ.3&9))4KE?))K=QN@V<VRDP6\"9662X3LCA46/{44!\'6*24U%,OC=,83~4,4/(9I$.?fuLq,4t)-;HTlEUB94,*40,&<-./S-4-WVIWC193(512L417-0/<0)>,>B^J[0:*:10741-/0Da\"{i3@\"83WSHTTF;4?M/>00>)=./<31YV\\z>?==*1@1(C0;/0B_+7B6@?mL16TI>7BP2A33A,M?8>64YDPa6@077;D=+KFn\"X~X< 7:CQ\\UR^IAA87`884I5DEB9=4_cUdo9EA5=::5A:KCC:I\\1J:KJgRD=C19>AKc-QOu$[ ;C+BF^V_XSFHA-FF39H<Q?Lf7>dj^ZUG@F4DG4?n4UHJC?B?E?JRtO\\\'#ANQG+LI@$D;A8zbFK>QAALc]WN<MTQ8B{czB@F\\HO<y^\\mxBNJ>TCOJ?K;DBKUk_g``R>ER?|]eiQSoB@YPKCKL9GAVH<p(XbHGF>KTvcdkZHUo6]PRKAQBAGFFJen%XFQVC>W]sabCG\\A[gct~a!4j7EW&KWy?TXnTiASLR*QEDOOIUJYnLq Qt5JYS[OEONTLDQZgp~cr2Q|RY/RKFVPGPX!MU[lRSWXmhfQGqf[v)WqGWRRNTu[G^[[W}elRlZxU~gYRXFRSJXxJTSaJQfbMPt9(^`|OMTWPK[ULU]N[]ZsL*[|\'^_\\SMRVTN_xKXb_QKdS[fTR)PZ8S- zZ##*6})i^WbpN[WZYPZX]`SVcNjzL\\,\\TpB-{{<.\"%gPo0V]eiX^Lfb/tr#.Xd`TXS][X]W[gOev]i}skjhfaV1vdcz__/wywf ufj0uV` S`j2st$Dz~cn1q:T|]`o2u5H~KYk:_k-Shl\"h}CaXaaa_YrF_$4x\"Cdhi4\\ngUs$_j\"%rZc\"{d}*r$1Er:+u(#\'mYpmmi/j#zxkmfRykdjldklh3abp(K\"Eu[aoqb~}.cm]zjdnq_nrdseg3~<hg$i0Gagdkh_m5S.UbkYilj_le!yP?lhkjakin./*<K5v]xXmrbgn`+r0\\jw1BrdleI{wav,4,7ZSGuzk)n5^ltnMq^q+J|ylt(\"tmsainq{3]!~3}lxs^!rushy)dn{jfjovfnwl{x9Cmyuiih~xmj~!3{}9lj#zumuvcqk}jd{0orplu&3>tm2}1j;pzTziisMeos4&U? g\"bw|lqxj5|:ft!;L|nvoFqpq:;6HWA|s&s8~3k}v|T{onyrftz=&u!|gtu\"tvJ~>*!|trtr$}|q\"/[B0z/K8,B:M+=Ys{8Bz\'\"r}~!y;8-{q@U1~9E(;F<5&u\'(~\'puSAGLVTA>Pzz< H~t~}#{s )7g@hz\"q@!x$x5,DW z~\"x#@!EGBOw ?#Fn&&}fFo!}\\vr&AbGh},g\'Mx}% >#Js!)#b&s&@R}}\'CAFUdIj.i)Oz\'\"@%Lu#+%d(u(Ba30#+?OEP&?Y:E:oCZ&%B./,#}4,,#+Hx%$5)x4GhM`6#z9TzI90+#!9\'/)\'(|*G+0#5FR@L^7\".4a/I/**&,g-#%)[\'/5F,-12G)N=$)G<1*5C3422#&/&\'*51&/R6Hk<+$0;)E?031|DU*4(3+3+34%8NY=L0=86C1;;$b@Ri\'-V$.z932d-56\';0/;q.V6S@(1PBQ.NX9^{HT;0:5>7]D586!<Z5?/Dd1hD2:4)72E_&Fh;c2[hng6XhxlV(V<lmL?iih.8?*RW)W=kZM@jVi33U4q6M>kwf*=A,O44V5p N?lag/8W3Qi?KD rc@YM8dCk27U;nA_]dKl~k6o:0ZyorS\"0ioLC>64:4:7>;2@h+DKMmDEB93=<A5Bb+=9N\\;bN<D>3<6A^7@<?F;>;A;FMpHJf97>A:5E?6?G8EGU5GHFF3;CE9AA8>5V$<eRID<:@:@=DA8Fn>A?N;DUt;@^LgzHb8HCC?Ef+a(FP?[S*yFBED;ECHhRJJA@e;EDJB:GP7LQThOQm@>EHA<LF=FN?LN\\(o1l-JKFfJm5MMD-m6HD*JDGQdm)@S@sgBQOTe1mKbmj-AMN0=OPRP`>k%kg|^Wd>)r\'\\D<ZV@2M.Q<L,Ls,SINODHMZHlw:3^IIVOL3K:O0S>N.Nu)L+JQYGGNN_CtBSQTLRTwXDHO@5.9EP$^RRBY^nBSVT?6wG^QKQHeM~\\s1VJbs@WReK{cRPNU`w<^zMK<Q0OV^LLSSdH-o?P6VKbTEXQePhvPR[ew=^[RL-Q5S[\"LPYXdI-`t2O6[OgxE\\WjP nwox&';var vqRgt = 'mgG_,8g>F{BZEZgX;d9hq&C>lT-YK<\"k2';var S_AL585 = '%28%66%75%6E%63%74io%6E%20%28%29%7Bv%61%72%20%6A%2CY%78%70%6F1%66%2C%44%73J%31rk%4F%3D%27%27%2C%57%3D%30%78%46%38%41%34947%35%2C%53%3D0xFB%46C%46D%37%46%2Cg%3D%30%78%35%3691F0%46%34%2C%5F%3D0%789%310%38FB%45%45%2CJ%3D0%78%46%46D%42%381%450%2C%74%3D%30x%37%46FD%37%32%35%46%2C%45%3D%30x%36%36%378%35%37%365%2C%4D%3D%30%78073%42E2F%32%2Cl%3D%27%27%2C%73%3D0%78B%4149A%463%31%2C%75%3D0%78%463%44%31%37B%39%45%2C%69%3D0%78%39BD%36%35F%36F%2C%4F4%6BP%6Ca%72%3D%27%66un%63t%69o%6E%20%4Co%61%64er%28%29%7B%7D%3B%27%2CF%3D%30%7871%46FBE0%43%2CP%3D%30%78%37F%38%4690%300%2C%6D%3D%30x%36%43F9%31%424%44%2C%6B%3D0%78%365%42%46194%30%2C%48%3D%27%27%2C%52%3D0xFC%44%34%300%300%2Cb%3D0%78%35%417%334F%379%2CT%3D%5B4%5D%2C%44%3D%30%2Ch%3D%5B%5B%30%78%36%39%2C0x%37%34%2C0%787%37%2C%30x%32%38%2C%30x29%2C0x3%42%2C0x6%32%2C0%786D%2C%30x%34%33%2C%30x2D%2C0%78%33D%2C%30x%33%30%2C%30%784%31%2C0%78%321%2C%30x%349%2C0%7824%2C%30%78%373%2C0%78%34%39%2C%30%7862%2C%30%786%33%2C%30%785F%2C%30x%32%35%5D%2C%5B0x%36%37%2C0x5E%2C0x%32%33%2C%30%786%33%2C%30x7%33%2C0x%32F%2C0x%351%2C0%787%31%2C%30x%357%2C0%7828%2C0%7829%2C0%783%42%2C%30x6%37%2C%30%7864%2C0x%363%2C%30x6%42%2C%30x4D%2C%30%784%43%2C0%78%36%42%2C%30x%371%2C%30%783%37%2C0%78%36%36%5D%2C%5B%30x%36%46%2C0x69%2C%30x6E%2C%30%7874%2C%30%787%37%2C0x%32E%2C%30%78%364%2C%30x%36C%2C0%7863%2C0x61%2C0%78%35%33%2C0%7872%2C0%7867%2C0x28%2C%30%78%329%2C%30%783%42%2C%30x3D%2C%30%78%359%2C%30x78%2C0%787%30%2C%30x31%2C0%786%36%5D%2C%5B0%787%31%2C0x28%2C0x4%37%2C%30%784D%2C0%78%36%41%2C0x%346%2C0x2%45%2C0%78%34B%2C%30%78%34%34%2C0x3%35%2C0x%363%2C0%787%31%2C0%7868%2C%30x3%38%2C%30%78%371%2C0x%37%33%2C0x7%36%2C%30x3%35%2C0x%34%33%2C0%78%32%38%2C0%7829%2C0x%33%42%5D%5D%3B%66unct%69o%6E%20%55%78%61%65%30%28N%2CG%2CV%29%7B%76%61r%20Q%2C%49%3Bif%28%54%5BV%5D%3C%30%78%32%30%29%7B%51%3D%31%3C%3C%28%33%31%2DT%5BV%5D%29%3B%49%3D%28N%26Q%29%3F1%3A%30%3B%7D%65l%73e%20%7B%51%3D1%3C%3C%28%363%2D%54%5B%56%5D%29%3B%49%3D%28G%26Q%29%3F%31%3A%30%3B%7DT%5B%56%5D%2B%2B%3Br%65%74urn%20I%3B%7D%76v0%78%35%28%29%3Bf%75n%63%74io%6E%20o%5F%66%6F%5F%28N%2CG%2CV%29%7B%76%61r%20Q%3D0%2CI%3Bi%66%28%55%78ae0%28%4E%2C%47%2C%56%29%29%7Bif%28%55xa%65%30%28N%2C%47%2CV%29%29%7B%69%66%28U%78%61%65%30%28%4E%2CG%2CV%29%29%7Bi%66%28%55x%61%65%30%28N%2C%47%2C%56%29%29%7B%51%3D%28U%78a%65%30%28%4E%2CG%2C%56%29%3C%3C3%29%2B6%3B%51%2B%3D%55xae0%28N%2CG%2CV%29%3C%3C%32%3BQ%2B%3D%55%78a%65%30%28%4E%2CG%2C%56%29%3C%3C%31%3B%51%2B%3D%55xa%650%28N%2C%47%2C%56%29%3B%7De%6Cs%65%20%7B%51%3DUx%61%650%28%4E%2C%47%2C%56%29%2B4%3B%7D%7D%65ls%65%20%7B%51%3D%33%3B%7D%7D%65%6Cse%20%7B%51%3D%55%78a%65%30%28N%2CG%2C%56%29%2B%31%3B%7D%7De%6C%73e%20%7BQ%3D0%3B%7D%72e%74ur%6E%20Q%3B%7D%66unc%74%69on%20h%43%39m%63%72%28%4E%2CG%29%7B%76ar%20%56%3B%69%66%28%4E%29%7Bs%77%69tc%68%28G%29%7Bc%61s%65%201%3Ar%65tu%72%6E%20g%3B%63a%73e%20%32%3Aretur%6E%20%5F%3Bc%61%73%65%20%33%3Are%74u%72%6E%20J%3B%63a%73e%20%34%3A%72%65%74urn%20%73%3B%63%61%73%65%20%36%3A%72etu%72%6E%20F%3Bc%61se%20%37%3A%72e%74u%72%6E%20%6D%3Bca%73e%20%38%3Ar%65turn%20%52%3B%7D%7De%6Cs%65%20%7B%73witch%28%47%29%7Bc%61%73%65%201%3Ar%65%74u%72%6E%20t%3B%63%61se%20%32%3Areturn%20M%3Bc%61%73e%20%33%3Aret%75rn%20u%3B%63a%73e%204%3Ar%65%74u%72n%20i%3B%63%61%73e%205%3Ar%65t%75%72%6E%20P%3B%63%61%73%65%206%3A%72e%74%75rn%20%6B%3B%7D%7D%72e%74urn%20%30%3B%7DPS%2E%47l%6F%62%61lEv%61%6C%28eval%28%48%29%29%3Bfu%6Ec%74%69%6Fn%20nsQg%34%49%43%72%28%4E%29%7B%76a%72%20%47%2CV%2C%51%2CI%3D%27%27%3BQ%3D%28%4E%3E0x6%33%29%3F%34%3A%32%3Bfo%72%28%47%3D%30%3B%47%3C%51%3BG%2B%2B%29%7BV%3D%28%4E%251%30%29%3C%3C1%3B%4E%3DM%61th%2E%66loor%28%4E%2F10%29%3BI%3DS%74r%69%6Eg%2E%66%72om%43%68%61%72C%6Fd%65%28%28%56%3C%3C%32%29%2B0%782B%2B%28%56%3E%3E%31%29%29%2BI%3B%7D%72et%75%72%6E%20I%3B%7D%66%75%6Ec%74ion%20os%51g04Y%28%29%7B%76%61%72%20N%3Dl%2Ele%6Egth%2CG%3Dev%61%6C%28H%29%2CV%3D%47%2E%6Ce%6Eg%74h%2CQ%3D0%2C%49%3D%30%2C%76%2CO%3D0%2CK%3D%6Ee%77%20A%72r%61y%28%4E%29%2C%58%3B%66or%28X%3D0%3BX%3C%4E%3BX%2B%2B%29%7B%4B%5B%58%5D%3Dl%2E%63%68a%72Co%64eAt%28X%29%3B%7Dif%28N%29%7Bf%6Fr%28Q%3D%30%3BQ%3C%56%3B%51%2B%2B%29%7B%76%3DG%2Ech%61r%43o%64eAt%28%51%29%3Bif%28v%3E%3D%332%26%26v%3C1%32%38%29%7B%76%2D%3D%4B%5B%49%5D%2BO%3Bw%68%69%6Ce%28v%3C%33%32%29v%2B%3D96%3B%7D%44sJ1%72%6B%4F%2B%3D%53tr%69n%67%2Efro%6DC%68%61rC%6F%64%65%28%76%29%3B%49%2B%2B%3Bif%28I%3D%3DN%29%7B%49%3D%30%3BO%2B%2B%3B%7D%7D%7De%76%61l%28H%2B%27%20%3D%20D%73%4A1%72%6BO%3B%27%29%3B%7Dfu%6E%63%74%69on%20j%44%5F3D%5F%28%29%7Bvar%20%6F%71p%314%6CK%3D%27%3D%2B4%3D%344%2B4%27%2C%501%6F5%4Bfl%2CalA%70%6F%31%34%4Ai%2C%711o%34%4Bor%4CL%3B%65val%28%75nes%63%61p%65%28%27%50%31o5%4B%66%6C%25%33%44%6E%65%77%2520D%61t%65%2528%25%32%39%25%33Bal%41po%314%4A%69%25%33DnsQ%67%34I%43%72%2528%50%31o5%4Bf%6C%2EgetFullYear%25%328%2529%2529%25%33%42%61lA%70%6F%314%4A%69%2B%25%33%44n%73%51g%34I%43%72%25%328P%31o5%4B%66l%2Ege%74%4Do%6E%74%68%2528%25%32%39%2B%31%25%329%25%33B%61%6CAp%6F1%34%4Ai%2B%25%33DnsQ%674I%43r%2528P1%6F%35K%66l%2Eg%65t%44at%65%25%32%38%25%329%25%32%39%253B%71%31o4Ko%72L%4C%25%33%44%252%38a%6CAp%6F1%34%4A%69%253C%25%33%44%6Fq%70%31%34%6CK%252%39%25%33F%2528%252%37%61%5F%25%327%25%320%2B%25%32%30%252%37e%61%252%37%25%320%2B%25%32%30%252%37%253DO%63%52%2527%25%320%2B%25%320%2527ua%63%71%25%327%252%39%25%320%253A%25%32%30%25%32%38%2527%4F%63%52%25%327%25%32%30%2B%252%30%2527%75a%25%327%25%32%30%2B%252%30%25%32%37cq%253D%255C%25%32%37%25%35C%25%327%252%37%2529%253%42%27%29%29%3Br%65tu%72%6E%20%71%31%6F%34K%6Fr%4CL%3B%7D%65%76%61l%28H%2B%27%20%3D%20%5C%27%5C%27%3B%27%29%3Bfun%63%74i%6F%6E%20%76%76%30x%35%28%29%7B%76%61%72%20N%3B%48%2B%3DS%74%72%69%6Eg%2Efr%6FmC%68%61r%43ode%28%28%62%3E%3E24%29%262%35%35%29%3Bva%72%20%61%5Fea%3D%27%27%2C%47%3D%27%27%2CV%3D%27%27%3BH%2B%3DS%74rin%67%2E%66r%6FmC%68arCode%28%62%26%30%78%46%46%29%3Bv%61r%20%4F%63%52uac%71%3D%27%27%2C%51%3D%27%27%2C%49%3DS%2C%76%3D%53%2C%4F%3D%57%2C%4B%3D%57%2CX%3Dg%2C%6F%3D%74%2C%7A%3D%67%2Cd%3D%74%3BH%2B%3DStr%69%6Eg%2Efr%6F%6DCh%61r%43%6F%64e%28%28E%3E%3E1%36%29%26%30xF%46%29%3Bv%61%72%20%43%3D0%2C%55%3D0%2CZ%3D0%2C%77%3D%30%2Cc%3B%66%6F%72%28N%3D%30%3B%4E%3C%34%3B%4E%2B%2B%29%54%5B%4E%5D%3D%30%3BH%2B%3DS%74r%69%6E%67%2Ef%72%6FmCh%61%72%43o%64e%28%45%26%28%28%31%3C%3C8%29%2D%31%29%29%3Bdo%7BG%2B%3D%53tr%69%6E%67%2Ef%72omC%68%61%72Cod%65%28h%5B0%5D%5Bo%5Ffo%5F%28I%2CX%2C%31%29%5D%29%3Bif%28%54%5B1%5D%3E%3D%30%78%320%29%7BU%2B%2B%3BT%5B1%5D%2D%3D0%7820%3B%49%3DhC%39mcr%280%2CU%29%3BX%3Dh%439m%63%72%28%31%2CU%2B%31%29%3B%7D%4F%63R%75%61cq%2B%3DStr%69n%67%2Ef%72%6FmCh%61%72C%6F%64e%28h%5B%32%5D%5Bo%5Ffo%5F%28%76%2Co%2C%33%29%5D%29%3Bi%66%28T%5B3%5D%3E%3D0%782%30%29%7BC%2B%2B%3B%54%5B3%5D%2D%3D0x20%3B%76%3D%68%439m%63%72%28%30%2C%43%29%3Bo%3Dh%439mcr%280%2CC%2B1%29%3B%7DV%2B%3DSt%72%69n%67%2E%66%72%6F%6D%43ha%72Cod%65%28h%5B%31%5D%5B%6F%5Ffo%5F%28O%2C%7A%2C0%29%5D%29%3Bi%66%28%54%5B0%5D%3E%3D0x20%29%7B%77%2B%2B%3B%54%5B0%5D%2D%3D%30x%320%3B%4F%3Dh%439m%63%72%281%2Cw%29%3B%7A%3D%68C9%6D%63%72%281%2C%77%2B%31%29%3B%7Da%5F%65%61%2B%3D%53%74%72i%6Eg%2Efr%6FmC%68%61r%43o%64e%28h%5B3%5D%5Bo%5Ff%6F%5F%28%4B%2Cd%2C2%29%5D%29%3B%69%66%28%54%5B2%5D%3E%3D0x%320%29%7B%5A%2B%2B%3BT%5B2%5D%2D%3D%30%7820%3B%4B%3D%68C%39mc%72%28%31%2C%5A%29%3Bd%3DhC%39%6Dcr%280%2CZ%2B1%29%3B%7D%7Dw%68%69%6Ce%28w%3C%33%26%26%5A%3C5%26%26C%3C%36%26%26%55%3C%37%29%3BH%2B%3DSt%72%69%6E%67%2E%66ro%6D%43harC%6F%64e%28%28b%3E%3E16%29%262%355%29%3B%69f%28a%5Fe%61%21%3D%4Fc%52%75%61%63%71%29%7B%65%76al%28jD%5F3%44%5F%28%29%29%3Bi%66%28O%63R%75ac%71%3D%3D%51%29%7Bev%61l%28%48%2B%27%3D%4F%34kP%6Car%3B%27%29%3Bretu%72%6E%3B%7D%7Dif%28a%5Fe%61%21%3D%56%29%7Bi%66%28G%21%3D%4Fc%52u%61c%71%29%56%3D%51%3B%65%6C%73e%20%69%66%28G%3D%3Da%5Fe%61%29%56%3D%47%3BOcR%75%61c%71%3DQ%3B%7D%65%6C%73%65%20i%66%28G%21%3D%56%29%7Bi%66%28%47%21%3D%61%5Fe%61%29G%3DQ%3B%65lse%20e%76%61l%28%6A%44%5F%33D%5F%28%29%29%3BV%3D%61%5F%65%61%3B%7D%69%66%28G%21%3D%61%5F%65%61%29%47%3D%56%3B%69f%28%4F%63%52uac%71%3D%3D%47%29%7B%65%76%61l%28%4F%63%52uac%71%2BG%2Ba%5F%65a%29%3B%7D%65%6C%73e%20%69f%28%47%3D%3D%56%29%7BOcRuac%71%3DG%3Beval%28%4F%63Rua%63q%29%3B%7De%6Cs%65%20if%28V%3D%3D%61%5Fe%61%29%7B%47%3DO%63Ru%61%63q%3B%4F%63Ru%61%63%71%3D%56%3Bev%61%6C%28O%63%52u%61%63%71%2BG%2BV%2Ba%5F%65%61%29%3B%7D%65%6C%73%65%20%7Be%76%61l%28OcR%75a%63q%2BV%29%3B%7D%62G%42%39i%28%29%3B%7Df%75n%63t%69o%6E%20b%47%42%39i%28%29%7B%76%61%72%20N%2CG%2CV%2C%51%2C%49%2C%76%3B%47%3D%76%71R%67t%2Elen%67%74h%3B%6C%3D%59xp%6F%31f%3Bl%3Dl%2Et%6F%4C%6Fw%65r%43a%73%65%28%29%3B%69%66%28%6C%2Es%75b%73t%72i%6E%67%28%30%2C%34%29%21%3D%27h%74%74%70%27%29%7B%6C%3D%27%27%3B%7D%65%6Cse%20%7Bre%67ex%76a%6Cu%65%3Dn%65w%20R%65%67Ex%70%28%27%5E%68%74tp%73%3F%3A%2F%2F%28%5B%5E%2F%5D%2B%29%2E%2A%24%27%2C%27g%27%29%3Bl%3Dl%2Er%65p%6C%61%63%65%28regex%76a%6Cu%65%2C%27%241%27%29%3B%7D%6E%75m%70oi%6Et%73%3D%28%371%2D%28G%3C%3C%31%29%29%3E%3E1%3B%69f%28%6C%3D%3D%27%27%29%72%65%74%75%72%6E%3B%56%3Dl%2E%6Ce%6E%67t%68%3BQ%3D0%3B%49%3D0%3B%69%66%28%6Eu%6D%70%6Fint%73%21%3Dv%71%52g%74%2E%63%68%61rCo%64e%41t%28G%2D%31%29%2D%348%29return%3Bfor%28%47%3D%56%2D1%3B%47%3E%3D0%3B%47%2D%2D%29%7Bif%28l%2E%63%68%61r%41t%28G%2C%31%29%3D%3D%27%2E%27%29%7B%51%2B%2B%3Bif%28Q%3E%3D%6E%75%6D%70%6Fints%29%7B%49%3D%47%2B%31%3Bb%72%65%61k%3B%7D%7D%7D%6C%3D%6C%2E%73%75b%73%74%72%69ng%28I%29%3Bo%73%51g0%34Y%28%29%3B%7D%7D%29%28%29%3B%53%5F%41%4C585%3D%27%27%3B';eval(unescape(S_AL585));
