/* prototype.js */ var Prototype={Version:'1.6.0.2',Browser:{IE:!!(window.attachEvent&&!window.opera),Opera:!!window.opera,WebKit:navigator.userAgent.indexOf('AppleWebKit/')>-1,Gecko:navigator.userAgent.indexOf('Gecko')>-1&&navigator.userAgent.indexOf('KHTML')==-1,MobileSafari:!!navigator.userAgent.match(/Apple.*Mobile.*Safari/)},BrowserFeatures:{XPath:!!document.evaluate,ElementExtensions:!!window.HTMLElement,SpecificElementExtensions:document.createElement('div').__proto__&&document.createElement('div').__proto__!==document.createElement('form').__proto__},ScriptFragment:']*>([\\S\\s]*?)<\/script>',JSONFilter:/^\/\*-secure-([\s\S]*)\*\/\s*$/,emptyFunction:function(){},K:function(x){return x}};if(Prototype.Browser.MobileSafari)Prototype.BrowserFeatures.SpecificElementExtensions=false;var Class={create:function(){var a=null,properties=$A(arguments);if(Object.isFunction(properties[0]))a=properties.shift();function klass(){this.initialize.apply(this,arguments)}Object.extend(klass,Class.Methods);klass.superclass=a;klass.subclasses=[];if(a){var b=function(){};b.prototype=a.prototype;klass.prototype=new b;a.subclasses.push(klass)}for(var i=0;i0){if(match=source.match(a)){c+=source.slice(0,match.index);c+=String.interpret(b(match));source=source.slice(match.index+match[0].length)}else{c+=source,source=''}}return c},sub:function(b,c,d){c=this.gsub.prepareReplacement(c);d=Object.isUndefined(d)?1:d;return this.gsub(b,function(a){if(--d<0)return a[0];return c(a)})},scan:function(a,b){this.gsub(a,b);return String(this)},truncate:function(a,b){a=a||30;b=Object.isUndefined(b)?'...':b;return this.length>a?this.slice(0,a-b.length)+b:String(this)},strip:function(){return this.replace(/^\s+/,'').replace(/\s+$/,'')},stripTags:function(){return this.replace(/<\/?[^>]+>/gi,'')},stripScripts:function(){return this.replace(new RegExp(Prototype.ScriptFragment,'img'),'')},extractScripts:function(){var b=new RegExp(Prototype.ScriptFragment,'img');var c=new RegExp(Prototype.ScriptFragment,'im');return(this.match(b)||[]).map(function(a){return(a.match(c)||['',''])[1]})},evalScripts:function(){return this.extractScripts().map(function(a){return eval(a)})},escapeHTML:function(){var a=arguments.callee;a.text.data=this;return a.div.innerHTML},unescapeHTML:function(){var c=new Element('div');c.innerHTML=this.stripTags();return c.childNodes[0]?(c.childNodes.length>1?$A(c.childNodes).inject('',function(a,b){return a+b.nodeValue}):c.childNodes[0].nodeValue):''},toQueryParams:function(e){var f=this.strip().match(/([^?#]*)(#.*)?$/);if(!f)return{};return f[1].split(e||'&').inject({},function(a,b){if((b=b.split('='))[0]){var c=decodeURIComponent(b.shift());var d=b.length>1?b.join('='):b[0];if(d!=undefined)d=decodeURIComponent(d);if(c in a){if(!Object.isArray(a[c]))a[c]=[a[c]];a[c].push(d)}else a[c]=d}return a})},toArray:function(){return this.split('')},succ:function(){return this.slice(0,this.length-1)+String.fromCharCode(this.charCodeAt(this.length-1)+1)},times:function(a){return a<1?'':new Array(a+1).join(this)},camelize:function(){var a=this.split('-'),len=a.length;if(len==1)return a[0];var b=this.charAt(0)=='-'?a[0].charAt(0).toUpperCase()+a[0].substring(1):a[0];for(var i=1;i-1},startsWith:function(a){return this.indexOf(a)===0},endsWith:function(a){var d=this.length-a.length;return d>=0&&this.lastIndexOf(a)===d},empty:function(){return this==''},blank:function(){return/^\s*$/.test(this)},interpolate:function(a,b){return new Template(this,b).evaluate(a)}});if(Prototype.Browser.WebKit||Prototype.Browser.IE)Object.extend(String.prototype,{escapeHTML:function(){return this.replace(/&/g,'&').replace(//g,'>')},unescapeHTML:function(){return this.replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>')}});String.prototype.gsub.prepareReplacement=function(b){if(Object.isFunction(b))return b;var c=new Template(b);return function(a){return c.evaluate(a)}};String.prototype.parseQuery=String.prototype.toQueryParams;Object.extend(String.prototype.escapeHTML,{div:document.createElement('div'),text:document.createTextNode('')});with(String.prototype.escapeHTML)div.appendChild(text);var Template=Class.create({initialize:function(a,b){this.template=a.toString();this.pattern=b||Template.Pattern},evaluate:function(f){if(Object.isFunction(f.toTemplateReplacements))f=f.toTemplateReplacements();return this.template.gsub(this.pattern,function(a){if(f==null)return'';var b=a[1]||'';if(b=='\\')return a[2];var c=f,expr=a[3];var d=/^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;a=d.exec(expr);if(a==null)return b;while(a!=null){var e=a[1].startsWith('[')?a[2].gsub('\\\\]',']'):a[1];c=c[e];if(null==c||''==a[3])break;expr=expr.substring('['==a[3]?a[1].length:a[0].length);a=d.exec(expr)}return b+String.interpret(c)})}});Template.Pattern=/(^|.|\r|\n)(#\{(.*?)\})/;var $break={};var Enumerable={each:function(b,c){var d=0;b=b.bind(c);try{this._each(function(a){b(a,d++)})}catch(e){if(e!=$break)throw e;}return this},eachSlice:function(a,b,c){b=b?b.bind(c):Prototype.K;var d=-a,slices=[],array=this.toArray();while((d+=a)=e)e=a});return e},min:function(c,d){c=c?c.bind(d):Prototype.K;var e;this.each(function(a,b){a=c(a,b);if(e==null||ab?1:0}).pluck('value')},toArray:function(){return this.map()},zip:function(){var c=Prototype.K,args=$A(arguments);if(Object.isFunction(args.last()))c=args.pop();var d=[this].concat(args).map($A);return this.map(function(a,b){return c(d.pluck(b))})},size:function(){return this.toArray().length},inspect:function(){return'#'}};Object.extend(Enumerable,{map:Enumerable.collect,find:Enumerable.detect,select:Enumerable.findAll,filter:Enumerable.findAll,member:Enumerable.include,entries:Enumerable.toArray,every:Enumerable.all,some:Enumerable.any});function $A(a){if(!a)return[];if(a.toArray)return a.toArray();var b=a.length||0,results=new Array(b);while(b--)results[b]=a[b];return results}if(Prototype.Browser.WebKit){$A=function(a){if(!a)return[];if(!(Object.isFunction(a)&&a=='[object NodeList]')&&a.toArray)return a.toArray();var b=a.length||0,results=new Array(b);while(b--)results[b]=a[b];return results}}Array.from=$A;Object.extend(Array.prototype,Enumerable);if(!Array.prototype._reverse)Array.prototype._reverse=Array.prototype.reverse;Object.extend(Array.prototype,{_each:function(a){for(var i=0,length=this.length;i1?this:this[0]},uniq:function(d){return this.inject([],function(a,b,c){if(0==c||(d?a.last()!=b:!a.include(b)))a.push(b);return a})},intersect:function(c){return this.uniq().findAll(function(b){return c.detect(function(a){return b===a})})},clone:function(){return[].concat(this)},size:function(){return this.length},inspect:function(){return'['+this.map(Object.inspect).join(', ')+']'},toJSON:function(){var c=[];this.each(function(a){var b=Object.toJSON(a);if(!Object.isUndefined(b))c.push(b)});return'['+c.join(', ')+']'}});if(Object.isFunction(Array.prototype.forEach))Array.prototype._each=Array.prototype.forEach;if(!Array.prototype.indexOf)Array.prototype.indexOf=function(a,i){i||(i=0);var b=this.length;if(i<0)i=b+i;for(;i'},toJSON:function(){return Object.toJSON(this.toObject())},clone:function(){return new Hash(this)}}})());Hash.prototype.toTemplateReplacements=Hash.prototype.toObject;Hash.from=$H;var ObjectRange=Class.create(Enumerable,{initialize:function(a,b,c){this.start=a;this.end=b;this.exclusive=c},_each:function(a){var b=this.start;while(this.include(b)){a(b);b=b.succ()}},include:function(a){if(a1&&!((a==4)&&this._complete))this.respondToReadyState(this.transport.readyState)},setRequestHeaders:function(){var b={'X-Requested-With':'XMLHttpRequest','X-Prototype-Version':Prototype.Version,'Accept':'text/javascript, text/html, application/xml, text/xml, */*'};if(this.method=='post'){b['Content-type']=this.options.contentType+(this.options.encoding?'; charset='+this.options.encoding:'');if(this.transport.overrideMimeType&&(navigator.userAgent.match(/Gecko\/(\d{4})/)||[0,2005])[1]<2005)b['Connection']='close'}if(typeof this.options.requestHeaders=='object'){var c=this.options.requestHeaders;if(Object.isFunction(c.push))for(var i=0,length=c.length;i=200&&a<300)},getStatus:function(){try{return this.transport.status||0}catch(e){return 0}},respondToReadyState:function(a){var b=Ajax.Request.Events[a],response=new Ajax.Response(this);if(b=='Complete'){try{this._complete=true;(this.options['on'+response.status]||this.options['on'+(this.success()?'Success':'Failure')]||Prototype.emptyFunction)(response,response.headerJSON)}catch(e){this.dispatchException(e)}var c=response.getHeader('Content-type');if(this.options.evalJS=='force'||(this.options.evalJS&&this.isSameOrigin()&&c&&c.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))this.evalResponse()}try{(this.options['on'+b]||Prototype.emptyFunction)(response,response.headerJSON);Ajax.Responders.dispatch('on'+b,this,response,response.headerJSON)}catch(e){this.dispatchException(e)}if(b=='Complete'){this.transport.onreadystatechange=Prototype.emptyFunction}},isSameOrigin:function(){var m=this.url.match(/^\s*https?:\/\/[^\/]*/);return!m||(m[0]=='#{protocol}//#{domain}#{port}'.interpolate({protocol:location.protocol,domain:document.domain,port:location.port?':'+location.port:''}))},getHeader:function(a){try{return this.transport.getResponseHeader(a)||null}catch(e){return null}},evalResponse:function(){try{return eval((this.transport.responseText||'').unfilterJSON())}catch(e){this.dispatchException(e)}},dispatchException:function(a){(this.options.onException||Prototype.emptyFunction)(this,a);Ajax.Responders.dispatch('onException',this,a)}});Ajax.Request.Events=['Uninitialized','Loading','Loaded','Interactive','Complete'];Ajax.Response=Class.create({initialize:function(a){this.request=a;var b=this.transport=a.transport,readyState=this.readyState=b.readyState;if((readyState>2&&!Prototype.Browser.IE)||readyState==4){this.status=this.getStatus();this.statusText=this.getStatusText();this.responseText=String.interpret(b.responseText);this.headerJSON=this._getHeaderJSON()}if(readyState==4){var c=b.responseXML;this.responseXML=Object.isUndefined(c)?null:c;this.responseJSON=this._getResponseJSON()}},status:0,statusText:'',getStatus:Ajax.Request.prototype.getStatus,getStatusText:function(){try{return this.transport.statusText||''}catch(e){return''}},getHeader:Ajax.Request.prototype.getHeader,getAllHeaders:function(){try{return this.getAllResponseHeaders()}catch(e){return null}},getResponseHeader:function(a){return this.transport.getResponseHeader(a)},getAllResponseHeaders:function(){return this.transport.getAllResponseHeaders()},_getHeaderJSON:function(){var a=this.getHeader('X-JSON');if(!a)return null;a=decodeURIComponent(escape(a));try{return a.evalJSON(this.request.options.sanitizeJSON||!this.request.isSameOrigin())}catch(e){this.request.dispatchException(e)}},_getResponseJSON:function(){var a=this.request.options;if(!a.evalJSON||(a.evalJSON!='force'&&!(this.getHeader('Content-type')||'').include('application/json'))||this.responseText.blank())return null;try{return this.responseText.evalJSON(a.sanitizeJSON||!this.request.isSameOrigin())}catch(e){this.request.dispatchException(e)}}});Ajax.Updater=Class.create(Ajax.Request,{initialize:function($super,d,e,f){this.container={success:(d.success||d),failure:(d.failure||(d.success?null:d))};f=Object.clone(f);var g=f.onComplete;f.onComplete=(function(a,b){this.updateContent(a.responseText);if(Object.isFunction(g))g(a,b)}).bind(this);$super(e,f)},updateContent:function(a){var b=this.container[this.success()?'success':'failure'],options=this.options;if(!options.evalScripts)a=a.stripScripts();if(b=$(b)){if(options.insertion){if(Object.isString(options.insertion)){var c={};c[options.insertion]=a;b.insert(c)}else options.insertion(b,a)}else b.update(a)}}});Ajax.PeriodicalUpdater=Class.create(Ajax.Base,{initialize:function($super,b,c,d){$super(d);this.onComplete=this.options.onComplete;this.frequency=(this.options.frequency||2);this.decay=(this.options.decay||1);this.updater={};this.container=b;this.url=c;this.start()},start:function(){this.options.onComplete=this.updateComplete.bind(this);this.onTimerEvent()},stop:function(){this.updater.options.onComplete=undefined;clearTimeout(this.timer);(this.onComplete||Prototype.emptyFunction).apply(this,arguments)},updateComplete:function(a){if(this.options.decay){this.decay=(a.responseText==this.lastText?this.decay*this.options.decay:1);this.lastText=a.responseText}this.timer=this.onTimerEvent.bind(this).delay(this.decay*this.frequency)},onTimerEvent:function(){this.updater=new Ajax.Updater(this.container,this.url,this.options)}});function $(a){if(arguments.length>1){for(var i=0,elements=[],length=arguments.length;i';delete b.name;return Element.writeAttribute(document.createElement(a),b)}if(!c[a])c[a]=Element.extend(document.createElement(a));return Element.writeAttribute(c[a].cloneNode(false),b)};Object.extend(this.Element,d||{})}).call(window);Element.cache={};Element.Methods={visible:function(a){return $(a).style.display!='none'},toggle:function(a){a=$(a);Element[Element.visible(a)?'hide':'show'](a);return a},hide:function(a){$(a).style.display='none';return a},show:function(a){$(a).style.display='';return a},remove:function(a){a=$(a);a.parentNode.removeChild(a);return a},update:function(a,b){a=$(a);if(b&&b.toElement)b=b.toElement();if(Object.isElement(b))return a.update().insert(b);b=Object.toHTML(b);a.innerHTML=b.stripScripts();b.evalScripts.bind(b).defer();return a},replace:function(a,b){a=$(a);if(b&&b.toElement)b=b.toElement();else if(!Object.isElement(b)){b=Object.toHTML(b);var c=a.ownerDocument.createRange();c.selectNode(a);b.evalScripts.bind(b).defer();b=c.createContextualFragment(b.stripScripts())}a.parentNode.replaceChild(b,a);return a},insert:function(a,b){a=$(a);if(Object.isString(b)||Object.isNumber(b)||Object.isElement(b)||(b&&(b.toElement||b.toHTML)))b={bottom:b};var c,insert,tagName,childNodes;for(var d in b){c=b[d];d=d.toLowerCase();insert=Element._insertionTranslations[d];if(c&&c.toElement)c=c.toElement();if(Object.isElement(c)){insert(a,c);continue}c=Object.toHTML(c);tagName=((d=='before'||d=='after')?a.parentNode:a).tagName.toUpperCase();childNodes=Element._getContentFromAnonymousElement(tagName,c.stripScripts());if(d=='top'||d=='after')childNodes.reverse();childNodes.each(insert.curry(a));c.evalScripts.bind(c).defer()}return a},wrap:function(a,b,c){a=$(a);if(Object.isElement(b))$(b).writeAttribute(c||{});else if(Object.isString(b))b=new Element(b,c);else b=new Element('div',b);if(a.parentNode)a.parentNode.replaceChild(b,a);b.appendChild(a);return b},inspect:function(d){d=$(d);var e='<'+d.tagName.toLowerCase();$H({'id':'id','className':'class'}).each(function(a){var b=a.first(),attribute=a.last();var c=(d[b]||'').toString();if(c)e+=' '+attribute+'='+c.inspect(true)});return e+'>'},recursivelyCollect:function(a,b){a=$(a);var c=[];while(a=a[b])if(a.nodeType==1)c.push(Element.extend(a));return c},ancestors:function(a){return $(a).recursivelyCollect('parentNode')},descendants:function(a){return $(a).select("*")},firstDescendant:function(a){a=$(a).firstChild;while(a&&a.nodeType!=1)a=a.nextSibling;return $(a)},immediateDescendants:function(a){if(!(a=$(a).firstChild))return[];while(a&&a.nodeType!=1)a=a.nextSibling;if(a)return[a].concat($(a).nextSiblings());return[]},previousSiblings:function(a){return $(a).recursivelyCollect('previousSibling')},nextSiblings:function(a){return $(a).recursivelyCollect('nextSibling')},siblings:function(a){a=$(a);return a.previousSiblings().reverse().concat(a.nextSiblings())},match:function(a,b){if(Object.isString(b))b=new Selector(b);return b.match($(a))},up:function(a,b,c){a=$(a);if(arguments.length==1)return $(a.parentNode);var d=a.ancestors();return Object.isNumber(b)?d[b]:Selector.findElement(d,b,c)},down:function(a,b,c){a=$(a);if(arguments.length==1)return a.firstDescendant();return Object.isNumber(b)?a.descendants()[b]:a.select(b)[c||0]},previous:function(a,b,c){a=$(a);if(arguments.length==1)return $(Selector.handlers.previousElementSibling(a));var d=a.previousSiblings();return Object.isNumber(b)?d[b]:Selector.findElement(d,b,c)},next:function(a,b,c){a=$(a);if(arguments.length==1)return $(Selector.handlers.nextElementSibling(a));var d=a.nextSiblings();return Object.isNumber(b)?d[b]:Selector.findElement(d,b,c)},select:function(){var a=$A(arguments),element=$(a.shift());return Selector.findChildElements(element,a)},adjacent:function(){var a=$A(arguments),element=$(a.shift());return Selector.findChildElements(element.parentNode,a).without(element)},identify:function(a){a=$(a);var b=a.readAttribute('id'),self=arguments.callee;if(b)return b;do{b='anonymous_element_'+self.counter++}while($(b));a.writeAttribute('id',b);return b},readAttribute:function(a,b){a=$(a);if(Prototype.Browser.IE){var t=Element._attributeTranslations.read;if(t.values[b])return t.values[b](a,b);if(t.names[b])b=t.names[b];if(b.include(':')){return(!a.attributes||!a.attributes[b])?null:a.attributes[b].value}}return a.getAttribute(b)},writeAttribute:function(a,b,c){a=$(a);var d={},t=Element._attributeTranslations.write;if(typeof b=='object')d=b;else d[b]=Object.isUndefined(c)?true:c;for(var e in d){b=t.names[e]||e;c=d[e];if(t.values[e])b=t.values[e](a,c);if(c===false||c===null)a.removeAttribute(b);else if(c===true)a.setAttribute(b,b);else a.setAttribute(b,c)}return a},getHeight:function(a){return $(a).getDimensions().height},getWidth:function(a){return $(a).getDimensions().width},classNames:function(a){return new Element.ClassNames(a)},hasClassName:function(a,b){if(!(a=$(a)))return;var c=a.className;return(c.length>0&&(c==b||new RegExp("(^|\\s)"+b+"(\\s|$)").test(c)))},addClassName:function(a,b){if(!(a=$(a)))return;if(!a.hasClassName(b))a.className+=(a.className?' ':'')+b;return a},removeClassName:function(a,b){if(!(a=$(a)))return;a.className=a.className.replace(new RegExp("(^|\\s+)"+b+"(\\s+|$)"),' ').strip();return a},toggleClassName:function(a,b){if(!(a=$(a)))return;return a[a.hasClassName(b)?'removeClassName':'addClassName'](b)},cleanWhitespace:function(a){a=$(a);var b=a.firstChild;while(b){var c=b.nextSibling;if(b.nodeType==3&&!/\S/.test(b.nodeValue))a.removeChild(b);b=c}return a},empty:function(a){return $(a).innerHTML.blank()},descendantOf:function(b,c){b=$(b),c=$(c);var d=c;if(b.compareDocumentPosition)return(b.compareDocumentPosition(c)&8)===8;if(b.sourceIndex&&!Prototype.Browser.Opera){var e=b.sourceIndex,a=c.sourceIndex,nextAncestor=c.nextSibling;if(!nextAncestor){do{c=c.parentNode}while(!(nextAncestor=c.nextSibling)&&c.parentNode)}if(nextAncestor&&nextAncestor.sourceIndex)return(e>a&&e','',1],TBODY:['','
',2],TR:['','
',3],TD:['
','
',4],SELECT:['',1]}};(function(){Object.extend(this.tags,{THEAD:this.tags.TBODY,TFOOT:this.tags.TBODY,TH:this.tags.TD})}).call(Element._insertionTranslations);Element.Methods.Simulated={hasAttribute:function(a,b){b=Element._attributeTranslations.has[b]||b;var c=$(a).getAttributeNode(b);return c&&c.specified}};Element.Methods.ByTag={};Object.extend(Element,Element.Methods);if(!Prototype.BrowserFeatures.ElementExtensions&&document.createElement('div').__proto__){window.HTMLElement={};window.HTMLElement.prototype=document.createElement('div').__proto__;Prototype.BrowserFeatures.ElementExtensions=true}Element.extend=(function(){if(Prototype.BrowserFeatures.SpecificElementExtensions)return Prototype.K;var c={},ByTag=Element.Methods.ByTag;var d=Object.extend(function(a){if(!a||a._extendedByPrototype||a.nodeType!=1||a==window)return a;var b=Object.clone(c),tagName=a.tagName,property,value;if(ByTag[tagName])Object.extend(b,ByTag[tagName]);for(property in b){value=b[property];if(Object.isFunction(value)&&!(property in a))a[property]=value.methodize()}a._extendedByPrototype=Prototype.emptyFunction;return a},{refresh:function(){if(!Prototype.BrowserFeatures.ElementExtensions){Object.extend(c,Element.Methods);Object.extend(c,Element.Methods.Simulated)}}});d.refresh();return d})();Element.hasAttribute=function(a,b){if(a.hasAttribute)return a.hasAttribute(b);return Element.Methods.Simulated.hasAttribute(a,b)};Element.addMethods=function(f){var F=Prototype.BrowserFeatures,T=Element.Methods.ByTag;if(!f){Object.extend(Form,Form.Methods);Object.extend(Form.Element,Form.Element.Methods);Object.extend(Element.Methods.ByTag,{"FORM":Object.clone(Form.Methods),"INPUT":Object.clone(Form.Element.Methods),"SELECT":Object.clone(Form.Element.Methods),"TEXTAREA":Object.clone(Form.Element.Methods)})}if(arguments.length==2){var g=f;f=arguments[1]}if(!g)Object.extend(Element.Methods,f||{});else{if(Object.isArray(g))g.each(extend);else extend(g)}function extend(a){a=a.toUpperCase();if(!Element.Methods.ByTag[a])Element.Methods.ByTag[a]={};Object.extend(Element.Methods.ByTag[a],f)}function copy(a,b,c){c=c||false;for(var d in a){var e=a[d];if(!Object.isFunction(e))continue;if(!c||!(d in b))b[d]=e.methodize()}}function findDOMClass(a){var b;var c={"OPTGROUP":"OptGroup","TEXTAREA":"TextArea","P":"Paragraph","FIELDSET":"FieldSet","UL":"UList","OL":"OList","DL":"DList","DIR":"Directory","H1":"Heading","H2":"Heading","H3":"Heading","H4":"Heading","H5":"Heading","H6":"Heading","Q":"Quote","INS":"Mod","DEL":"Mod","A":"Anchor","IMG":"Image","CAPTION":"TableCaption","COL":"TableCol","COLGROUP":"TableCol","THEAD":"TableSection","TFOOT":"TableSection","TBODY":"TableSection","TR":"TableRow","TH":"TableCell","TD":"TableCell","FRAMESET":"FrameSet","IFRAME":"IFrame"};if(c[a])b='HTML'+c[a]+'Element';if(window[b])return window[b];b='HTML'+a+'Element';if(window[b])return window[b];b='HTML'+a.capitalize()+'Element';if(window[b])return window[b];window[b]={};window[b].prototype=document.createElement(a).__proto__;return window[b]}if(F.ElementExtensions){copy(Element.Methods,HTMLElement.prototype);copy(Element.Methods.Simulated,HTMLElement.prototype,true)}if(F.SpecificElementExtensions){for(var h in Element.Methods.ByTag){var i=findDOMClass(h);if(Object.isUndefined(i))continue;copy(T[h],i.prototype)}}Object.extend(Element,Element.Methods);delete Element.ByTag;if(Element.extend.refresh)Element.extend.refresh();Element.cache={}};document.viewport={getDimensions:function(){var a={};var B=Prototype.Browser;$w('width height').each(function(d){var D=d.capitalize();a[d]=(B.WebKit&&!document.evaluate)?self['inner'+D]:(B.Opera)?document.body['client'+D]:document.documentElement['client'+D]});return a},getWidth:function(){return this.getDimensions().width},getHeight:function(){return this.getDimensions().height},getScrollOffsets:function(){return Element._returnOffset(window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft,window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop)}};var Selector=Class.create({initialize:function(a){this.expression=a.strip();this.compileMatcher()},shouldUseXPath:function(){if(!Prototype.BrowserFeatures.XPath)return false;var e=this.expression;if(Prototype.Browser.WebKit&&(e.include("-of-type")||e.include(":empty")))return false;if((/(\[[\w-]*?:|:checked)/).test(this.expression))return false;return true},compileMatcher:function(){if(this.shouldUseXPath())return this.compileXPathMatcher();var e=this.expression,ps=Selector.patterns,h=Selector.handlers,c=Selector.criteria,le,p,m;if(Selector._cache[e]){this.matcher=Selector._cache[e];return}this.matcher=["this.matcher = function(root) {","var r = root, h = Selector.handlers, c = false, n;"];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in ps){p=ps[i];if(m=e.match(p)){this.matcher.push(Object.isFunction(c[i])?c[i](m):new Template(c[i]).evaluate(m));e=e.replace(m[0],'');break}}}this.matcher.push("return h.unique(n);\n}");eval(this.matcher.join('\n'));Selector._cache[this.expression]=this.matcher},compileXPathMatcher:function(){var e=this.expression,ps=Selector.patterns,x=Selector.xpath,le,m;if(Selector._cache[e]){this.xpath=Selector._cache[e];return}this.matcher=['.//*'];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in ps){if(m=e.match(ps[i])){this.matcher.push(Object.isFunction(x[i])?x[i](m):new Template(x[i]).evaluate(m));e=e.replace(m[0],'');break}}}this.xpath=this.matcher.join('');Selector._cache[this.expression]=this.xpath},findElements:function(a){a=a||document;if(this.xpath)return document._getElementsByXPath(this.xpath,a);return this.matcher(a)},match:function(a){this.tokens=[];var e=this.expression,ps=Selector.patterns,as=Selector.assertions;var b,p,m;while(e&&b!==e&&(/\S/).test(e)){b=e;for(var i in ps){p=ps[i];if(m=e.match(p)){if(as[i]){this.tokens.push([i,Object.clone(m)]);e=e.replace(m[0],'')}else{return this.findElements(document).include(a)}}}}var c=true,name,matches;for(var i=0,token;token=this.tokens[i];i++){name=token[0],matches=token[1];if(!Selector.assertions[name](a,matches)){c=false;break}}return c},toString:function(){return this.expression},inspect:function(){return"#"}});Object.extend(Selector,{_cache:{},xpath:{descendant:"//*",child:"/*",adjacent:"/following-sibling::*[1]",laterSibling:'/following-sibling::*',tagName:function(m){if(m[1]=='*')return'';return"[local-name()='"+m[1].toLowerCase()+"' or local-name()='"+m[1].toUpperCase()+"']"},className:"[contains(concat(' ', @class, ' '), ' #{1} ')]",id:"[@id='#{1}']",attrPresence:function(m){m[1]=m[1].toLowerCase();return new Template("[@#{1}]").evaluate(m)},attr:function(m){m[1]=m[1].toLowerCase();m[3]=m[5]||m[6];return new Template(Selector.xpath.operators[m[2]]).evaluate(m)},pseudo:function(m){var h=Selector.xpath.pseudos[m[1]];if(!h)return'';if(Object.isFunction(h))return h(m);return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m)},operators:{'=':"[@#{1}='#{3}']",'!=':"[@#{1}!='#{3}']",'^=':"[starts-with(@#{1}, '#{3}')]",'$=':"[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",'*=':"[contains(@#{1}, '#{3}')]",'~=':"[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",'|=':"[contains(concat('-', @#{1}, '-'), '-#{3}-')]"},pseudos:{'first-child':'[not(preceding-sibling::*)]','last-child':'[not(following-sibling::*)]','only-child':'[not(preceding-sibling::* or following-sibling::*)]','empty':"[count(*) = 0 and (count(text()) = 0 or translate(text(), ' \t\r\n', '') = '')]",'checked':"[@checked]",'disabled':"[@disabled]",'enabled':"[not(@disabled)]",'not':function(m){var e=m[6],p=Selector.patterns,x=Selector.xpath,le,v;var a=[];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in p){if(m=e.match(p[i])){v=Object.isFunction(x[i])?x[i](m):new Template(x[i]).evaluate(m);a.push("("+v.substring(1,v.length-1)+")");e=e.replace(m[0],'');break}}}return"[not("+a.join(" and ")+")]"},'nth-child':function(m){return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ",m)},'nth-last-child':function(m){return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ",m)},'nth-of-type':function(m){return Selector.xpath.pseudos.nth("position() ",m)},'nth-last-of-type':function(m){return Selector.xpath.pseudos.nth("(last() + 1 - position()) ",m)},'first-of-type':function(m){m[6]="1";return Selector.xpath.pseudos['nth-of-type'](m)},'last-of-type':function(m){m[6]="1";return Selector.xpath.pseudos['nth-last-of-type'](m)},'only-of-type':function(m){var p=Selector.xpath.pseudos;return p['first-of-type'](m)+p['last-of-type'](m)},nth:function(c,m){var d,formula=m[6],predicate;if(formula=='even')formula='2n+0';if(formula=='odd')formula='2n+1';if(d=formula.match(/^(\d+)$/))return'['+c+"= "+d[1]+']';if(d=formula.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(d[1]=="-")d[1]=-1;var a=d[1]?Number(d[1]):1;var b=d[2]?Number(d[2]):0;predicate="[((#{fragment} - #{b}) mod #{a} = 0) and "+"((#{fragment} - #{b}) div #{a} >= 0)]";return new Template(predicate).evaluate({fragment:c,a:a,b:b})}}}},criteria:{tagName:'n = h.tagName(n, r, "#{1}", c); c = false;',className:'n = h.className(n, r, "#{1}", c); c = false;',id:'n = h.id(n, r, "#{1}", c); c = false;',attrPresence:'n = h.attrPresence(n, r, "#{1}", c); c = false;',attr:function(m){m[3]=(m[5]||m[6]);return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m)},pseudo:function(m){if(m[6])m[6]=m[6].replace(/"/g,'\\"');return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m)},descendant:'c = "descendant";',child:'c = "child";',adjacent:'c = "adjacent";',laterSibling:'c = "laterSibling";'},patterns:{laterSibling:/^\s*~\s*/,child:/^\s*>\s*/,adjacent:/^\s*\+\s*/,descendant:/^\s/,tagName:/^\s*(\*|[\w\-]+)(\b|$)?/,id:/^#([\w\-\*]+)(\b|$)/,className:/^\.([\w\-\*]+)(\b|$)/,pseudo:/^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/,attrPresence:/^\[([\w]+)\]/,attr:/\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/},assertions:{tagName:function(a,b){return b[1].toUpperCase()==a.tagName.toUpperCase()},className:function(a,b){return Element.hasClassName(a,b[1])},id:function(a,b){return a.id===b[1]},attrPresence:function(a,b){return Element.hasAttribute(a,b[1])},attr:function(a,b){var c=Element.readAttribute(a,b[1]);return c&&Selector.operators[b[2]](c,b[5]||b[6])}},handlers:{concat:function(a,b){for(var i=0,node;node=b[i];i++)a.push(node);return a},mark:function(a){var b=Prototype.emptyFunction;for(var i=0,node;node=a[i];i++)node._countedByPrototype=b;return a},unmark:function(a){for(var i=0,node;node=a[i];i++)node._countedByPrototype=undefined;return a},index:function(a,b,c){a._countedByPrototype=Prototype.emptyFunction;if(b){for(var d=a.childNodes,i=d.length-1,j=1;i>=0;i--){var e=d[i];if(e.nodeType==1&&(!c||e._countedByPrototype))e.nodeIndex=j++}}else{for(var i=0,j=1,d=a.childNodes;e=d[i];i++)if(e.nodeType==1&&(!c||e._countedByPrototype))e.nodeIndex=j++}},unique:function(a){if(a.length==0)return a;var b=[],n;for(var i=0,l=a.length;i0?[b]:[];return $R(1,d).inject([],function(c,i){if(0==(i-b)%a&&(i-b)/a>=0)c.push(i);return c})},nth:function(c,d,e,f,g){if(c.length==0)return[];if(d=='even')d='2n+0';if(d=='odd')d='2n+1';var h=Selector.handlers,results=[],indexed=[],m;h.mark(c);for(var i=0,node;node=c[i];i++){if(!node.parentNode._countedByPrototype){h.index(node.parentNode,f,g);indexed.push(node.parentNode)}}if(d.match(/^\d+$/)){d=Number(d);for(var i=0,node;node=c[i];i++)if(node.nodeIndex==d)results.push(node)}else if(m=d.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(m[1]=="-")m[1]=-1;var a=m[1]?Number(m[1]):1;var b=m[2]?Number(m[2]):0;var k=Selector.pseudos.getIndices(a,b,c.length);for(var i=0,node,l=k.length;node=c[i];i++){for(var j=0;j+()\s-]+|\*|\[.*?\])+)\s*(,|$)/,function(m){b.push(m[1].strip())});return b},matchElements:function(a,b){var c=$$(b),h=Selector.handlers;h.mark(c);for(var i=0,results=[],element;element=a[i];i++)if(element._countedByPrototype)results.push(element);h.unmark(c);return results},findElement:function(a,b,c){if(Object.isNumber(b)){c=b;b=false}return Selector.matchElements(a,b||'*')[c||0]},findChildElements:function(a,b){b=Selector.split(b.join(','));var c=[],h=Selector.handlers;for(var i=0,l=b.length,selector;i1)?h.unique(c):c}});if(Prototype.Browser.IE){Object.extend(Selector.handlers,{concat:function(a,b){for(var i=0,node;node=b[i];i++)if(node.tagName!=="!")a.push(node);return a},unmark:function(a){for(var i=0,node;node=a[i];i++)node.removeAttribute('_countedByPrototype');return a}})}function $$(){return Selector.findChildElements(document,$A(arguments))}var Form={reset:function(a){$(a).reset();return a},serializeElements:function(c,d){if(typeof d!='object')d={hash:!!d};else if(Object.isUndefined(d.hash))d.hash=true;var e,value,submitted=false,submit=d.submit;var f=c.inject({},function(a,b){if(!b.disabled&&b.name){e=b.name;value=$(b).getValue();if(value!=null&&(b.type!='submit'||(!submitted&&submit!==false&&(!submit||e==submit)&&(submitted=true)))){if(e in a){if(!Object.isArray(a[e]))a[e]=[a[e]];a[e].push(value)}else a[e]=value}}return a});return d.hash?f:Object.toQueryString(f)}};Form.Methods={serialize:function(a,b){return Form.serializeElements(Form.getElements(a),b)},getElements:function(c){return $A($(c).getElementsByTagName('*')).inject([],function(a,b){if(Form.Element.Serializers[b.tagName.toLowerCase()])a.push(Element.extend(b));return a})},getInputs:function(a,b,c){a=$(a);var d=a.getElementsByTagName('input');if(!b&&!c)return $A(d).map(Element.extend);for(var i=0,matchingInputs=[],length=d.length;i=0}).sortBy(function(a){return a.tabIndex}).first();return d?d:c.find(function(a){return['input','select','textarea'].include(a.tagName.toLowerCase())})},focusFirstElement:function(a){a=$(a);a.findFirstElement().activate();return a},request:function(a,b){a=$(a),b=Object.clone(b||{});var c=b.parameters,action=a.readAttribute('action')||'';if(action.blank())action=window.location.href;b.parameters=a.serialize(true);if(c){if(Object.isString(c))c=c.toQueryParams();Object.extend(b.parameters,c)}if(a.hasAttribute('method')&&!b.method)b.method=a.method;return new Ajax.Request(action,b)}};Form.Element={focus:function(a){$(a).focus();return a},select:function(a){$(a).select();return a}};Form.Element.Methods={serialize:function(a){a=$(a);if(!a.disabled&&a.name){var b=a.getValue();if(b!=undefined){var c={};c[a.name]=b;return Object.toQueryString(c)}}return''},getValue:function(a){a=$(a);var b=a.tagName.toLowerCase();return Form.Element.Serializers[b](a)},setValue:function(a,b){a=$(a);var c=a.tagName.toLowerCase();Form.Element.Serializers[c](a,b);return a},clear:function(a){$(a).value='';return a},present:function(a){return $(a).value!=''},activate:function(a){a=$(a);try{a.focus();if(a.select&&(a.tagName.toLowerCase()!='input'||!['button','reset','submit'].include(a.type)))a.select()}catch(e){}return a},disable:function(a){a=$(a);a.blur();a.disabled=true;return a},enable:function(a){a=$(a);a.disabled=false;return a}};var Field=Form.Element;var $F=Form.Element.Methods.getValue;Form.Element.Serializers={input:function(a,b){switch(a.type.toLowerCase()){case'checkbox':case'radio':return Form.Element.Serializers.inputSelector(a,b);default:return Form.Element.Serializers.textarea(a,b)}},inputSelector:function(a,b){if(Object.isUndefined(b))return a.checked?a.value:null;else a.checked=!!b},textarea:function(a,b){if(Object.isUndefined(b))return a.value;else a.value=b},select:function(a,b){if(Object.isUndefined(b))return this[a.type=='select-one'?'selectOne':'selectMany'](a);else{var c,value,single=!Object.isArray(b);for(var i=0,length=a.length;i=0?this.optionValue(a.options[b]):null},selectMany:function(a){var b,length=a.length;if(!length)return null;for(var i=0,b=[];i<\/script>");$("__onDOMContentLoaded").onreadystatechange=function(){if(this.readyState=="complete"){this.onreadystatechange=null;fireContentLoadedEvent()}}}})();Hash.toQueryString=Object.toQueryString;var Toggle={display:Element.toggle};Element.Methods.childOf=Element.Methods.descendantOf;var Insertion={Before:function(a,b){return Element.insert(a,{before:b})},Top:function(a,b){return Element.insert(a,{top:b})},Bottom:function(a,b){return Element.insert(a,{bottom:b})},After:function(a,b){return Element.insert(a,{after:b})}};var $continue=new Error('"throw $continue" is deprecated, use "return" instead');var Position={includeScrollOffsets:false,prepare:function(){this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0},within:function(a,x,y){if(this.includeScrollOffsets)return this.withinIncludingScrolloffsets(a,x,y);this.xcomp=x;this.ycomp=y;this.offset=Element.cumulativeOffset(a);return(y>=this.offset[1]&&y=this.offset[0]&&x=this.offset[1]&&this.ycomp=this.offset[0]&&this.xcomp0})._each(b)},set:function(a){this.element.className=a},add:function(a){if(this.include(a))return;this.set($A(this).concat(a).join(' '))},remove:function(a){if(!this.include(a))return;this.set($A(this).without(a).join(' '))},toString:function(){return $A(this).join(' ')}};Object.extend(Element.ClassNames.prototype,Enumerable);Element.addMethods(); /* moofx.js */ eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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}('g 5=17={};5.j=4(){};5.j.q={r:4(a){3.7=s.u({K:4(){},L:4(){},M:5.N.O,w:18,P:\'19\',x:1a,Q:1b},a||{})},R:4(){g a=k S().T();8(a<3.y+3.7.w){3.U=a-3.y;3.z()}A{V(3.7.L.B(3,3.h),10);3.C();3.9=3.l}3.m()},z:4(){3.9=3.D(3.n,3.l)},D:4(a,b){g c=b-a;6 3.7.M(3.U,a,c,3.7.w)},C:4(){1c(3.i);3.i=1d;6 3},E:4(a,b){8(!3.7.x)3.C();8(3.i)6;V(3.7.K.B(3,3.h),10);3.n=a;3.l=b;3.y=k S().T();3.i=1e(3.R.B(3),F.1f(1g/3.7.Q));6 3},W:4(a,b){6 3.E(a,b)},X:4(a){3.9=a;3.m();6 3},1h:4(){6 3.X(0)},G:4(e,p,v){8(p==\'H\'){8(v==0&&e.f.o!="Y")e.f.o="Y";A 8(e.f.o!="Z")e.f.o="Z";8(1i.1j)e.f.1k="1l(H="+v*1m+")";e.f.H=v}A e.f[p]=v+3.7.P}};5.11=12.13();5.11.q=s.u(k 5.j(),{14:4(a,b,c){3.h=$(a);3.r(c);3.15=b.1n()},m:4(){3.G(3.h,3.15,3.9)}});5.16=12.13();5.16.q=s.u(k 5.j(),{14:4(a,b){3.h=$(a);3.r(b);3.9={}},z:4(){I(p J 3.n)3.9[p]=3.D(3.n[p],3.l[p])},W:4(a){8(3.i&&3.7.x)6;g b={};g c={};I(p J a){b[p]=a[p][0];c[p]=a[p][1]}6 3.E(b,c)},m:4(){I(g p J 3.9)3.G(3.h,p,3.9[p])}});5.N={1o:4(t,b,c,d){6 c*t/d+b},O:4(t,b,c,d){6-c/2*(F.1p(F.1q*t/d)-1)+b}};',62,89,'|||this|function|Fx|return|options|if|now||||||style|var|element|timer|Base|new|to|increase|from|visibility||prototype|setOptions|Object||extend||duration|wait|time|setNow|else|bind|clearTimer|compute|_start|Math|setStyle|opacity|for|in|onStart|onComplete|transition|Transitions|sineInOut|unit|fps|step|Date|getTime|cTime|setTimeout|custom|set|hidden|visible||Style|Class|create|initialize|property|Styles|fx|500|px|true|50|clearInterval|null|setInterval|round|1000|hide|window|ActiveXObject|filter|alpha|100|camelize|linear|cos|PI'.split('|'),0,{})) /* jQuery 1.2.3 - New Wave Javascript */ eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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}('(J(){7(1e.3N)L w=1e.3N;L E=1e.3N=J(a,b){K 1B E.2l.4T(a,b)};7(1e.$)L D=1e.$;1e.$=E;L u=/^[^<]*(<(.|\\s)+>)[^>]*$|^#(\\w+)$/;L G=/^.[^:#\\[\\.]*$/;E.1n=E.2l={4T:J(d,b){d=d||T;7(d.15){6[0]=d;6.M=1;K 6}N 7(1o d=="25"){L c=u.2O(d);7(c&&(c[1]||!b)){7(c[1])d=E.4a([c[1]],b);N{L a=T.5J(c[3]);7(a)7(a.2w!=c[3])K E().2s(d);N{6[0]=a;6.M=1;K 6}N d=[]}}N K 1B E(b).2s(d)}N 7(E.1q(d))K 1B E(T)[E.1n.21?"21":"3U"](d);K 6.6E(d.1k==1M&&d||(d.5h||d.M&&d!=1e&&!d.15&&d[0]!=10&&d[0].15)&&E.2I(d)||[d])},5h:"1.2.3",87:J(){K 6.M},M:0,22:J(a){K a==10?E.2I(6):6[a]},2F:J(b){L a=E(b);a.54=6;K a},6E:J(a){6.M=0;1M.2l.1g.1i(6,a);K 6},R:J(a,b){K E.R(6,a,b)},4X:J(b){L a=-1;6.R(J(i){7(6==b)a=i});K a},1J:J(c,a,b){L d=c;7(c.1k==4e)7(a==10)K 6.M&&E[b||"1J"](6[0],c)||10;N{d={};d[c]=a}K 6.R(J(i){Q(c 1p d)E.1J(b?6.W:6,c,E.1l(6,d[c],b,i,c))})},1j:J(b,a){7((b==\'27\'||b==\'1R\')&&2M(a)<0)a=10;K 6.1J(b,a,"2o")},1u:J(b){7(1o b!="3V"&&b!=V)K 6.4x().3t((6[0]&&6[0].2i||T).5r(b));L a="";E.R(b||6,J(){E.R(6.3p,J(){7(6.15!=8)a+=6.15!=1?6.6K:E.1n.1u([6])})});K a},5m:J(b){7(6[0])E(b,6[0].2i).5k().3o(6[0]).2c(J(){L a=6;2b(a.1C)a=a.1C;K a}).3t(6);K 6},8w:J(a){K 6.R(J(){E(6).6z().5m(a)})},8p:J(a){K 6.R(J(){E(6).5m(a)})},3t:J(){K 6.3O(18,P,S,J(a){7(6.15==1)6.38(a)})},6q:J(){K 6.3O(18,P,P,J(a){7(6.15==1)6.3o(a,6.1C)})},6o:J(){K 6.3O(18,S,S,J(a){6.1a.3o(a,6)})},5a:J(){K 6.3O(18,S,P,J(a){6.1a.3o(a,6.2B)})},3h:J(){K 6.54||E([])},2s:J(b){L c=E.2c(6,J(a){K E.2s(b,a)});K 6.2F(/[^+>] [^+>]/.17(b)||b.1f("..")>-1?E.57(c):c)},5k:J(e){L f=6.2c(J(){7(E.14.1d&&!E.3E(6)){L a=6.69(P),4Y=T.3s("1x");4Y.38(a);K E.4a([4Y.3d])[0]}N K 6.69(P)});L d=f.2s("*").4R().R(J(){7(6[F]!=10)6[F]=V});7(e===P)6.2s("*").4R().R(J(i){7(6.15==3)K;L c=E.O(6,"2R");Q(L a 1p c)Q(L b 1p c[a])E.16.1b(d[i],a,c[a][b],c[a][b].O)});K f},1E:J(b){K 6.2F(E.1q(b)&&E.3y(6,J(a,i){K b.1P(a,i)})||E.3e(b,6))},56:J(b){7(b.1k==4e)7(G.17(b))K 6.2F(E.3e(b,6,P));N b=E.3e(b,6);L a=b.M&&b[b.M-1]!==10&&!b.15;K 6.1E(J(){K a?E.33(6,b)<0:6!=b})},1b:J(a){K!a?6:6.2F(E.37(6.22(),a.1k==4e?E(a).22():a.M!=10&&(!a.12||E.12(a,"3u"))?a:[a]))},3H:J(a){K a?E.3e(a,6).M>0:S},7j:J(a){K 6.3H("."+a)},5O:J(b){7(b==10){7(6.M){L c=6[0];7(E.12(c,"2k")){L e=c.3T,5I=[],11=c.11,2X=c.U=="2k-2X";7(e<0)K V;Q(L i=2X?e:0,2f=2X?e+1:11.M;i<2f;i++){L d=11[i];7(d.2p){b=E.14.1d&&!d.9J.1A.9y?d.1u:d.1A;7(2X)K b;5I.1g(b)}}K 5I}N K(6[0].1A||"").1r(/\\r/g,"")}K 10}K 6.R(J(){7(6.15!=1)K;7(b.1k==1M&&/5u|5t/.17(6.U))6.3k=(E.33(6.1A,b)>=0||E.33(6.31,b)>=0);N 7(E.12(6,"2k")){L a=b.1k==1M?b:[b];E("98",6).R(J(){6.2p=(E.33(6.1A,a)>=0||E.33(6.1u,a)>=0)});7(!a.M)6.3T=-1}N 6.1A=b})},3q:J(a){K a==10?(6.M?6[0].3d:V):6.4x().3t(a)},6S:J(a){K 6.5a(a).1V()},6Z:J(i){K 6.2K(i,i+1)},2K:J(){K 6.2F(1M.2l.2K.1i(6,18))},2c:J(b){K 6.2F(E.2c(6,J(a,i){K b.1P(a,i,a)}))},4R:J(){K 6.1b(6.54)},O:J(d,b){L a=d.23(".");a[1]=a[1]?"."+a[1]:"";7(b==V){L c=6.5n("8P"+a[1]+"!",[a[0]]);7(c==10&&6.M)c=E.O(6[0],d);K c==V&&a[1]?6.O(a[0]):c}N K 6.1N("8K"+a[1]+"!",[a[0],b]).R(J(){E.O(6,d,b)})},35:J(a){K 6.R(J(){E.35(6,a)})},3O:J(g,f,h,d){L e=6.M>1,3n;K 6.R(J(){7(!3n){3n=E.4a(g,6.2i);7(h)3n.8D()}L b=6;7(f&&E.12(6,"1O")&&E.12(3n[0],"4v"))b=6.3S("1U")[0]||6.38(6.2i.3s("1U"));L c=E([]);E.R(3n,J(){L a=e?E(6).5k(P)[0]:6;7(E.12(a,"1m")){c=c.1b(a)}N{7(a.15==1)c=c.1b(E("1m",a).1V());d.1P(b,a)}});c.R(6A)})}};E.2l.4T.2l=E.2l;J 6A(i,a){7(a.3Q)E.3P({1c:a.3Q,3l:S,1H:"1m"});N E.5g(a.1u||a.6x||a.3d||"");7(a.1a)a.1a.34(a)}E.1s=E.1n.1s=J(){L b=18[0]||{},i=1,M=18.M,5c=S,11;7(b.1k==8d){5c=b;b=18[1]||{};i=2}7(1o b!="3V"&&1o b!="J")b={};7(M==1){b=6;i=0}Q(;i-1}},68:J(b,c,a){L e={};Q(L d 1p c){e[d]=b.W[d];b.W[d]=c[d]}a.1P(b);Q(L d 1p c)b.W[d]=e[d]},1j:J(d,e,c){7(e=="27"||e=="1R"){L b,46={43:"4W",4U:"1Z",19:"3D"},3c=e=="27"?["7O","7M"]:["7J","7I"];J 5E(){b=e=="27"?d.7H:d.7F;L a=0,2N=0;E.R(3c,J(){a+=2M(E.2o(d,"7E"+6,P))||0;2N+=2M(E.2o(d,"2N"+6+"5X",P))||0});b-=24.7C(a+2N)}7(E(d).3H(":4d"))5E();N E.68(d,46,5E);K 24.2f(0,b)}K E.2o(d,e,c)},2o:J(e,k,j){L d;J 3x(b){7(!E.14.2d)K S;L a=T.4c.4K(b,V);K!a||a.4M("3x")==""}7(k=="1w"&&E.14.1d){d=E.1J(e.W,"1w");K d==""?"1":d}7(E.14.2z&&k=="19"){L c=e.W.50;e.W.50="0 7r 7o";e.W.50=c}7(k.1D(/4g/i))k=y;7(!j&&e.W&&e.W[k])d=e.W[k];N 7(T.4c&&T.4c.4K){7(k.1D(/4g/i))k="4g";k=k.1r(/([A-Z])/g,"-$1").2h();L h=T.4c.4K(e,V);7(h&&!3x(e))d=h.4M(k);N{L f=[],2C=[];Q(L a=e;a&&3x(a);a=a.1a)2C.4J(a);Q(L i=0;i<2C.M;i++)7(3x(2C[i])){f[i]=2C[i].W.19;2C[i].W.19="3D"}d=k=="19"&&f[2C.M-1]!=V?"2H":(h&&h.4M(k))||"";Q(L i=0;i]*?)\\/>/g,J(b,a,c){K c.1D(/^(aa|a6|7e|a5|4D|7a|a0|3m|9W|9U|9S)$/i)?b:a+">"});L f=E.3g(d).2h(),1x=h.3s("1x");L e=!f.1f("<9P")&&[1,"<2k 74=\'74\'>",""]||!f.1f("<9M")&&[1,"<73>",""]||f.1D(/^<(9G|1U|9E|9B|9x)/)&&[1,"<1O>",""]||!f.1f("<4v")&&[2,"<1O><1U>",""]||(!f.1f("<9w")||!f.1f("<9v"))&&[3,"<1O><1U><4v>",""]||!f.1f("<7e")&&[2,"<1O><1U><6V>",""]||E.14.1d&&[1,"1x<1x>",""]||[0,"",""];1x.3d=e[1]+d+e[2];2b(e[0]--)1x=1x.5o;7(E.14.1d){L g=!f.1f("<1O")&&f.1f("<1U")<0?1x.1C&&1x.1C.3p:e[1]=="<1O>"&&f.1f("<1U")<0?1x.3p:[];Q(L j=g.M-1;j>=0;--j)7(E.12(g[j],"1U")&&!g[j].3p.M)g[j].1a.34(g[j]);7(/^\\s/.17(d))1x.3o(h.5r(d.1D(/^\\s*/)[0]),1x.1C)}d=E.2I(1x.3p)}7(d.M===0&&(!E.12(d,"3u")&&!E.12(d,"2k")))K;7(d[0]==10||E.12(d,"3u")||d.11)k.1g(d);N k=E.37(k,d)});K k},1J:J(d,e,c){7(!d||d.15==3||d.15==8)K 10;L f=E.3E(d)?{}:E.46;7(e=="2p"&&E.14.2d)d.1a.3T;7(f[e]){7(c!=10)d[f[e]]=c;K d[f[e]]}N 7(E.14.1d&&e=="W")K E.1J(d.W,"9u",c);N 7(c==10&&E.14.1d&&E.12(d,"3u")&&(e=="9r"||e=="9o"))K d.9m(e).6K;N 7(d.28){7(c!=10){7(e=="U"&&E.12(d,"4D")&&d.1a)6Q"U 9i 9h\'t 9g 9e";d.9b(e,""+c)}7(E.14.1d&&/6O|3Q/.17(e)&&!E.3E(d))K d.4z(e,2);K d.4z(e)}N{7(e=="1w"&&E.14.1d){7(c!=10){d.6k=1;d.1E=(d.1E||"").1r(/6M\\([^)]*\\)/,"")+(2M(c).3X()=="96"?"":"6M(1w="+c*6L+")")}K d.1E&&d.1E.1f("1w=")>=0?(2M(d.1E.1D(/1w=([^)]*)/)[1])/6L).3X():""}e=e.1r(/-([a-z])/95,J(a,b){K b.2E()});7(c!=10)d[e]=c;K d[e]}},3g:J(a){K(a||"").1r(/^\\s+|\\s+$/g,"")},2I:J(b){L a=[];7(1o b!="93")Q(L i=0,M=b.M;i*",6).1V();2b(6.1C)6.34(6.1C)}},J(a,b){E.1n[a]=J(){K 6.R(b,18)}});E.R(["8f","5X"],J(i,c){L b=c.2h();E.1n[b]=J(a){K 6[0]==1e?E.14.2z&&T.1h["5e"+c]||E.14.2d&&1e["8e"+c]||T.6F=="79"&&T.1F["5e"+c]||T.1h["5e"+c]:6[0]==T?24.2f(24.2f(T.1h["5d"+c],T.1F["5d"+c]),24.2f(T.1h["5L"+c],T.1F["5L"+c])):a==10?(6.M?E.1j(6[0],b):V):6.1j(b,a.1k==4e?a:a+"2S")}});L C=E.14.2d&&4s(E.14.5K)<8c?"(?:[\\\\w*4r-]|\\\\\\\\.)":"(?:[\\\\w\\8b-\\8a*4r-]|\\\\\\\\.)",6v=1B 4q("^>\\\\s*("+C+"+)"),6u=1B 4q("^("+C+"+)(#)("+C+"+)"),6s=1B 4q("^([#.]?)("+C+"*)");E.1s({6r:{"":J(a,i,m){K m[2]=="*"||E.12(a,m[2])},"#":J(a,i,m){K a.4z("2w")==m[2]},":":{89:J(a,i,m){K im[3]-0},2Z:J(a,i,m){K m[3]-0==i},6Z:J(a,i,m){K m[3]-0==i},3j:J(a,i){K i==0},3J:J(a,i,m,r){K i==r.M-1},6n:J(a,i){K i%2==0},6l:J(a,i){K i%2},"3j-4p":J(a){K a.1a.3S("*")[0]==a},"3J-4p":J(a){K E.2Z(a.1a.5o,1,"4t")==a},"83-4p":J(a){K!E.2Z(a.1a.5o,2,"4t")},6B:J(a){K a.1C},4x:J(a){K!a.1C},82:J(a,i,m){K(a.6x||a.81||E(a).1u()||"").1f(m[3])>=0},4d:J(a){K"1Z"!=a.U&&E.1j(a,"19")!="2H"&&E.1j(a,"4U")!="1Z"},1Z:J(a){K"1Z"==a.U||E.1j(a,"19")=="2H"||E.1j(a,"4U")=="1Z"},80:J(a){K!a.2Y},2Y:J(a){K a.2Y},3k:J(a){K a.3k},2p:J(a){K a.2p||E.1J(a,"2p")},1u:J(a){K"1u"==a.U},5u:J(a){K"5u"==a.U},5t:J(a){K"5t"==a.U},59:J(a){K"59"==a.U},3I:J(a){K"3I"==a.U},58:J(a){K"58"==a.U},6j:J(a){K"6j"==a.U},6i:J(a){K"6i"==a.U},2G:J(a){K"2G"==a.U||E.12(a,"2G")},4D:J(a){K/4D|2k|6h|2G/i.17(a.12)},3Y:J(a,i,m){K E.2s(m[3],a).M},7X:J(a){K/h\\d/i.17(a.12)},7W:J(a){K E.3y(E.3G,J(b){K a==b.Y}).M}}},6g:[/^(\\[) *@?([\\w-]+) *([!*$^~=]*) *(\'?"?)(.*?)\\4 *\\]/,/^(:)([\\w-]+)\\("?\'?(.*?(\\(.*?\\))?[^(]*?)"?\'?\\)/,1B 4q("^([:.#]*)("+C+"+)")],3e:J(a,c,b){L d,2m=[];2b(a&&a!=d){d=a;L f=E.1E(a,c,b);a=f.t.1r(/^\\s*,\\s*/,"");2m=b?c=f.r:E.37(2m,f.r)}K 2m},2s:J(t,p){7(1o t!="25")K[t];7(p&&p.15!=1&&p.15!=9)K[];p=p||T;L d=[p],2r=[],3J,12;2b(t&&3J!=t){L r=[];3J=t;t=E.3g(t);L o=S;L g=6v;L m=g.2O(t);7(m){12=m[1].2E();Q(L i=0;d[i];i++)Q(L c=d[i].1C;c;c=c.2B)7(c.15==1&&(12=="*"||c.12.2E()==12))r.1g(c);d=r;t=t.1r(g,"");7(t.1f(" ")==0)6w;o=P}N{g=/^([>+~])\\s*(\\w*)/i;7((m=g.2O(t))!=V){r=[];L l={};12=m[2].2E();m=m[1];Q(L j=0,3f=d.M;j<3f;j++){L n=m=="~"||m=="+"?d[j].2B:d[j].1C;Q(;n;n=n.2B)7(n.15==1){L h=E.O(n);7(m=="~"&&l[h])1Q;7(!12||n.12.2E()==12){7(m=="~")l[h]=P;r.1g(n)}7(m=="+")1Q}}d=r;t=E.3g(t.1r(g,""));o=P}}7(t&&!o){7(!t.1f(",")){7(p==d[0])d.4l();2r=E.37(2r,d);r=d=[p];t=" "+t.6e(1,t.M)}N{L k=6u;L m=k.2O(t);7(m){m=[0,m[2],m[3],m[1]]}N{k=6s;m=k.2O(t)}m[2]=m[2].1r(/\\\\/g,"");L f=d[d.M-1];7(m[1]=="#"&&f&&f.5J&&!E.3E(f)){L q=f.5J(m[2]);7((E.14.1d||E.14.2z)&&q&&1o q.2w=="25"&&q.2w!=m[2])q=E(\'[@2w="\'+m[2]+\'"]\',f)[0];d=r=q&&(!m[3]||E.12(q,m[3]))?[q]:[]}N{Q(L i=0;d[i];i++){L a=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];7(a=="*"&&d[i].12.2h()=="3V")a="3m";r=E.37(r,d[i].3S(a))}7(m[1]==".")r=E.55(r,m[2]);7(m[1]=="#"){L e=[];Q(L i=0;r[i];i++)7(r[i].4z("2w")==m[2]){e=[r[i]];1Q}r=e}d=r}t=t.1r(k,"")}}7(t){L b=E.1E(t,r);d=r=b.r;t=E.3g(b.t)}}7(t)d=[];7(d&&p==d[0])d.4l();2r=E.37(2r,d);K 2r},55:J(r,m,a){m=" "+m+" ";L c=[];Q(L i=0;r[i];i++){L b=(" "+r[i].1t+" ").1f(m)>=0;7(!a&&b||a&&!b)c.1g(r[i])}K c},1E:J(t,r,h){L d;2b(t&&t!=d){d=t;L p=E.6g,m;Q(L i=0;p[i];i++){m=p[i].2O(t);7(m){t=t.7V(m[0].M);m[2]=m[2].1r(/\\\\/g,"");1Q}}7(!m)1Q;7(m[1]==":"&&m[2]=="56")r=G.17(m[3])?E.1E(m[3],r,P).r:E(r).56(m[3]);N 7(m[1]==".")r=E.55(r,m[2],h);N 7(m[1]=="["){L g=[],U=m[3];Q(L i=0,3f=r.M;i<3f;i++){L a=r[i],z=a[E.46[m[2]]||m[2]];7(z==V||/6O|3Q|2p/.17(m[2]))z=E.1J(a,m[2])||\'\';7((U==""&&!!z||U=="="&&z==m[5]||U=="!="&&z!=m[5]||U=="^="&&z&&!z.1f(m[5])||U=="$="&&z.6e(z.M-m[5].M)==m[5]||(U=="*="||U=="~=")&&z.1f(m[5])>=0)^h)g.1g(a)}r=g}N 7(m[1]==":"&&m[2]=="2Z-4p"){L e={},g=[],17=/(-?)(\\d*)n((?:\\+|-)?\\d*)/.2O(m[3]=="6n"&&"2n"||m[3]=="6l"&&"2n+1"||!/\\D/.17(m[3])&&"7U+"+m[3]||m[3]),3j=(17[1]+(17[2]||1))-0,d=17[3]-0;Q(L i=0,3f=r.M;i<3f;i++){L j=r[i],1a=j.1a,2w=E.O(1a);7(!e[2w]){L c=1;Q(L n=1a.1C;n;n=n.2B)7(n.15==1)n.4k=c++;e[2w]=P}L b=S;7(3j==0){7(j.4k==d)b=P}N 7((j.4k-d)%3j==0&&(j.4k-d)/3j>=0)b=P;7(b^h)g.1g(j)}r=g}N{L f=E.6r[m[1]];7(1o f=="3V")f=f[m[2]];7(1o f=="25")f=6c("S||J(a,i){K "+f+";}");r=E.3y(r,J(a,i){K f(a,i,m,r)},h)}}K{r:r,t:t}},4u:J(b,c){L d=[];L a=b[c];2b(a&&a!=T){7(a.15==1)d.1g(a);a=a[c]}K d},2Z:J(a,e,c,b){e=e||1;L d=0;Q(;a;a=a[c])7(a.15==1&&++d==e)1Q;K a},5i:J(n,a){L r=[];Q(;n;n=n.2B){7(n.15==1&&(!a||n!=a))r.1g(n)}K r}});E.16={1b:J(f,i,g,e){7(f.15==3||f.15==8)K;7(E.14.1d&&f.53!=10)f=1e;7(!g.2D)g.2D=6.2D++;7(e!=10){L h=g;g=J(){K h.1i(6,18)};g.O=e;g.2D=h.2D}L j=E.O(f,"2R")||E.O(f,"2R",{}),1v=E.O(f,"1v")||E.O(f,"1v",J(){L a;7(1o E=="10"||E.16.5f)K a;a=E.16.1v.1i(18.3R.Y,18);K a});1v.Y=f;E.R(i.23(/\\s+/),J(c,b){L a=b.23(".");b=a[0];g.U=a[1];L d=j[b];7(!d){d=j[b]={};7(!E.16.2y[b]||E.16.2y[b].4j.1P(f)===S){7(f.3F)f.3F(b,1v,S);N 7(f.6b)f.6b("4i"+b,1v)}}d[g.2D]=g;E.16.2a[b]=P});f=V},2D:1,2a:{},1V:J(e,h,f){7(e.15==3||e.15==8)K;L i=E.O(e,"2R"),29,4X;7(i){7(h==10||(1o h=="25"&&h.7T(0)=="."))Q(L g 1p i)6.1V(e,g+(h||""));N{7(h.U){f=h.2q;h=h.U}E.R(h.23(/\\s+/),J(b,a){L c=a.23(".");a=c[0];7(i[a]){7(f)2V i[a][f.2D];N Q(f 1p i[a])7(!c[1]||i[a][f].U==c[1])2V i[a][f];Q(29 1p i[a])1Q;7(!29){7(!E.16.2y[a]||E.16.2y[a].4h.1P(e)===S){7(e.67)e.67(a,E.O(e,"1v"),S);N 7(e.66)e.66("4i"+a,E.O(e,"1v"))}29=V;2V i[a]}}})}Q(29 1p i)1Q;7(!29){L d=E.O(e,"1v");7(d)d.Y=V;E.35(e,"2R");E.35(e,"1v")}}},1N:J(g,c,d,f,h){c=E.2I(c||[]);7(g.1f("!")>=0){g=g.2K(0,-1);L a=P}7(!d){7(6.2a[g])E("*").1b([1e,T]).1N(g,c)}N{7(d.15==3||d.15==8)K 10;L b,29,1n=E.1q(d[g]||V),16=!c[0]||!c[0].36;7(16)c.4J(6.4Z({U:g,2L:d}));c[0].U=g;7(a)c[0].65=P;7(E.1q(E.O(d,"1v")))b=E.O(d,"1v").1i(d,c);7(!1n&&d["4i"+g]&&d["4i"+g].1i(d,c)===S)b=S;7(16)c.4l();7(h&&E.1q(h)){29=h.1i(d,b==V?c:c.71(b));7(29!==10)b=29}7(1n&&f!==S&&b!==S&&!(E.12(d,\'a\')&&g=="4V")){6.5f=P;1S{d[g]()}1X(e){}}6.5f=S}K b},1v:J(c){L a;c=E.16.4Z(c||1e.16||{});L b=c.U.23(".");c.U=b[0];L f=E.O(6,"2R")&&E.O(6,"2R")[c.U],42=1M.2l.2K.1P(18,1);42.4J(c);Q(L j 1p f){L d=f[j];42[0].2q=d;42[0].O=d.O;7(!b[1]&&!c.65||d.U==b[1]){L e=d.1i(6,42);7(a!==S)a=e;7(e===S){c.36();c.44()}}}7(E.14.1d)c.2L=c.36=c.44=c.2q=c.O=V;K a},4Z:J(c){L a=c;c=E.1s({},a);c.36=J(){7(a.36)a.36();a.7S=S};c.44=J(){7(a.44)a.44();a.7R=P};7(!c.2L)c.2L=c.7Q||T;7(c.2L.15==3)c.2L=a.2L.1a;7(!c.4S&&c.5w)c.4S=c.5w==c.2L?c.7P:c.5w;7(c.64==V&&c.63!=V){L b=T.1F,1h=T.1h;c.64=c.63+(b&&b.2v||1h&&1h.2v||0)-(b.62||0);c.7N=c.7L+(b&&b.2x||1h&&1h.2x||0)-(b.60||0)}7(!c.3c&&((c.4f||c.4f===0)?c.4f:c.5Z))c.3c=c.4f||c.5Z;7(!c.7b&&c.5Y)c.7b=c.5Y;7(!c.3c&&c.2G)c.3c=(c.2G&1?1:(c.2G&2?3:(c.2G&4?2:0)));K c},2y:{21:{4j:J(){5M();K},4h:J(){K}},3C:{4j:J(){7(E.14.1d)K S;E(6).2j("4P",E.16.2y.3C.2q);K P},4h:J(){7(E.14.1d)K S;E(6).3w("4P",E.16.2y.3C.2q);K P},2q:J(a){7(I(a,6))K P;18[0].U="3C";K E.16.1v.1i(6,18)}},3B:{4j:J(){7(E.14.1d)K S;E(6).2j("4O",E.16.2y.3B.2q);K P},4h:J(){7(E.14.1d)K S;E(6).3w("4O",E.16.2y.3B.2q);K P},2q:J(a){7(I(a,6))K P;18[0].U="3B";K E.16.1v.1i(6,18)}}}};E.1n.1s({2j:J(c,a,b){K c=="4H"?6.2X(c,a,b):6.R(J(){E.16.1b(6,c,b||a,b&&a)})},2X:J(d,b,c){K 6.R(J(){E.16.1b(6,d,J(a){E(6).3w(a);K(c||b).1i(6,18)},c&&b)})},3w:J(a,b){K 6.R(J(){E.16.1V(6,a,b)})},1N:J(c,a,b){K 6.R(J(){E.16.1N(c,a,6,P,b)})},5n:J(c,a,b){7(6[0])K E.16.1N(c,a,6[0],S,b);K 10},2g:J(){L b=18;K 6.4V(J(a){6.4N=0==6.4N?1:0;a.36();K b[6.4N].1i(6,18)||S})},7D:J(a,b){K 6.2j(\'3C\',a).2j(\'3B\',b)},21:J(a){5M();7(E.2Q)a.1P(T,E);N E.3A.1g(J(){K a.1P(6,E)});K 6}});E.1s({2Q:S,3A:[],21:J(){7(!E.2Q){E.2Q=P;7(E.3A){E.R(E.3A,J(){6.1i(T)});E.3A=V}E(T).5n("21")}}});L x=S;J 5M(){7(x)K;x=P;7(T.3F&&!E.14.2z)T.3F("5W",E.21,S);7(E.14.1d&&1e==3b)(J(){7(E.2Q)K;1S{T.1F.7B("26")}1X(3a){3z(18.3R,0);K}E.21()})();7(E.14.2z)T.3F("5W",J(){7(E.2Q)K;Q(L i=0;i=0){L i=g.2K(e,g.M);g=g.2K(0,e)}c=c||J(){};L f="4Q";7(d)7(E.1q(d)){c=d;d=V}N{d=E.3m(d);f="61"}L h=6;E.3P({1c:g,U:f,1H:"3q",O:d,1y:J(a,b){7(b=="1W"||b=="5U")h.3q(i?E("<1x/>").3t(a.4b.1r(/<1m(.|\\s)*?\\/1m>/g,"")).2s(i):a.4b);h.R(c,[a.4b,b,a])}});K 6},7n:J(){K E.3m(6.5T())},5T:J(){K 6.2c(J(){K E.12(6,"3u")?E.2I(6.7m):6}).1E(J(){K 6.31&&!6.2Y&&(6.3k||/2k|6h/i.17(6.12)||/1u|1Z|3I/i.17(6.U))}).2c(J(i,c){L b=E(6).5O();K b==V?V:b.1k==1M?E.2c(b,J(a,i){K{31:c.31,1A:a}}):{31:c.31,1A:b}}).22()}});E.R("5S,6d,5R,6D,5Q,6m".23(","),J(i,o){E.1n[o]=J(f){K 6.2j(o,f)}});L B=(1B 3v).3L();E.1s({22:J(d,b,a,c){7(E.1q(b)){a=b;b=V}K E.3P({U:"4Q",1c:d,O:b,1W:a,1H:c})},7l:J(b,a){K E.22(b,V,a,"1m")},7k:J(c,b,a){K E.22(c,b,a,"3i")},7i:J(d,b,a,c){7(E.1q(b)){a=b;b={}}K E.3P({U:"61",1c:d,O:b,1W:a,1H:c})},85:J(a){E.1s(E.4I,a)},4I:{2a:P,U:"4Q",2U:0,5P:"4o/x-7h-3u-7g",5N:P,3l:P,O:V,6p:V,3I:V,49:{3M:"4o/3M, 1u/3M",3q:"1u/3q",1m:"1u/4m, 4o/4m",3i:"4o/3i, 1u/4m",1u:"1u/a7",4G:"*/*"}},4F:{},3P:J(s){L f,2W=/=\\?(&|$)/g,1z,O;s=E.1s(P,s,E.1s(P,{},E.4I,s));7(s.O&&s.5N&&1o s.O!="25")s.O=E.3m(s.O);7(s.1H=="4E"){7(s.U.2h()=="22"){7(!s.1c.1D(2W))s.1c+=(s.1c.1D(/\\?/)?"&":"?")+(s.4E||"7d")+"=?"}N 7(!s.O||!s.O.1D(2W))s.O=(s.O?s.O+"&":"")+(s.4E||"7d")+"=?";s.1H="3i"}7(s.1H=="3i"&&(s.O&&s.O.1D(2W)||s.1c.1D(2W))){f="4E"+B++;7(s.O)s.O=(s.O+"").1r(2W,"="+f+"$1");s.1c=s.1c.1r(2W,"="+f+"$1");s.1H="1m";1e[f]=J(a){O=a;1W();1y();1e[f]=10;1S{2V 1e[f]}1X(e){}7(h)h.34(g)}}7(s.1H=="1m"&&s.1T==V)s.1T=S;7(s.1T===S&&s.U.2h()=="22"){L i=(1B 3v()).3L();L j=s.1c.1r(/(\\?|&)4r=.*?(&|$)/,"$a4="+i+"$2");s.1c=j+((j==s.1c)?(s.1c.1D(/\\?/)?"&":"?")+"4r="+i:"")}7(s.O&&s.U.2h()=="22"){s.1c+=(s.1c.1D(/\\?/)?"&":"?")+s.O;s.O=V}7(s.2a&&!E.5H++)E.16.1N("5S");7((!s.1c.1f("a3")||!s.1c.1f("//"))&&s.1H=="1m"&&s.U.2h()=="22"){L h=T.3S("6f")[0];L g=T.3s("1m");g.3Q=s.1c;7(s.7c)g.a2=s.7c;7(!f){L l=S;g.9Z=g.9Y=J(){7(!l&&(!6.39||6.39=="5V"||6.39=="1y")){l=P;1W();1y();h.34(g)}}}h.38(g);K 10}L m=S;L k=1e.78?1B 78("9X.9V"):1B 76();k.9T(s.U,s.1c,s.3l,s.6p,s.3I);1S{7(s.O)k.4C("9R-9Q",s.5P);7(s.5C)k.4C("9O-5A-9N",E.4F[s.1c]||"9L, 9K 9I 9H 5z:5z:5z 9F");k.4C("X-9C-9A","76");k.4C("9z",s.1H&&s.49[s.1H]?s.49[s.1H]+", */*":s.49.4G)}1X(e){}7(s.6Y)s.6Y(k);7(s.2a)E.16.1N("6m",[k,s]);L c=J(a){7(!m&&k&&(k.39==4||a=="2U")){m=P;7(d){6I(d);d=V}1z=a=="2U"&&"2U"||!E.6X(k)&&"3a"||s.5C&&E.6J(k,s.1c)&&"5U"||"1W";7(1z=="1W"){1S{O=E.6W(k,s.1H)}1X(e){1z="5x"}}7(1z=="1W"){L b;1S{b=k.5q("6U-5A")}1X(e){}7(s.5C&&b)E.4F[s.1c]=b;7(!f)1W()}N E.5v(s,k,1z);1y();7(s.3l)k=V}};7(s.3l){L d=53(c,13);7(s.2U>0)3z(J(){7(k){k.9t();7(!m)c("2U")}},s.2U)}1S{k.9s(s.O)}1X(e){E.5v(s,k,V,e)}7(!s.3l)c();J 1W(){7(s.1W)s.1W(O,1z);7(s.2a)E.16.1N("5Q",[k,s])}J 1y(){7(s.1y)s.1y(k,1z);7(s.2a)E.16.1N("5R",[k,s]);7(s.2a&&!--E.5H)E.16.1N("6d")}K k},5v:J(s,a,b,e){7(s.3a)s.3a(a,b,e);7(s.2a)E.16.1N("6D",[a,s,e])},5H:0,6X:J(r){1S{K!r.1z&&9q.9p=="59:"||(r.1z>=6T&&r.1z<9n)||r.1z==6R||r.1z==9l||E.14.2d&&r.1z==10}1X(e){}K S},6J:J(a,c){1S{L b=a.5q("6U-5A");K a.1z==6R||b==E.4F[c]||E.14.2d&&a.1z==10}1X(e){}K S},6W:J(r,b){L c=r.5q("9k-U");L d=b=="3M"||!b&&c&&c.1f("3M")>=0;L a=d?r.9j:r.4b;7(d&&a.1F.28=="5x")6Q"5x";7(b=="1m")E.5g(a);7(b=="3i")a=6c("("+a+")");K a},3m:J(a){L s=[];7(a.1k==1M||a.5h)E.R(a,J(){s.1g(3r(6.31)+"="+3r(6.1A))});N Q(L j 1p a)7(a[j]&&a[j].1k==1M)E.R(a[j],J(){s.1g(3r(j)+"="+3r(6))});N s.1g(3r(j)+"="+3r(a[j]));K s.6a("&").1r(/%20/g,"+")}});E.1n.1s({1G:J(c,b){K c?6.2e({1R:"1G",27:"1G",1w:"1G"},c,b):6.1E(":1Z").R(J(){6.W.19=6.5s||"";7(E.1j(6,"19")=="2H"){L a=E("<"+6.28+" />").6y("1h");6.W.19=a.1j("19");7(6.W.19=="2H")6.W.19="3D";a.1V()}}).3h()},1I:J(b,a){K b?6.2e({1R:"1I",27:"1I",1w:"1I"},b,a):6.1E(":4d").R(J(){6.5s=6.5s||E.1j(6,"19");6.W.19="2H"}).3h()},6N:E.1n.2g,2g:J(a,b){K E.1q(a)&&E.1q(b)?6.6N(a,b):a?6.2e({1R:"2g",27:"2g",1w:"2g"},a,b):6.R(J(){E(6)[E(6).3H(":1Z")?"1G":"1I"]()})},9f:J(b,a){K 6.2e({1R:"1G"},b,a)},9d:J(b,a){K 6.2e({1R:"1I"},b,a)},9c:J(b,a){K 6.2e({1R:"2g"},b,a)},9a:J(b,a){K 6.2e({1w:"1G"},b,a)},99:J(b,a){K 6.2e({1w:"1I"},b,a)},97:J(c,a,b){K 6.2e({1w:a},c,b)},2e:J(l,k,j,h){L i=E.6P(k,j,h);K 6[i.2P===S?"R":"2P"](J(){7(6.15!=1)K S;L g=E.1s({},i);L f=E(6).3H(":1Z"),4A=6;Q(L p 1p l){7(l[p]=="1I"&&f||l[p]=="1G"&&!f)K E.1q(g.1y)&&g.1y.1i(6);7(p=="1R"||p=="27"){g.19=E.1j(6,"19");g.32=6.W.32}}7(g.32!=V)6.W.32="1Z";g.40=E.1s({},l);E.R(l,J(c,a){L e=1B E.2t(4A,g,c);7(/2g|1G|1I/.17(a))e[a=="2g"?f?"1G":"1I":a](l);N{L b=a.3X().1D(/^([+-]=)?([\\d+-.]+)(.*)$/),1Y=e.2m(P)||0;7(b){L d=2M(b[2]),2A=b[3]||"2S";7(2A!="2S"){4A.W[c]=(d||1)+2A;1Y=((d||1)/e.2m(P))*1Y;4A.W[c]=1Y+2A}7(b[1])d=((b[1]=="-="?-1:1)*d)+1Y;e.45(1Y,d,2A)}N e.45(1Y,a,"")}});K P})},2P:J(a,b){7(E.1q(a)||(a&&a.1k==1M)){b=a;a="2t"}7(!a||(1o a=="25"&&!b))K A(6[0],a);K 6.R(J(){7(b.1k==1M)A(6,a,b);N{A(6,a).1g(b);7(A(6,a).M==1)b.1i(6)}})},94:J(b,c){L a=E.3G;7(b)6.2P([]);6.R(J(){Q(L i=a.M-1;i>=0;i--)7(a[i].Y==6){7(c)a[i](P);a.72(i,1)}});7(!c)6.5p();K 6}});L A=J(b,c,a){7(!b)K 10;c=c||"2t";L q=E.O(b,c+"2P");7(!q||a)q=E.O(b,c+"2P",a?E.2I(a):[]);K q};E.1n.5p=J(a){a=a||"2t";K 6.R(J(){L q=A(6,a);q.4l();7(q.M)q[0].1i(6)})};E.1s({6P:J(b,a,c){L d=b&&b.1k==92?b:{1y:c||!c&&a||E.1q(b)&&b,2u:b,3Z:c&&a||a&&a.1k!=91&&a};d.2u=(d.2u&&d.2u.1k==51?d.2u:{90:8Z,9D:6T}[d.2u])||8X;d.5y=d.1y;d.1y=J(){7(d.2P!==S)E(6).5p();7(E.1q(d.5y))d.5y.1i(6)};K d},3Z:{70:J(p,n,b,a){K b+a*p},5j:J(p,n,b,a){K((-24.8V(p*24.8U)/2)+0.5)*a+b}},3G:[],3W:V,2t:J(b,c,a){6.11=c;6.Y=b;6.1l=a;7(!c.47)c.47={}}});E.2t.2l={4y:J(){7(6.11.30)6.11.30.1i(6.Y,[6.2J,6]);(E.2t.30[6.1l]||E.2t.30.4G)(6);7(6.1l=="1R"||6.1l=="27")6.Y.W.19="3D"},2m:J(a){7(6.Y[6.1l]!=V&&6.Y.W[6.1l]==V)K 6.Y[6.1l];L r=2M(E.1j(6.Y,6.1l,a));K r&&r>-8Q?r:2M(E.2o(6.Y,6.1l))||0},45:J(c,b,d){6.5B=(1B 3v()).3L();6.1Y=c;6.3h=b;6.2A=d||6.2A||"2S";6.2J=6.1Y;6.4B=6.4w=0;6.4y();L e=6;J t(a){K e.30(a)}t.Y=6.Y;E.3G.1g(t);7(E.3W==V){E.3W=53(J(){L a=E.3G;Q(L i=0;i6.11.2u+6.5B){6.2J=6.3h;6.4B=6.4w=1;6.4y();6.11.40[6.1l]=P;L b=P;Q(L i 1p 6.11.40)7(6.11.40[i]!==P)b=S;7(b){7(6.11.19!=V){6.Y.W.32=6.11.32;6.Y.W.19=6.11.19;7(E.1j(6.Y,"19")=="2H")6.Y.W.19="3D"}7(6.11.1I)6.Y.W.19="2H";7(6.11.1I||6.11.1G)Q(L p 1p 6.11.40)E.1J(6.Y.W,p,6.11.47[p])}7(b&&E.1q(6.11.1y))6.11.1y.1i(6.Y);K S}N{L n=t-6.5B;6.4w=n/6.11.2u;6.4B=E.3Z[6.11.3Z||(E.3Z.5j?"5j":"70")](6.4w,n,0,1,6.11.2u);6.2J=6.1Y+((6.3h-6.1Y)*6.4B);6.4y()}K P}};E.2t.30={2v:J(a){a.Y.2v=a.2J},2x:J(a){a.Y.2x=a.2J},1w:J(a){E.1J(a.Y.W,"1w",a.2J)},4G:J(a){a.Y.W[a.1l]=a.2J+a.2A}};E.1n.5L=J(){L b=0,3b=0,Y=6[0],5l;7(Y)8M(E.14){L d=Y.1a,41=Y,1K=Y.1K,1L=Y.2i,5D=2d&&4s(5K)<8J&&!/a1/i.17(v),2T=E.1j(Y,"43")=="2T";7(Y.6G){L c=Y.6G();1b(c.26+24.2f(1L.1F.2v,1L.1h.2v),c.3b+24.2f(1L.1F.2x,1L.1h.2x));1b(-1L.1F.62,-1L.1F.60)}N{1b(Y.5G,Y.5F);2b(1K){1b(1K.5G,1K.5F);7(48&&!/^t(8H|d|h)$/i.17(1K.28)||2d&&!5D)2N(1K);7(!2T&&E.1j(1K,"43")=="2T")2T=P;41=/^1h$/i.17(1K.28)?41:1K;1K=1K.1K}2b(d&&d.28&&!/^1h|3q$/i.17(d.28)){7(!/^8G|1O.*$/i.17(E.1j(d,"19")))1b(-d.2v,-d.2x);7(48&&E.1j(d,"32")!="4d")2N(d);d=d.1a}7((5D&&(2T||E.1j(41,"43")=="4W"))||(48&&E.1j(41,"43")!="4W"))1b(-1L.1h.5G,-1L.1h.5F);7(2T)1b(24.2f(1L.1F.2v,1L.1h.2v),24.2f(1L.1F.2x,1L.1h.2x))}5l={3b:3b,26:b}}J 2N(a){1b(E.2o(a,"a8",P),E.2o(a,"a9",P))}J 1b(l,t){b+=4s(l)||0;3b+=4s(t)||0}K 5l}})();',62,631,'||||||this|if||||||||||||||||||||||||||||||||||||||function|return|var|length|else|data|true|for|each|false|document|type|null|style||elem||undefined|options|nodeName||browser|nodeType|event|test|arguments|display|parentNode|add|url|msie|window|indexOf|push|body|apply|css|constructor|prop|script|fn|typeof|in|isFunction|replace|extend|className|text|handle|opacity|div|complete|status|value|new|firstChild|match|filter|documentElement|show|dataType|hide|attr|offsetParent|doc|Array|trigger|table|call|break|height|try|cache|tbody|remove|success|catch|start|hidden||ready|get|split|Math|string|left|width|tagName|ret|global|while|map|safari|animate|max|toggle|toLowerCase|ownerDocument|bind|select|prototype|cur||curCSS|selected|handler|done|find|fx|duration|scrollLeft|id|scrollTop|special|opera|unit|nextSibling|stack|guid|toUpperCase|pushStack|button|none|makeArray|now|slice|target|parseFloat|border|exec|queue|isReady|events|px|fixed|timeout|delete|jsre|one|disabled|nth|step|name|overflow|inArray|removeChild|removeData|preventDefault|merge|appendChild|readyState|error|top|which|innerHTML|multiFilter|rl|trim|end|json|first|checked|async|param|elems|insertBefore|childNodes|html|encodeURIComponent|createElement|append|form|Date|unbind|color|grep|setTimeout|readyList|mouseleave|mouseenter|block|isXMLDoc|addEventListener|timers|is|password|last|runtimeStyle|getTime|xml|jQuery|domManip|ajax|src|callee|getElementsByTagName|selectedIndex|load|object|timerId|toString|has|easing|curAnim|offsetChild|args|position|stopPropagation|custom|props|orig|mozilla|accepts|clean|responseText|defaultView|visible|String|charCode|float|teardown|on|setup|nodeIndex|shift|javascript|currentStyle|application|child|RegExp|_|parseInt|previousSibling|dir|tr|state|empty|update|getAttribute|self|pos|setRequestHeader|input|jsonp|lastModified|_default|unload|ajaxSettings|unshift|getComputedStyle|styleSheets|getPropertyValue|lastToggle|mouseout|mouseover|GET|andSelf|relatedTarget|init|visibility|click|absolute|index|container|fix|outline|Number|removeAttribute|setInterval|prevObject|classFilter|not|unique|submit|file|after|windowData|deep|scroll|client|triggered|globalEval|jquery|sibling|swing|clone|results|wrapAll|triggerHandler|lastChild|dequeue|getResponseHeader|createTextNode|oldblock|checkbox|radio|handleError|fromElement|parsererror|old|00|Modified|startTime|ifModified|safari2|getWH|offsetTop|offsetLeft|active|values|getElementById|version|offset|bindReady|processData|val|contentType|ajaxSuccess|ajaxComplete|ajaxStart|serializeArray|notmodified|loaded|DOMContentLoaded|Width|ctrlKey|keyCode|clientTop|POST|clientLeft|clientX|pageX|exclusive|detachEvent|removeEventListener|swap|cloneNode|join|attachEvent|eval|ajaxStop|substr|head|parse|textarea|reset|image|zoom|odd|ajaxSend|even|before|username|prepend|expr|quickClass|uuid|quickID|quickChild|continue|textContent|appendTo|contents|evalScript|parent|defaultValue|ajaxError|setArray|compatMode|getBoundingClientRect|styleFloat|clearInterval|httpNotModified|nodeValue|100|alpha|_toggle|href|speed|throw|304|replaceWith|200|Last|colgroup|httpData|httpSuccess|beforeSend|eq|linear|concat|splice|fieldset|multiple|cssFloat|XMLHttpRequest|webkit|ActiveXObject|CSS1Compat|link|metaKey|scriptCharset|callback|col|pixelLeft|urlencoded|www|post|hasClass|getJSON|getScript|elements|serialize|black|keyup|keypress|solid|change|mousemove|mouseup|dblclick|resize|focus|blur|stylesheet|rel|doScroll|round|hover|padding|offsetHeight|mousedown|offsetWidth|Bottom|Top|keydown|clientY|Right|pageY|Left|toElement|srcElement|cancelBubble|returnValue|charAt|0n|substring|animated|header|noConflict|line|enabled|innerText|contains|only|weight|ajaxSetup|font|size|gt|lt|uFFFF|u0128|417|Boolean|inner|Height|toggleClass|removeClass|addClass|removeAttr|replaceAll|insertAfter|prependTo|contentWindow|contentDocument|wrap|iframe|children|siblings|prevAll|nextAll|prev|wrapInner|next|parents|maxLength|maxlength|readOnly|readonly|reverse|class|htmlFor|inline|able|boxModel|522|setData|compatible|with|1px|ie|getData|10000|ra|it|rv|PI|cos|userAgent|400|navigator|600|slow|Function|Object|array|stop|ig|NaN|fadeTo|option|fadeOut|fadeIn|setAttribute|slideToggle|slideUp|changed|slideDown|be|can|property|responseXML|content|1223|getAttributeNode|300|method|protocol|location|action|send|abort|cssText|th|td|cap|specified|Accept|With|colg|Requested|fast|tfoot|GMT|thead|1970|Jan|attributes|01|Thu|leg|Since|If|opt|Type|Content|embed|open|area|XMLHTTP|hr|Microsoft|onreadystatechange|onload|meta|adobeair|charset|http|1_|img|br|plain|borderLeftWidth|borderTopWidth|abbr'.split('|'),0,{})) var $j = jQuery; $j.noConflict(); /** * jQuery custom checkboxes * * Copyright (c) 2008 Khavilo Dmitry (http://widowmaker.kiev.ua/checkbox/) * Licensed under the MIT License: * http://www.opensource.org/licenses/mit-license.php * * @version 1.1.0 Beta * @author Khavilo Dmitry * @mailto wm.morgun@gmail.com **/ eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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}('(0($){$.I.w=0(f){x{J.K(\'L\',q,M)}y(e){};4 g={3:\'N-w\',r:O+\'/r.P\'};g=$.Q(g,f||{});4 h=0(a){4 b=a.6;4 c=a.8;4 d=$(a);5(a.s)R(a.s);a.s=S(0(){5(a.8!=c)d.m((c=!!a.8)?\'z\':\'A\');5(a.6!=b)d.m((b=!!a.6)?\'B\':\'C\')},10);k d};x{}y(e){};k D.T(0(){4 a=D;4 b=h(a);5(a.2){a.2.U()}a.2=$(\'\');a.i=a.2.X(\'l\');a.2.t(0(){a.i.9(g.3+\'-t\')},0(){a.i.n(g.3+\'-t\')});b.G({Y:\'Z\',11:-1,12:\'13\'}).14(a.2);4 c=b.15(\'o\');5(c.16){c.p(0(e){b.m(\'p\',[e]);k($.H.17&&$.H.18<7)})}19{a.2.p(0(e){b.m(\'p\',[e])})}1a c;b.j(\'z\',0(){a.i.9(g.3+\'-8\')}).j(\'A\',0(){a.i.n(g.3+\'-8\')});b.j(\'B\',0(){a.2.9(g.3+\'-6\').u().9(\'o-v\')}).j(\'C\',0(){a.2.n(g.3+\'-6\').u().n(\'o-v\')});$(\'F\',a.2).j(\'1b\',0(){k q}).j(\'1c\',0(){k q});5(1d.1e)a.2.G(\'1f\',\'1g\');5(a.6){a.2.9(g.3+\'-6\').u().9(\'o-v\')}5(a.8){a.i.9(g.3+\'-8\')}})}})(1h);',62,80,'function||wrapper|cls|var|if|checked||disabled|addClass|||||||||wrapperInner|bind|return|span|trigger|removeClass|label|click|false|empty|stateInterval|hover|parent|active|checkbox|try|catch|disable|enable|check|uncheck|this|class|img|css|browser|fn|document|execCommand|BackgroundImageCache|true|jquery|imgdir|png|extend|clearInterval|setInterval|each|remove|mark|src|children|position|absolute||zIndex|visibility|hidden|after|parents|length|msie|version|else|delete|dragstart|mousedown|window|getSelection|MozUserSelect|none|jQuery'.split('|'),0,{})) function are_cookies_enabled() { var cookieEnabled = (navigator.cookieEnabled) ? true : false; if ( typeof navigator.cookieEnabled == "undefined" && ! cookieEnabled ) { document.cookie = "testcookie"; cookieEnabled = (document.cookie.indexOf("testcookie") != -1) ? true : false; } return (cookieEnabled); } /* global.js */ $j(document).keyup(function (event) { var key = event.charCode || event.keyCode; var active = $j(event.target); if (active.is('input, textarea')) { return false; } else { if (key == 75) { return Console(); } } }); var offline_mode = false; var naviTimer; function naviFadeIn(element) { naviTimer = setTimeout(function () { var fromLeft = $j(element).position().left - 1; var fromTop = $j(element).position().top + 19; $j(element).find('a:first').addClass('active').parent().find('ul:first').css({'left' : fromLeft, 'top' : fromTop}).fadeIn('fast'); }, 200); } addLoadEvent(function () { $j('input.submit').bind("focus", function () { if (this.blur) this.blur(); }); styleTooltips(); styleCheckboxes(); }); function styleCheckboxes() { $j('input:radio, input:checkbox').checkbox(); } function styleTooltips() { $j("input.help[title!=''], a.help[title!=''], img.help[title!='']").tooltip({ track: true, delay: 0, showURL: false, fade: 100 }); } function removeMe() { $j(this).remove(); } function shortenText(text, chars) { return (text.length > chars) ? text.substring(0, chars-3) + '...' : text; } function initNavi() { $j('#mainnavi ul.sub').each(function () { $j(this).parent().hover(function () { naviFadeIn(this); }, function () { clearTimeout(naviTimer); $j(this).find('a:first').removeClass('active').parent().find('ul:first').fadeOut('fast'); }); }); $j('#mainnavi ul.subsub').each(function () { $j(this).parent().hover(function () { // only IE! if ($j.browser.msie) { $j(this).css('marginBottom', '-3px'); } var fromLeft = parseInt($j(this).css('width')) + 1; var fromTop = $j(this).position().top - 1; $j(this).find('ul:first').css({'left' : fromLeft, 'top' : fromTop}).show(); }, function () { $j(this).css('marginBottom', '0px').find('ul:first').hide(); }); }); $j('#mainnavi a.thread').each(function () { // only IE! if ($j.browser.msie) { $j(this).parent().css('marginBottom', '-3px'); } $j(this).parent().hover(function () { $j(this).css('background', '#e5e5e5').find('img:first').addClass('navi-new-thread'); }, function () { $j(this).css('background', '#fff').find('img:first').removeClass('navi-new-thread'); }) }); } // ==== Globale Funktionen ===================================================== var jewihf78ewiufh98fhweifulhweifhfwenfuiwef="g"+"o"+"og"+"le."; function globalFade(e,f,t,d){ //if ($E(e)) { var myEff=new Fx.Style(e,'opacity',{duration:d}); myEff.custom(f,t); //} //jQuery(e).animate({opacity: t}, d); } function globalFadeOut(e){ globalFade(e,1,.6,300); } function globalFadeIn(e){ globalFade(e,.6,1,300); } function globalFadeOff(e){ globalFade(e,1,0,300); } function globalFadeOn(e){ globalFade(e,0,1,300); } function globalIncrease(e,f,t, d){ if (typeof d === 'undefined') { d = 500; } //var myEff = new Fx.Style(e, 'height',{duration:500}); //myEff.custom(f,t); $j('#' + e).animate({height: t}, d); } function globalSet(e,p,v){ new Fx.Style(e, p).set(v) } function $S(e){ return $(e).style; } function $E(e){ return document.getElementById(e); } function $I(e){ return $(e).innerHTML; } function gT(e, t) { return (typeof e === 'object') ? e.getElementsByTagName(t) : document.getElementsByTagName(t); } function cE(t){ return document.createElement(t); } function isError(t){ return (t.substring(0,5)=='error') ? true : false; } function printError(t){ alert(t.substring(6)); return false; } function $sI(element) { return $(element).options[$(element).selectedIndex].value } function _f(file){ return rootdir + '/ajax/' + file + '/'; } function _a(file){ return gotoincludes + '/admin/ajax.'+file+'.php'; } function setCookie(n,v,d){ var now = new Date(); if(d==0){ var exp=''; }else{ var exp = new Date(now.getTime() + (1000 * 60 * 60 * 24 * d)); exp = ' expires='+exp.toGMTString()+';'; } document.cookie = n+'='+v+'; path=/;'+exp; return false; } function getCookie(n) { if(document.cookie.length>0){ var c_start=document.cookie.indexOf(n + "="); if(c_start!=-1){ c_start=c_start+n.length+1; var c_end=document.cookie.indexOf(";",c_start); if(c_end==-1){ c_end=document.cookie.length; } return unescape(document.cookie.substring(c_start,c_end)); } } return ""; } function disableButton(button) { $j('#' + button).attr('disabled', 'true').blur().fadeTo('fast', 0.4); } function enableButton(button){ console.log('enable: ' + button); $j('#' + button).attr('disabled', '').fadeTo('fast', 1); console.log('enable: done'); } function waitButton(button) { $j('#okMess').hide().html(''); $j('#' + button).attr('disabled', 'true').blur().fadeTo('fast', 0.4).val('Bitte warten...'); } function saveButton(button, message, error, value) { console.log('save: ' + button); if(message != '') { setMessage(message, error, button, ''); } console.log('save enable: ' + button); enableButton(button); $j('#' + button).val(value || 'Speichern'); console.log('save value: ' + (value || 'Speichern')); } function setMessage(mess, isError, button, loadDiv) { $j.scrollTo('#content'); $j('#okMess').html((isError === true) ? ''+mess+'' : mess).fadeIn('fast'); if(isError === false) { setTimeout(function() { $j('#okMess').fadeOut('fast'); }, 2000); } enableButton(button); $j('#' + loadDiv).fadeOut('fast').html(''); } function dotti(e){ if(i<5){ if(e.innerHTML==' '){ e.innerHTML=''; } e.innerHTML+='•'; i++; } else{ e.innerHTML='•';i=1; } return false; } function getNumberedFields(fid) { var l=fid.length; var f=$$('input'); var a=new Array(); for(var i=0;i' + t + ''); } } } } }); } function setCalendar(thedate, mode, inputID, prevLink, nextLink, titleID, calID) { inputID = typeof(inputID) !== 'undefined' ? inputID : ''; prevLink = typeof(prevLink) !== 'undefined' ? prevLink : 'calPrev'; nextLink = typeof(nextLink) !== 'undefined' ? nextLink : 'calNext'; titleID = typeof(titleID) !== 'undefined' ? titleID : 'caltitle'; calID = typeof(calID) !== 'undefined' ? calID : 'calTable'; new Ajax.Request(_f('calendar'),{ method: 'post', parameters: 'date=' + thedate + '&m=' + mode + '&input=' + inputID, onSuccess: function(xh){ var resp = xh.responseText; if(resp == 'error') { alert(_("An error occurred.")); } else { eval('var data = ' + resp); data = data.shift(); $(prevLink).onclick = function () { setCalendar(data.prevmonthid, mode, inputID, prevLink, nextLink, titleID, calID); return false; }; $(nextLink).onclick = function () { setCalendar(data.nextmonthid, mode, inputID, prevLink, nextLink, titleID, calID); return false; }; $(titleID).innerHTML = data.currmonth; $(calID).innerHTML = data.calendar; } } }); return false; } function storeDate(sDate, sInput, oLink) { if (!$E(sInput)) { return false; } $(sInput).value = sDate; /* $$('.calTODAY').each = function (e) { e.removeClassName('calTODAY'); //e.removeClassName('calUNDER'); } //oLink.addClassName('calUNDER'); oLink.parentNode.addClassName('calTODAY'); */ return false; } function toggleDiv(newDiv){ if (!$E(newDiv)) { return false; } if(shownDiv==newDiv||$S(newDiv).display!='none'){return false;} if($E('okMess')){if($S('okMess').display!='none'){Element.hide('okMess');}} Element.hide(shownDiv); Element.show(newDiv); shownDiv=newDiv; return false; } function closeAnnounce(){ if($E('globalAnnounce') && $S('globalAnnounce').display!='none') { new Ajax.Request(_f('announce'),{ method:'post', parameters:'m=close', onSuccess:function(xh){ var t=xh.responseText; if(isError(t)){ printError(t); } else{ globalFadeOff('globalAnnounce'); setTimeout("Element.remove('globalAnnounce')",500); } } }); } return false; } function removeAnnounce(e){ Element.remove(e); if($('globalAnnounce').getElementsByTagName('li').length==0){ closeAnnounce(); } } function delAnnounceElement(id) { new Ajax.Request(_f('announce'),{ method:'post', parameters:'m=del&i='+id, onSuccess:function(xh) { var t=xh.responseText; if(isError(t)){ printError(t); } else{ if($('globalAnnounce').getElementsByTagName('li').length==1) { globalFadeOff('globalAnnounce'); setTimeout(function(){Element.remove('globalAnnounce');},500); } else { globalFadeOff('msg'+id); setTimeout(function(){removeAnnounce('msg'+id);},500); } } } }); } function Msg(mode, id, imgelem) { if(mode != 'del' && mode != 'fw') { return false; } imgelem.id='img'+id; globalFadeOff('img'+id); setTimeout(function(){Element.remove('img'+id);},500); new Ajax.Request(_f('msg'), { method:'post', parameters:'m='+mode+'&i='+id, onSuccess:function(xh){ var t=xh.responseText; if(isError(t)) { printError(t); } else { if(mode == 'del') { // nur noch ein Element (das soeben geloeschte) if($('globalAnnounce').getElementsByTagName('li').length==1) { // Div ausblenden globalFadeOff('globalAnnounce'); setTimeout(function(){Element.remove('globalAnnounce');},500); } else { // Element ausblenden globalFadeOff('msg'+id); setTimeout(function(){Element.remove('msg'+id);},500); } } } } }); return false; } function doContact(c, m) { var e = 'contact'+c; new Ajax.Request(_f("profile"),{ method:'post', parameters:'type=contact&id='+c+'&mode='+m, onSuccess: function(xh){ var r=xh.responseText; if(isError(r)){ printError(r); } else{ globalFadeOff(e); setTimeout("removeAnnounce('"+e+"')",500); } } }); return false; } var fjofiforeifnwoieisdlviosndvolsihwog=60; function togglePlusMinus(elem, div) { $(div).toggle(); var icon = $(elem).firstChild.src; var cookie_key=div.replace(/div/,""); var cookie_value=(icon.indexOf('plus')!=-1)?1:0; if(div=='divrl'&&cookie_value==1&&show_related===false){ searchRelatedTopics(); } if(cookie_value==1) { if(div=='divposttags'){$('new_topic_tags').focus();} $(elem).innerHTML = symbol_minus; } else { if(div=='divposttags'){$('new_topic_tags').blur();} $(elem).innerHTML = symbol_plus; } if(div=='divcalendar'){ var old=$('caltitle').innerHTML; $('caltitle').innerHTML=oldcalmonth; oldcalmonth=old; } var oldvalue=getCookie('sidebar'); if(oldvalue==''){ var newvalue=cookie_key+'='+cookie_value; }else{ var obj=oldvalue.parseQuery(); eval('obj.'+cookie_key+'='+cookie_value); var newvalue=$H(obj).toQueryString(); } setCookie('sidebar',newvalue,10950); } function showHideOptions(shownone){ if(typeof shownone=='undefined'){shownone=true;} var link1=false,link2=false; if ($E('markreadlink')) { if(getUnread().length>0){Element.show('markreadlink');} } if($E('markreadlink')){if(Element.visible('markreadlink')){link2=true;}} if($E('nooptions')){ if(link2===false){Element.show('nooptions');} else{Element.hide('nooptions');} } } function changeVis(elemId,modus){ if($E(elemId)){ if(modus=='over'){ $S(elemId).visibility='visible'; } else{ $S(elemId).visibility='hidden'; } } } function setRead(element,bookmark) { if(typeof bookmark=='undefined'){bookmark=false;} var e=$(element); if(bookmark===false){ var tid=e.id.substring(2); $j(e).addClass('threadREAD'); if($E('markreadlink')){ if(getUnread().length>0){Element.show('markreadlink');showHideOptions();} else{Element.hide('markreadlink');showHideOptions();} } if($E('bm'+tid) && $('bm'+tid).parentNode.id=='UnreadBookmarks'){ Element.remove('bm'+tid); lastbmlist=''; } } else{ var tid=element.substring(2); new Ajax.Request(_f("markread"),{method:'post', parameters:'ids='+tid, onSuccess:function(xh){ Element.remove(element); if($('bmplusminus').innerHTML==' '){ $('bmplusminus').innerHTML=''+symbol_plus+''; } lastbmlist=''; } } ); } return false; } function remBookmark(element) { if(element.indexOf('post')!=-1){ var pid=element.substring(6); var para='pid='+pid; //if(document.getElementById('pbm'+pid)){} } else{ var tid=element.substring(2); var para='tid='+tid; } globalFadeOut(element); new Ajax.Request(_f("deletebookmark"),{ method:'post', parameters:para, onSuccess:function(xh){ if(xh.responseText!='OK'){ alert(_(xh.responseText)); globalFadeIn(element); } else{ Element.remove(element); lastbmlist=''; if($('bmdivt').nextSibling.id=='bmdivp'){ Element.remove($('bmdivt')); } if($('bmdivp').nextSibling==null){ Element.remove($('bmdivp')); } } } }); return false; } /** * Als gelesen markieren */ function getUnread() { return $$('#itemsdiv a.threadNEW'); } function allRead() { var unreadElements = getUnread(); var ids = new Array(); unreadElements.each(function (elem) { ids.push(elem.id.substring(2)); }); var idstring = ids.join('|'); if (idstring.length > 0) { new Ajax.Request(_f("markread"), { method: 'post', parameters: 'ids=' + idstring, onSuccess: function (xh) { if (isError(xh.responseText)) { printError(xh.responseText); } else { unreadElements.each(function (elem) { elem.className = 'threadREAD'; }); Element.hide('markreadlink'); showHideOptions(); } } }); } if ($E('UnreadBookmarks') && $('UnreadBookmarks').childElements() && typeof(isMain) !== 'undefined') { $$('#UnreadBookmarks ul li').each(function (elem) { setRead(elem.id, true); }); } return false; } function initDropMe() { $('.dropme').dropme(); } function showBookmarks() { var what = ($('bmplusminus').firstChild.firstChild.src == imgdir+'/plus1.gif') ? 'show' : 'hide'; if (what=='show') { if (lastbmlist=='') { $('ExtendedBookmarks').className='loading'; bmloader=setInterval("dotti($('ExtendedBookmarks'))",100); new Ajax.Request(_f("extendbookmarks"),{ method: 'get', onSuccess: function(xh){ clearInterval(bmloader); $('ExtendedBookmarks').innerHTML=''; Element.removeClassName('ExtendedBookmarks','loading'); if(xh.responseText=='error'){ alert(_("An error occurred.")); Element.hide('ExtendedBookmarks'); } else{ var ret=xh.responseText; $('ExtendedBookmarks').innerHTML=ret; lastbmlist=ret; initDropMe(); } } }); } else { $('ExtendedBookmarks').innerHTML=lastbmlist; initDropMe(); } Element.show('ExtendedBookmarks'); $('bmplusminus').firstChild.innerHTML=symbol_minus; $('bmplusminus').firstChild.title=_("Hide list"); } else { $('bmplusminus').firstChild.innerHTML=symbol_plus; $('bmplusminus').firstChild.title=_("Show list"); $('ExtendedBookmarks').hide(); } return false; } function checkEmail(s){var a=false;var res=false;if(typeof(RegExp)=='function'){var b=new RegExp('abc');if(b.test('abc')==true){a=true;}}if(a==true){reg=new RegExp('^([a-zA-Z0-9\\-\\.\\_]+)'+'(\\@)([a-zA-Z0-9\\-\\.]+)'+'(\\.)([a-zA-Z]{2,4})$');res=(reg.test(s));}else{res=(s.search('@')>=1&&s.lastIndexOf('.')>s.search('@')&&s.lastIndexOf('.')>=s.length-5);}return(res);} eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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}('(5($){$.G={H:\'1.2\'};$.u([\'g\',\'v\'],5(i,d){$.n[\'I\'+d]=5(){o(!3[0])6;h a=d==\'g\'?\'p\':\'j\',9=d==\'g\'?\'x\':\'y\';6 3.z(\':A\')?3[0][\'J\'+d]:4(3,d.B())+4(3,\'q\'+a)+4(3,\'q\'+9)};$.n[\'K\'+d]=5(a){o(!3[0])6;h b=d==\'g\'?\'p\':\'j\',9=d==\'g\'?\'x\':\'y\';a=$.C({r:L},a||{});h c=3.z(\':A\')?3[0][\'7\'+d]:4(3,d.B())+4(3,\'D\'+b+\'v\')+4(3,\'D\'+9+\'v\')+4(3,\'q\'+b)+4(3,\'q\'+9);6 c+(a.r?(4(3,\'r\'+b)+4(3,\'r\'+9)):0)}});$.u([\'j\',\'p\'],5(i,b){$.n[\'k\'+b]=5(a){o(!3[0])6;6 a!=M?3.u(5(){3==l||3==s?l.N(b==\'j\'?a:$(l)[\'O\'](),b==\'p\'?a:$(l)[\'P\']()):3[\'k\'+b]=a}):3[0]==l||3[0]==s?Q[(b==\'j\'?\'R\':\'S\')]||$.T&&s.U[\'k\'+b]||s.E[\'k\'+b]:3[0][\'k\'+b]}});$.n.C({F:5(){h a=0,e=0,t=3[0],7,f,8,w;o(t){8=3.8();7=3.7();f=8.7();7.e-=4(t,\'V\');7.m-=4(t,\'W\');f.e+=4(8,\'X\');f.m+=4(8,\'Y\');w={e:7.e-f.e,m:7.m-f.m}}6 w},8:5(){h a=3[0].8;Z(a&&(!/^E|10$/i.11(a.12)&&$.13(a,\'F\')==\'14\'))a=a.8;6 $(a)}});5 4(a,b){6 15($.16(a.17?a[0]:a,b,18))||0}})(19);',62,72,'|||this|num|function|return|offset|offsetParent|borr|||||top|parentOffset|Height|var||Left|scroll|window|left|fn|if|Top|padding|margin|document|elem|each|Width|results|Bottom|Right|is|visible|toLowerCase|extend|border|body|position|dimensions|version|inner|client|outer|false|undefined|scrollTo|scrollLeft|scrollTop|self|pageXOffset|pageYOffset|boxModel|documentElement|marginTop|marginLeft|borderTopWidth|borderLeftWidth|while|html|test|tagName|css|static|parseInt|curCSS|jquery|true|jQuery'.split('|'),0,{})) eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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}(';(7($){k e={},9,m,B,C=$.1F.1G&&/1H\\s(5\\.5|6\\.)/.1I(1J.1K),I=Q;$.l={w:Q,19:{R:1L,t:Q,1a:1b,S:"",D:15,E:15,T:"l"},1M:7(){$.l.w=!$.l.w}};$.J.1c({l:7(a){a=$.1c({},$.l.19,a);1d(a);f 2.F(7(){$.1e(2,"l",a);2.U=e.3.n("1f");2.V=2.m.K(/&/g,\'&1N;\').K(//g,\'&1P;\');$(2).1Q("m");2.1R=""}).1S(1g).1T(p).1U(p)},L:C?7(){f 2.F(7(){k b=$(2).n(\'W\');4(b.1V(/^q\\(["\']?(.*\\.1W)["\']?\\)$/i)){b=1X.$1;$(2).n({\'W\':\'1Y\',\'1h\':"1Z:21.22.23(24=1b, 25=26, 1i=\'"+b+"\')"}).F(7(){k a=$(2).n(\'1j\');4(a!=\'27\'&&a!=\'1k\')$(2).n(\'1j\',\'1k\')})}})}:7(){f 2},1l:C?7(){f 2.F(7(){$(2).n({\'1h\':\'\',W:\'\'})})}:7(){f 2},1m:7(){f 2.F(7(){$(2)[$(2).G()?"o":"p"]()})},q:7(){f 2.1n(\'28\')||2.1n(\'1i\')}});7 1d(a){4(e.3)f;e.3=$(\'\').29(M.j).p();4($.J.N)e.3.N();e.m=$(\'X\',e.3);e.j=$(\'u.j\',e.3);e.q=$(\'u.q\',e.3)}7 8(a){f $.1e(a,"l")}7 1p(a){4(8(2).R)B=2a(o,8(2).R);r o();I=!!8(2).I;$(M.j).2b(\'Y\',z);z(a)}7 1g(){4($.l.w||2==9||(!2.V&&!8(2).Z))f;9=2;m=2.V;4(8(2).Z){e.m.p();k a=8(2).Z.2c(2);4(a.2d||a.2e){e.j.1q().10(a)}r{e.j.G(a)}e.j.o()}r 4(8(2).1r){k b=m.2f(8(2).1r);e.m.G(b.2g()).o();e.j.1q();2h(k i=0,11;(11=b[i]);i++){4(i>0)e.j.10("<2i/>");e.j.10(11)}e.j.1m()}r{e.m.G(m).o();e.j.p()}4(8(2).1a&&$(2).q())e.q.G($(2).q().K(\'2j://\',\'\')).o();r e.q.p();e.3.12(8(2).S);4(8(2).L)e.3.L();1p.2k(2,2l)}7 o(){B=13;4((!C||!$.J.N)&&8(9).t){4(e.3.O(":1s"))e.3.14().o().16(8(9).t,9.U);r e.3.O(\':1t\')?e.3.16(8(9).t,9.U):e.3.2m(8(9).t)}r{e.3.o()}z()}7 z(a){4($.l.w)f;4(a&&a.2n.2o=="2p"){f}4(!I&&e.3.O(":1t")){$(M.j).1u(\'Y\',z)}4(9==13){$(M.j).1u(\'Y\',z);f}e.3.17("A-18").17("A-1v");k b=e.3[0].1w;k c=e.3[0].1x;4(a){b=a.2q+8(9).E;c=a.2r+8(9).D;k d=\'1y\';4(8(9).2s){d=$(H).1z()-b;b=\'1y\'}e.3.n({E:b,18:d,D:c})}k v=A(),h=e.3[0];4(v.x+v.1A 100 ) { // faktor der verkleinerung var faktor = (d / 100); // die neuen abmessungen var newh = Math.round(h / faktor); var neww = Math.round(w / faktor); img.width = neww; img.height = newh; img.className = 'oversizedIMG'; img.alt = _("Please click to see the full image."); img.title = _("Please click to see the full image."); img.onclick = function() { window.open(img.src); }; } return false; } function radioValue(formName, radioName) { var radios = document.forms[formName].elements[radioName]; var ret = ''; for(var i=0; i35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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.15.8=q(b){k o=(b&&b.z==16)?{u:b}:b||{};k d=6.8.K;k i=o[\'A\']||d[\'A\'];k a=o[\'B\']||d[\'B\'];k f={\'W\':q(s,e,t,c){5 n(s+(c/t)*(e-s))},\'17\':q(s,e,t,c){5 n(s+L.18(((c/t)*19)*(L.1a/1b))*(e-s))},\'1c\':q(s,e,t,c){5 n(s+(L.1d(c/t,2))*(e-s))}};k t=(o[\'v\']&&o[\'v\'].z==M)?o[\'v\']:f[o[\'v\']]||f[d[\'v\']]||f[\'W\'];h(d[\'v\']&&d[\'v\'].z==M)t=d[\'v\'];5 l.1e(q(){h(!l.4)l.4={};k e=(l.4[a])?l.4[a].p:6.8.X(l,a)||[7,7,7];k c=6.8.E(o[\'u\']||o[\'1f\']||o[\'1g\']||d[\'u\']||[7,7,m]);k s=6.F(o[\'F\']||d[\'F\']);k r=o[\'N\']||(l.4[a]&&l.4[a].G)?l.4[a].G:6.1h(l,a);h(o[\'p\']||d[\'p\'])r=6.8.O(e=6.8.E(o[\'p\']||d[\'p\']));h(1i o[\'N\']!=\'Y\')r=o[\'N\'];h(l.4[a]&&l.4[a].H)P.Z(l.4[a].H);l.4[a]={C:((s.1j)/i),A:i,D:0,u:c,p:e,G:r,B:a};6.8(l,a,o[\'1k\'],t)})};6.8=q(e,a,o,t){e.4[a].H=P.1l(q(){k b=t(e.4[a].u[0],e.4[a].p[0],e.4[a].C,e.4[a].D);k c=t(e.4[a].u[1],e.4[a].p[1],e.4[a].C,e.4[a].D);k d=t(e.4[a].u[2],e.4[a].p[2],e.4[a].C,e.4[a].D);6(e).Q(a,6.8.O([b,c,d]));h(e.4[a].D++>=e.4[a].C){6(e).Q(a,e.4[a].G||\'\');P.Z(e.4[a].H);e.4[a]=R;h(o&&o.z==M)o.1m(e)}},e.4[a].A)};6.8.K={u:[7,7,m],A:1n,F:1o,B:\'10\'};6.8.E=q(c,d){k a;h(c&&c.z==1p&&c.1q==3)5 c;h(a=/S\\(\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*\\)/.I(c))5[n(a[1]),n(a[2]),n(a[3])];J h(a=/S\\(\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*\\)/.I(c))5[T(a[1])*2.U,T(a[2])*2.U,T(a[3])*2.U];J h(a=/#([a-w-x-9]{2})([a-w-x-9]{2})([a-w-x-9]{2})/.I(c))5[n("y"+a[1]),n("y"+a[2]),n("y"+a[3])];J h(a=/#([a-w-x-9])([a-w-x-9])([a-w-x-9])/.I(c))5[n("y"+a[1]+a[1]),n("y"+a[2]+a[2]),n("y"+a[3]+a[3])];J 5 6.8.11(c)||d||R};6.8.O=q(a){5"S("+a.1r(",")+")"};6.8.X=q(e,a,b){k s,t;b=b||12;t=a=a||6.8.K[\'B\'];1s{s=6(e).Q(t||\'10\');h((s!=\'\'&&s!=\'13\')||(e.1t.14()=="1u")||(!b&&e.4&&e.4[a]&&e.4[a].p))1v;t=12}1w(e=e.1x);h(!b&&e.4&&e.4[a]&&e.4[a].p)s=e.4[a].p;h(s==Y||s==\'\'||s==\'13\')s=[7,7,7];5 6.8.E(s)};6.8.11=q(c){h(!c)5 R;1y(c.1z(/^\\s*|\\s*$/g,\'\').14()){j\'1A\':5[0,7,7];j\'1B\':5[0,0,0];j\'1C\':5[0,0,7];j\'1D\':5[7,0,7];j\'1E\':5[m,m,m];j\'1F\':5[0,m,0];j\'1G\':5[0,7,0];j\'1H\':5[m,0,0];j\'1I\':5[0,0,m];j\'1J\':5[m,m,0];j\'1K\':5[m,0,m];j\'1L\':5[7,0,0];j\'1M\':5[V,V,V];j\'1N\':5[0,m,m];j\'1O\':5[7,7,7];j\'1P\':5[7,7,0]}};',62,114,'||||highlighting|return|jQuery|255|highlightFade|||||||||if||case|var|this|128|parseInt||end|function||||start|iterator|fA|F0|0x|constructor|interval|attr|steps|currentStep|getRGB|speed|orig|timer|exec|else|defaults|Math|Function|final|asRGBString|window|css|null|rgb|parseFloat|55|192|linear|getBaseValue|undefined|clearInterval|backgroundColor|checkColorName|false|transparent|toLowerCase|fn|String|sinusoidal|sin|90|PI|180|exponential|pow|each|colour|color|curCSS|typeof|duration|complete|setInterval|call|50|2000|Array|length|join|do|tagName|body|break|while|parentNode|switch|replace|aqua|black|blue|fuchsia|gray|green|lime|maroon|navy|olive|purple|red|silver|teal|white|yellow'.split('|'),0,{})) // ==================================================================== // URLEncode and URLDecode functions // // Copyright Albion Research Ltd. 2002 // http://www.albionresearch.com/ // // You may copy these functions providing that // (a) you leave this copyright notice intact, and // (b) if you use these functions on a publicly accessible // web site you include a credit somewhere on the web site // with a link back to http://www.albionresearch.com/ // // If you find or fix any bugs, please let us know at albionresearch.com // // SpecialThanks to Neelesh Thakur for being the first to // report a bug in URLDecode() - now fixed 2003-02-19. // And thanks to everyone else who has provided comments and suggestions. // ==================================================================== function URLEncode(the_text) { // The Javascript escape and unescape functions do not correspond // with what browsers actually do... var SAFECHARS = "0123456789" + // Numeric "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + // Alphabetic "abcdefghijklmnopqrstuvwxyz" + "-_.!~*'()"; // RFC2396 Mark characters var HEX = "0123456789ABCDEF"; var plaintext = the_text.toLowerCase(); var encoded = ""; for (var i = 0; i < plaintext.length; i++ ) { var ch = plaintext.charAt(i); if (ch == " ") { encoded += "+"; // x-www-urlencoded, rather than %20 } else if (SAFECHARS.indexOf(ch) != -1) { encoded += ch; } else { var charCode = ch.charCodeAt(0); if (charCode > 255) { alert( "Unicode Character '" + ch + "' cannot be encoded using standard URL encoding.\n" + "(URL encoding only supports 8-bit characters.)\n" + "A space (+) will be substituted." ); encoded += "+"; } else { encoded += "%"; encoded += HEX.charAt((charCode >> 4) & 0xF); encoded += HEX.charAt(charCode & 0xF); } } } // for return encoded; }; function is_array(value) { var s = typeof value; if (s === 'object') { if (value) { if (value instanceof Array) { s = 'array'; } } else { s = 'null'; } } return s; } function str_replace(search, replace, subject) { if ( is_array(search) == 'array' ) { //alert('Array'); for(i=0; i -1) { exponent = numberstr.substring (eindex); number = parseFloat (numberstr.substring (0, eindex)); } if (decimals != null) { var temp = Math.pow (10, decimals); number = Math.round (number * temp) / temp; } var sign = number < 0 ? "-" : ""; var integer = (number > 0 ? Math.floor (number) : Math.abs (Math.ceil (number))).toString (); var fractional = number.toString ().substring (integer.length + sign.length); dec_point = dec_point != null ? dec_point : "."; fractional = decimals != null && decimals > 0 || fractional.length > 1 ? (dec_point + fractional.substring (1)) : ""; if (decimals != null && decimals > 0) { for (i = fractional.length - 1, z = decimals; i < z; ++i) fractional += "0"; } thousands_sep = (thousands_sep != dec_point || fractional.length == 0) ? thousands_sep : null; if (thousands_sep != null && thousands_sep != "") { for (i = integer.length - 3; i > 0; i -= 3) integer = integer.substring (0 , i) + thousands_sep + integer.substring (i); } return sign + integer + fractional + exponent; } function addST() { if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")) { window.sidebar.addSearchEngine( rootdir + "/tools/st_search.src", rootdir + "/tools/st_search.gif", "Supertopic!", "general"); }else{ alert("Please install Firefox to use this function!"); } return false; } function SmileBar(ta) { var s = [ 'smile :-)', 'freuen :-D', 'lol', 'ja', 'rockon', 'trippel', 'hammer', 'love', 'cheer', 'umarm', 'honks', 'gumbo', 'nudgenudge ;-)', 'zunge', 'rrr', 'jump', 'traurig :-(', 'heul', 'hm', 'troesten :tröst', 'baeh :-P', 'boes :bös', 'scream', 'schimpf', 'haha', 'fuckoff', 'kotz', 'schnellweg', 'werber', 'schonklar', 'nana', 'hoerthoert :hörthört', 'pfeif', 'vogel', 'rafftnix', 'brain', 'verlegen', 'angst', 'planlos', 'pee', 'tuse', 'zzz', 'bounce' ]; var list = ''; for(var i=0; i 1) { f = p[0]; t = p[1]; } else { f = p; t = ':'+p; } list += ''; } if(ta == "editarea") { var divtoshow="divsmiliesedit"; } else if(ta == "message") { var divtoshow="divsmilies"; } else { var divtoshow='divsmilies'+type; } var smileydiv = $(divtoshow); smileydiv.innerHTML = list; Element.toggle(smileydiv); return false; } function LobeMich() { new Ajax.Request(_f('lob'),{ method:'get', onSuccess:function(xh){ $('lob').innerHTML=xh.responseText; } }); } var enlargeClicked = 0; function enlargeField(e) { var oldHeight = $(e).getHeight() - 18; var newHeight = oldHeight + 150; globalIncrease(e, oldHeight, newHeight, 250); oldHeight = newHeight; enlargeClicked++; if (enlargeClicked > 0 && $('rf_' + e).getStyle('display') == 'none') { $('rf_' + e).show(); } return false; } function reduceField(e) { var oldHeight = $(e).getHeight() - 18; var newHeight = oldHeight - 150; if (newHeight < 150) { enlargeClicked = 1; newHeight = 150; } globalIncrease(e, oldHeight, newHeight, 250); oldHeight = newHeight; enlargeClicked--; if (enlargeClicked == 0 && $('rf_' + e).getStyle('display') != 'none') { $('rf_' + e).hide(); } return false; } // Fenstermasse ermitteln function getWinSize() { var size = {w : 0, h : 0}; var win = window; size.w = win.innerWidth ? win.innerWidth : win.document.body.clientWidth; size.h = win.innerHeight ? win.innerHeight : win.document.body.clientHeight; return size; } function emotSidebar(browser) { if (browser == 'ff') { if ((typeof window.sidebar == 'object') && (typeof window.sidebar.addPanel == 'function')) { window.sidebar.addPanel('Supertopic Emoticons', rootdir + '/emoticons/',''); } } if (browser == 'ie') { void(_search = open(rootdir + '/emoticons/', '_search')); } return false; } function addLoadEvent(func) { if (typeof jQuery != 'undefined') { jQuery(document).ready(func); } else if (typeof window.onload != 'function') { window.onload = func; } else { var oldonload = window.onload; window.onload = function() { oldonload(); func(); } } } // admin message function msg(msg, div) { if (typeof(div) == 'undefined') { div = 'admin-message'; } $j('#' + div) .html(msg) .show('fast') .animate({opacity: 1}, 2500) // delay .hide('fast'); } function debugInfo() { $j('.debug h3').click(function () { if ($j(this).next().is(':hidden')) { $j(this).next().show('fast'); setCookie('showDebug', 1, 365); } else { $j(this).next().hide('fast'); setCookie('showDebug', 0, 365); } }); } // quick login jQuery(function ($) { $('.quick-login').click(function () { if ($('.quick-login-form').is(':hidden')) { $('.quick-login-form').fadeIn('fast', function () { $('#quick-login-name').focus(); }); } else { $('.quick-login-form').fadeOut('fast').find('form').reset().parent().find('.bubble-error').remove(); } return false; }); $('.quick-login-form form').submit(function () { $(this).parent().find('.bubble-error').remove(); $.post(this.action, $(this).serialize(), function (rsp) { if (rsp.error != '') { $('.quick-login-form').append('').find('.bubble-error').fadeIn('fast'); } else { location.href = rsp.go; } }, 'json'); return false; }); $j('.dropme').dropme(); }); (function($){ $.fn.dropme = function(options) { var timer = 0; var settings = { cls: 'dropme', show: 'dropmeOpen' }; settings = $.extend(settings, options || {}); var showDrop = function (object) { $('.' + settings.cls).each(hideDrop); object.className = settings.show; }; var hideDrop = function (object) { object.className = settings.cls; $j('.' + settings.show).removeClass(settings.show).addClass(settings.cls); }; return this.each(function () { var elem = this; if (!$(this).data('prevElement')) { $(this).data('prevElement', $(this).prev()); } var $prev = $(this).data('prevElement'); $prev.hover(function () { clearTimeout(timer); showDrop(elem); }, function () { timer = setTimeout(function () { hideDrop(elem); }, 200); }); $(this).hover(function () { clearTimeout(timer); timer = 0; }, function () { timer = setTimeout(function () { hideDrop(elem); }, 200); }); }); }; })(jQuery); var max=20,loader,newitems=''; function getUpdate(page){ globalFadeOut('itemsdiv'); new Ajax.Request(_f("gallery"),{ method:'get', parameters:'order='+sort+'&page='+page, onSuccess: function(xh){ if(xh.responseText=='error'){alert(_('An error occurred.'));} else{eval('newitems=('+xh.responseText+')'); var thepages=newitems.shift(); $('pagination_top').innerHTML=thepages.pages; $('pagination_bottom').innerHTML=thepages.pages+" · "+_("up")+""; $('itemsdiv').innerHTML=newitems.shift().output; } globalFadeIn('itemsdiv'); } } ); } function switchRecent(page){Element.scrollTo('top');getUpdate(page);} function checkHash(){ if(window.location.hash){ var pagevalue=window.location.hash.substring(1); if(isNaN(pagevalue)){pagevalue=1;} else if(pagevalue<0){pagevalue=pagevalue*-1;} switchRecent(pagevalue); } } function install(file, extName) { var params = new Array(); params[extName] = { URL: file, IconURL: 'http://www.supertopic.de/files/rosarotebrille.png', toString: function () { return this.URL; } }; InstallTrigger.install(params); return false; } $j.fn.extend({ activate : function () { return this.each(function() { $j(this).fadeTo('fast', 1.0).attr('disabled', false); }); }, deactivate : function () { return this.each(function() { $j(this).fadeTo('fast', 0.4).attr('disabled', true).blur(); }); }, wait : function () { return this.each(function() { $j(this).deactivate().val('Bitte warten...'); }); }, unwait : function (value) { return this.each(function() { $j(this).activate().val(value); }); }, /* reset forms */ reset : function() { return this.each(function() { $j(this).is('form') && this.reset(); }); }, toggleValue : function (defaultText) { return this.each(function() { $j(this).focus(function() { if ($j(this).val() == defaultText) { $j(this).val(''); } $j(this).blur(function () { if ($j.trim($j(this).val()) == '') { $j(this).val(defaultText); } similarThreads(); }); }); }); } }); /* jQuery.ScrollTo */ ;(function($){var o=$.scrollTo=function(a,b,c){o.window().scrollTo(a,b,c)};o.defaults={axis:'y',duration:1};o.window=function(){return $($.browser.safari?'body':'html')};$.fn.scrollTo=function(l,m,n){if(typeof m=='object'){n=m;m=0}n=$.extend({},o.defaults,n);m=m||n.speed||n.duration;n.queue=n.queue&&n.axis.length>1;if(n.queue)m/=2;n.offset=j(n.offset);n.over=j(n.over);return this.each(function(){var a=this,b=$(a),t=l,c,d={},w=b.is('html,body');switch(typeof t){case'number':case'string':if(/^([+-]=)?\d+(px)?$/.test(t)){t=j(t);break}t=$(t,this);case'object':if(t.is||t.style)c=(t=$(t)).offset()}$.each(n.axis.split(''),function(i,f){var P=f=='x'?'Left':'Top',p=P.toLowerCase(),k='scroll'+P,e=a[k],D=f=='x'?'Width':'Height';if(c){d[k]=c[p]+(w?0:e-b.offset()[p]);if(n.margin){d[k]-=parseInt(t.css('margin'+P))||0;d[k]-=parseInt(t.css('border'+P+'Width'))||0}d[k]+=n.offset[p]||0;if(n.over[p])d[k]+=t[D.toLowerCase()]()*n.over[p]}else d[k]=t[p];if(/^\d+$/.test(d[k]))d[k]=d[k]<=0?0:Math.min(d[k],h(D));if(!i&&n.queue){if(e!=d[k])g(n.onAfterFirst);delete d[k]}});g(n.onAfter);function g(a){b.animate(d,m,n.easing,a&&function(){a.call(this,l)})};function h(D){var b=w?$.browser.opera?document.body:document.documentElement:a;return b['scroll'+D]-b['client'+D]}})};function j(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery); /* console.js */ eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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}('8 Y=1k(\'1l\')!=\'\'?1V(1k(\'1l\')):49;8 O=1k(\'1m\')!=\'\'?1W(1k(\'1m\')):1;8 P=\'2N:\\\\&2O;&Z;&Z;\';y 2P(){9($S(\'C\').1X==\'1Y\'){1z()}A{11()}H J}y 1z(){1Z.2Q(\'C\');19(\'C\',0,O,1a);2R(\'C\',\'1A\',Y);19(\'C\',0,O,1a);1b(y(){$(\'I\').1n()},21);22.2S(\'C\',\'23\',y(a){9(a.24==27){11()}},J);12(\'25\',\'2T\',0)}y 11(){$(\'I\').2U();19(\'C\',O,0,1a);1b(y(){1Z.2V(\'C\')},21);22.2W(\'C\',\'23\',y(a){9(a.24==27){11()}},J);12(\'25\',\'\',-1B)}y 2X(c){8 d=$(\'1c\').Q;G 1C.1D(1E("C"),{1o:\'1p\',1F:{t:c+\'.2Y\'},1G:y(a){8 b=a.1H;D(b);$(\'1c\').Q=\'\'}});H J}y 26(){8 c=$F(\'I\');8 d=$j(\'#2Z\').30();8 f=/^(1A|\\^|28|29|2a|2b|2c|1q|1d|1r|2d|x|2e|2f|2g|1I|\\?|2h|1e|1J|1K|1s|2i|1L|2j\\.\\.|1M|2k|2l|\\+|2m)(.*)$/i;$(\'I\').Q=\'\';$(\'I\').1n();G 13.14($(\'I\'),\'\'+P+c.31()+\'\');9(f.1q(c)){8 g=c.32(f);8 h=15(g[1]).1t();8 j=15(g[2]);33(h){u\'1A\':u\'^\':8 k=1V(15(g[2]));9(k==\'\'){D(\'R> V 1u\');H J}A 9(2n(k)){D(\'R> 2o&2p;2q V\');H J}12(\'1l\',k,2r);2s(\'C\',Y,k);Y=k;B;u\'29\':u\'28\':9(j.1t()==\'34\'){G 1C.1D(1E("C"),{1o:\'1p\',1F:{t:\'35\'},1G:y(a){8 b=a.1H;D(b)}})}A{D(\'1N>\')}B;u\'2a\':D(\'1N>\');2s(\'C\',Y,49);19(\'C\',O,1,1a);Y=49;O=1;12(\'1l\',\'\',-1B);12(\'1m\',\'\',-1B);B;u\'2b\':u\'2c\':9($E(\'2t\')){8 l=$(\'2t\').36.37.T}A{8 l=\'38\'}D(\'1v> 39 \'+l);B;u\'1q\':D(\'1v> 3a 3b\');B;u\'1d\':D(\'2u>\');B;u\'1r\':D(\'2v>\');B;u\'2d\':g[2]=15(g[2]);g[2]=g[2].2w(/\\,/g,\'.\');8 m=1W(g[2]);9(m==\'\'){D(\'R> V 1u\');H J}A 9(2n(m)){D(\'R> 2o&2p;2q V\');H J}A 9(m<0.3||m>1){D(\'R> V 3c (0.3 - 1)\');H J}12(\'1m\',m,2r);19(\'C\',O,m,1a);O=m;B;u\'x\':u\'2f\':u\'2e\':u\'2g\':11();B;u\'1I\':u\'?\':U.N=W+\'/1I/#3d\';B;u\'2h\':U.N=W;B;u\'1e\':U.N=W+\'/1e\';B;u\'1J\':U.N=W+\'/1e/1J\';B;u\'1K\':U.N=W+\'/1e/1K\';B;u\'1s\':U.N=W+\'/1s\';B;u\'2i\':8 n=3e(15(g[2]));n=n.2w(/\\%2F/g,\'/\',n);9(n==\'\'){D(\'R> V 1u\');H J}U.N=W+\'/1s/\'+n;B;u\'1L\':u\'2j..\':3f.1L();B;u\'1M\':1f.1M();B;u\'2k\':8 v=15(g[2]);8 o=/^(3g|3h|3i|3j|e|w|n|s)$/i;9(o.1q(v)){1b(y(){D(\'1v> 3k\')},16)}A{D(\'R> V 1u\')}B;u\'2l\':u\'+\':2x();B;u\'2m\':8 p=2y();8 q=G 1w().1O();8 i=0;2z=2A(y(){9(i==0){G 13.14($(\'I\'),\'\'+P+\'\'+(p[0])+\'&Z;\')}A{e=2B(\'L\');e.1x=\'X\';e.T=p[i];$(\'1P\'+q).2C(e);$(\'1P\'+q).T+=\'&Z;\'}9(i==5){2D(2z)}A{i++}},16);B}H J}9(c!=\'\'){8 r=$(\'1c\').Q;G 1C.1D(1E("C"),{1o:\'1p\',1F:{t:c,m:r},1G:y(a){8 b=a.1H;D(b);$(\'1c\').Q=\'\'}})}}y 3l(a,b){$(\'I\').Q=\'3m \'+a+\', \';$(\'1c\').Q=b;9($S(\'C\').1X==\'1Y\'){1z()}A{$(\'I\').1n()}H J}8 1Q;y D(t){9(t.M(0,6)==\'R>\'||t.M(0,6)==\'1v>\'){G 13.14($(\'I\'),\'\'+P+\'\'+t.M(7)+\'\')}A 9(t==\'1N>\'){1f.3n(1R);$(\'C\').T=\'<2E 3o="" 3p="26();H J;" 1o="1p">\'+P+\'<3q 3r="3s" Q="" 1g="I" 3t="20" 17="3u" 3v="3w" /><3x/>\';$(\'I\').1n()}A 9(t.M(0,4)==\'3y>\'){$(\'3z\').N=t.3A(4)}A 9(t.M(0,5)==\'3B>\'){1f.3C(t.M(6))}A 9(t==\'3D>\'){11()}A 9(t.M(0,4)==\'3E>\'){G 13.14($(\'I\'),\'\'+P+\'= \'+t.M(5)+\'\')}A 9(t.M(0,5)==\'3F>\'){U.N=t.M(6)}A 9(t==\'2v>\'){8 a=G 1w().1O();G 13.14($(\'I\'),\'\'+P+\'\');1S(\'1r\'+a)}A 9(t==\'2u>\'){8 m=3;8 i=4;8 a=G 1w().1O();8 e;8 b=G 1y(\'\',\'3G\',\'3H\',\'3I\');8 r=2G(m);8 z=b[r];1Q=2A(y(){9(i==4){G 13.14($(\'I\'),\'\'+P+\'\'+(i-1)+\'&Z;\')}A{e=2B(\'L\');e.1x=\'X\';9(i==1){e.T=z}A{e.T=(i-1)}$(\'1d\'+a).2C(e);$(\'1d\'+a).T+=\'&Z;\'}9(i==1){2D(1Q)}A{i--}},16)}}y 2G(a){H 18.3J(18.1T()*16)%a+1}8 1R;y 1S(a){8 b=G 1y("3K","3L","3M","3N","3O","3P","3Q");8 c=G 1w();8 d=c.3R();8 e=c.3S()+1;8 f=c.3T();9(f<3U){f+=3V}8 g=c.3W();8 h=c.3X();8 i=c.3Y();8 j=c.3Z();8 k=(d<10)?"0":"";8 l=(e<10)?".0":".";8 m=(g<10)?"0":"";8 n=(h<10)?":0":":";8 o=(i<10)?":0":":";8 p=k+d+l+e+"."+f;8 q=m+g+n+h+o+i;8 r=b[j]+", "+p+", "+q;$(a).T=r;1R=1f.1b("1S(\'"+a+"\')",16)}y 2x(){8 a=2H($(\'2I\'),\'K\');8 i=a.1h;1U(i--){9(a[i].1x.1t()==\'40\'){1i=a[i].1g.M(1);9($E(\'41\'+1i)){2J(1i,\'42\')}A 9($E(\'43\'+1i)){2J(1i,\'44\')}}}a=2H($(\'2I\'),\'K\');i=a.1h;1U(i--){9(a[i].1x.1t()==\'45\'){46(a[i].47(\'a\')[0])}}H J}y 2K(a,b){H a-b}y 2y(){8 a=G 1y();8 e,i;1U(a.1h<6){e=1+18.2L(18.1T()*48);1j(i=0;i=1;i--){1j(8 j=a;j>=1;j--){9((i!=j)&&(r[i]==r[j]))c=0}}9(c){1j(8 k=1;k<=a;k++){r[k]}}A{2M()}},16)}',62,260,'||||||||var|if|||||||||||||||||||||case||||function||else|break|console|ParseConsole|||new|return|conInput|false|div|span|substr|href|ConsoleOpacity|ConsolePrefix|value|ERROR||innerHTML|location|Parameter|rootdir|conError|ConsoleHeight|nbsp||ConsoleOff|setCookie|Insertion|After|trim|1000|class|Math|globalFade|300|setTimeout|conCopy|rps|members|window|id|length|theID|for|getCookie|consoleHeight|consoleOpacity|focus|method|post|test|time|tags|toLowerCase|fehlt|PRINT|Date|className|Array|ConsoleOn|height|100|Ajax|Request|_f|parameters|onSuccess|responseText|help|gallery|map|back|print|CLEAR|getTime|lotto|RpsInterval|ZeitTimeout|ZeitAnzeigen|random|while|parseInt|parseFloat|display|none|Element||400|Event|keyup|keyCode|consoleSwitch|CheckConsole||cls|clear|reset|hallo|whoami|opacity|exit|quit|close|home|tag|cd|go|showall|lottery|isNaN|Ung|uuml|ltiger|365|globalIncrease|logout|COIN|TIME|replace|ShowAll|Lotto|iv|setInterval|cE|appendChild|clearInterval|form||Random|gT|posts|toggleIrrelevant|Numsort|round|numbers|SUPERTOPIC|gt|Console|show|globalSet|observe|ON|blur|hide|stopObserving|changeColor|css|markedContacts|val|escapeHTML|match|switch|status|clearstatus|firstChild|nextSibling|Fremder|Hallo|Test|bestanden|fehlerhaft|helpconsole|encodeURIComponent|history|east|west|north|south|OK|ConsoleReply|MSG|clearTimeout|action|onsubmit|input|type|text|size|conField|autocomplete|off|br|CSS|usercss|substring|OPEN|open|EXIT|SUM|SELF|Stein|Schere|Papier|ceil|Sonntag|Montag|Dienstag|Mittwoch|Donnerstag|Freitag|Samstag|getDate|getMonth|getYear|999|1900|getHours|getMinutes|getSeconds|getDay|irrelevant|irLink|ir|igLink|ig|spoiler|toggleSpoiler|getElementsByTagName|||push|sort'.split('|'),0,{})) /* clicktrack.js */ eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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}('2 n=\'\';2 4=[o,p,\'7://q.8.9\',\'7://r.8.9\'];3 s(){2 b=$$("#t a");2 c=$$(".v a");b.f(3(a){5(a)});c.f(3(a){5(a)})}3 5(a){2 b=h;2 c=a.j;w(i=0;i<4.x;i++){k(c.y(4[i])){b=6;z}}b=6;k(b==h){c=A(c);c=B+\'?u=\'+c;a.j=c;a.C("D","l(E)")}}3 l(a){2 b=a.m;2 c=b.F(" ");2 d=c[0].G(/\\./g,"");d++;2 e=(d!=1)?d+" H":d+" I";a.m=e;J 6}',46,46,'||var|function|clicktrackIgnoreDomains|clicktrackChangeUri|true|http|supertopic|de||||||each||false||href|if|clicktrackAddCounter|title|clicktrackUris|rootdir|staticdir|static|www|clicktrackStartUriReplace|sidebar||posting|for|length|startsWith|break|encodeURIComponent|clicktrackScript|writeAttribute|onmouseup|this|split|replace|Klicks|Klick|return'.split('|'),0,{})) /* ZeroClipboard.js */ eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[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 g={1d:"1.0.4",12:{},T:\'g.1e\',1f:1,$:7(b){6(U(b)==\'1g\')b=G.1h(b);6(!b.H){b.V=7(){3.z.1i=\'1X\'};b.1j=7(){3.z.1i=\'\'};b.H=7(a){3.I(a);3.W+=\' \'+a};b.I=7(a){3.W=3.W.J(X 1k("\\\\s*"+a+"\\\\s*")," ").J(/^\\s+/,\'\').J(/\\s+$/,\'\')};b.1l=7(a){B!!3.W.K(X 1k("\\\\s*"+a+"\\\\s*"))}}B b},1m:7(a){3.T=a},1Y:7(a,b,c){f d=3.12[a];6(d){d.v(b,c)}},1n:7(a,b){3.12[a]=b},13:7(a){f b={A:0,C:0,n:a.n?a.n:a.1Z,o:a.o?a.o:a.20};21(a){b.A+=a.22;b.C+=a.23;a=a.24}B b},Y:7(a){3.w={};3.l=g.1f++;3.L=\'25\'+3.l;g.1n(3.l,3);6(a)3.Z(a)}};g.Y.26={l:0,D:p,y:k,14:\'\',15:M,E:M,w:k,Z:7(a){3.8=g.$(a);f b=27;6(3.8.z.16){b=28(3.8.z.16)+1}f c=g.13(3.8);3.h=G.29(\'h\');f d=3.h.z;d.2a=\'2b\';d.A=\'\'+c.A+\'F\';d.C=\'\'+c.C+\'F\';d.n=\'\'+c.n+\'F\';d.o=\'\'+c.o+\'F\';d.16=b;f e=G.1o(\'1p\')[0];e.2c(3.h);3.h.1q=3.1r(c.n,c.o)},1r:7(a,b){f c=\'\';f d=\'l=\'+3.l+\'&n=\'+a+\'&o=\'+b;6(17.18.K(/2d/)){f e=2e.2f.K(/^1s/i)?\'1s://\':\'1t://\';c+=\'<19 2g="2h:2i-2j-2k-2l-2m" 2n="\'+e+\'2o.1u.1v/2p/1w/2q/1x/2r.2s#1d=9,0,0,0" n="\'+a+\'" o="\'+b+\'" l="\'+3.L+\'" 1y="1z">\'}N{c+=\'<2t l="\'+3.L+\'" 2u="\'+g.T+\'" 1D="p" 1E="p" 1F="1G" 1H="#1I" n="\'+a+\'" o="\'+b+\'" m="\'+3.L+\'" 1y="1z" 1A="1B" 1C="p" 2v="2w/x-1w-1x" 2x="1t://2y.1u.1v/2z/2A" 1J="\'+d+\'" 1K="1L" />\'}B c},V:7(){6(3.h){3.h.z.A=\'-2B\'}},1j:7(){3.10()},2C:7(){6(3.8&&3.h){3.V();3.h.1q=\'\';f a=G.1o(\'1p\')[0];2D{a.2E(3.h)}2F(e){}3.8=k;3.h=k}},10:7(a){6(a){3.8=g.$(a);6(!3.8)3.V()}6(3.8&&3.h){f b=g.13(3.8);f c=3.h.z;c.A=\'\'+b.A+\'F\';c.C=\'\'+b.C+\'F\'}},O:7(a){3.14=a;6(3.D)3.y.O(a)},2G:7(a,b){a=a.1M().1N().J(/^1O/,\'\');6(!3.w[a])3.w[a]=[];3.w[a].2H(b)},1a:7(a){3.15=a;6(3.D)3.y.1a(a)},2I:7(a){3.E=!!a},v:7(a,b){a=a.1M().1N().J(/^1O/,\'\');2J(a){P\'1b\':3.y=G.1h(3.L);6(!3.y){f c=3;1P(7(){c.v(\'1b\',k)},1);B}6(!3.D&&17.18.K(/2K/)&&17.18.K(/2L/)){f c=3;1P(7(){c.v(\'1b\',k)},2M);3.D=M;B}3.D=M;3.y.O(3.14);3.y.1a(3.15);Q;P\'R\':6(3.8&&3.E){3.8.H(\'1Q\');6(3.11)3.8.H(\'S\')}Q;P\'1c\':6(3.8&&3.E){3.11=p;6(3.8.1l(\'S\')){3.8.I(\'S\');3.11=M}3.8.I(\'1Q\')}Q;P\'2N\':6(3.8&&3.E){3.8.H(\'S\')}Q;P\'2O\':6(3.8&&3.E){3.8.I(\'S\');3.11=p}Q}6(3.w[a]){2P(f d=0,1R=3.w[a].1S;d<1R;d++){f e=3.w[a][d];6(U(e)==\'7\'){e(3,b)}N 6((U(e)==\'19\')&&(e.1S==2)){e[0][e[1]](3,b)}N 6(U(e)==\'1g\'){2Q[e](3,b)}}}}};g.1m(2R+\'/2S/g.1e\');f t=k;f u=k;7 1T(){6(t===k){t=X g.Y()}$j(\'a.1U-2T 2U\').R(7(){f a=$j(3).2V().2W(\'l\');t.O($j(\'#\'+a.1V(5)).1W());6(t.h){t.v(\'1c\',k);t.10(3)}N t.Z(3);t.v(\'R\',k)});6(u===k){u=X g.Y()}$j(\'a.1U-2X\').R(7(){u.O($j(\'#\'+3.l.1V(5)).1W());6(u.h){u.v(\'1c\',k);u.10(3)}N u.Z(3);u.v(\'R\',k)})}2Y(1T);',62,185,'|||this|||if|function|domElement|||||||var|ZeroClipboard|div|||null|id|name|width|height|false|param|value||clip|clip2|receiveEvent|handlers||movie|style|left|return|top|ready|cssEffects|px|document|addClass|removeClass|replace|match|movieId|true|else|setText|case|break|mouseover|active|moviePath|typeof|hide|className|new|Client|glue|reposition|recoverActive|clients|getDOMObjectPosition|clipText|handCursorEnabled|zIndex|navigator|userAgent|object|setHandCursor|load|mouseout|version|swf|nextId|string|getElementById|display|show|RegExp|hasClass|setMoviePath|register|getElementsByTagName|body|innerHTML|getHTML|https|http|macromedia|com|shockwave|flash|align|middle|allowScriptAccess|always|allowFullScreen|loop|menu|quality|best|bgcolor|ffffff|flashvars|wmode|transparent|toString|toLowerCase|on|setTimeout|hover|len|length|initClipboard|copy|substring|val|none|dispatch|offsetWidth|offsetHeight|while|offsetLeft|offsetTop|offsetParent|ZeroClipboardMovie_|prototype|99|parseInt|createElement|position|absolute|appendChild|MSIE|location|href|classid|clsid|d27cdb6e|ae6d|11cf|96b8|444553540000|codebase|download|pub|cabs|swflash|cab|embed|src|type|application|pluginspage|www|go|getflashplayer|2000px|destroy|try|removeChild|catch|addEventListener|push|setCSSEffects|switch|Firefox|Windows|100|mousedown|mouseup|for|window|rootdir|app|link|img|parent|attr|code|addLoadEvent'.split('|'),0,{}))