/*
 * Copyright (c) 2005-2006, Image Matters LLC. All Rights Reserved.
 * 
 * This software is distributed under the terms of the LICENSE file
 * included with the program and available here:
 * 
 * http://www.imagemattersllc.com/legal-notice/LICENSE-userSmartsGX.html
 */
namespace("contrib");if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.Base");}
if(typeof(MochiKit)=="undefined"){MochiKit={};}
if(typeof(MochiKit.Base)=="undefined"){MochiKit.Base={};}
MochiKit.Base.VERSION="1.3.1";MochiKit.Base.NAME="MochiKit.Base";MochiKit.Base.update=function(_1,_2){if(_1===null){_1={};}
for(var i=1;i<arguments.length;i++){var o=arguments[i];if(typeof(o)!="undefined"&&o!==null){for(var k in o){_1[k]=o[k];}}}
return _1;};MochiKit.Base.update(MochiKit.Base,{__repr__:function(){return"["+this.NAME+" "+this.VERSION+"]";},toString:function(){return this.__repr__();},counter:function(n){if(arguments.length===0){n=1;}
return function(){return n++;};},clone:function(_7){var me=arguments.callee;if(arguments.length==1){me.prototype=_7;return new me();}},flattenArguments:function(_9){var res=[];var m=MochiKit.Base;var _12=m.extend(null,arguments);while(_12.length){var o=_12.shift();if(o&&typeof(o)=="object"&&typeof(o.length)=="number"){for(var i=o.length-1;i>=0;i--){_12.unshift(o[i]);}}else{res.push(o);}}
return res;},extend:function(_13,obj,_15){if(!_15){_15=0;}
if(obj){var l=obj.length;if(typeof(l)!="number"){if(typeof(MochiKit.Iter)!="undefined"){obj=MochiKit.Iter.list(obj);l=obj.length;}else{throw new TypeError("Argument not an array-like and MochiKit.Iter not present");}}
if(!_13){_13=[];}
for(var i=_15;i<l;i++){_13.push(obj[i]);}}
return _13;},updatetree:function(_17,obj){if(_17===null){_17={};}
for(var i=1;i<arguments.length;i++){var o=arguments[i];if(typeof(o)!="undefined"&&o!==null){for(var k in o){var v=o[k];if(typeof(_17[k])=="object"&&typeof(v)=="object"){arguments.callee(_17[k],v);}else{_17[k]=v;}}}}
return _17;},setdefault:function(_19,obj){if(_19===null||typeof(_19)=="undefined"){_19={};}
for(var i=1;i<arguments.length;i++){var o=arguments[i];for(var k in o){if(!(k in _19)){_19[k]=o[k];}}}
return _19;},keys:function(obj){var _20=[];for(var _21 in obj){_20.push(_21);}
return _20;},items:function(obj){var _22=[];var e;for(var _24 in obj){var v;try{v=obj[_24];}
catch(e){continue;}
_22.push([_24,v]);}
return _22;},_newNamedError:function(_25,_26,_27){_27.prototype=new MochiKit.Base.NamedError(_25.NAME+"."+_26);_25[_26]=_27;},operator:{truth:function(a){return!!a;},lognot:function(a){return!a;},identity:function(a){return a;},not:function(a){return~a;},neg:function(a){return-a;},add:function(a,b){return a+b;},sub:function(a,b){return a-b;},div:function(a,b){return a/b;},mod:function(a,b){return a%b;},mul:function(a,b){return a*b;},and:function(a,b){return a&b;},or:function(a,b){return a|b;},xor:function(a,b){return a^b;},lshift:function(a,b){return a<<b;},rshift:function(a,b){return a>>b;},zrshift:function(a,b){return a>>>b;},eq:function(a,b){return a==b;},ne:function(a,b){return a!=b;},gt:function(a,b){return a>b;},ge:function(a,b){return a>=b;},lt:function(a,b){return a<b;},le:function(a,b){return a<=b;},ceq:function(a,b){return MochiKit.Base.compare(a,b)===0;},cne:function(a,b){return MochiKit.Base.compare(a,b)!==0;},cgt:function(a,b){return MochiKit.Base.compare(a,b)==1;},cge:function(a,b){return MochiKit.Base.compare(a,b)!=-1;},clt:function(a,b){return MochiKit.Base.compare(a,b)==-1;},cle:function(a,b){return MochiKit.Base.compare(a,b)!=1;},logand:function(a,b){return a&&b;},logor:function(a,b){return a||b;},contains:function(a,b){return b in a;}},forwardCall:function(_30){return function(){return this[_30].apply(this,arguments);};},itemgetter:function(_31){return function(arg){return arg[_31];};},typeMatcher:function(){var _33={};for(var i=0;i<arguments.length;i++){var typ=arguments[i];_33[typ]=typ;}
return function(){for(var i=0;i<arguments.length;i++){if(!(typeof(arguments[i])in _33)){return false;}}
return true;};},isNull:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==null){return false;}}
return true;},isUndefinedOrNull:function(){for(var i=0;i<arguments.length;i++){var o=arguments[i];if(!(typeof(o)=="undefined"||o===null)){return false;}}
return true;},isEmpty:function(obj){return!MochiKit.Base.isNotEmpty.apply(this,arguments);},isNotEmpty:function(obj){for(var i=0;i<arguments.length;i++){var o=arguments[i];if(!(o&&o.length)){return false;}}
return true;},isArrayLike:function(){for(var i=0;i<arguments.length;i++){var o=arguments[i];var typ=typeof(o);if((typ!="object"&&!(typ=="function"&&typeof(o.item)=="function"))||o===null||typeof(o.length)!="number"){return false;}}
return true;},isDateLike:function(){for(var i=0;i<arguments.length;i++){var o=arguments[i];if(typeof(o)!="object"||o===null||typeof(o.getTime)!="function"){return false;}}
return true;},xmap:function(fn){if(fn===null){return MochiKit.Base.extend(null,arguments,1);}
var _36=[];for(var i=1;i<arguments.length;i++){_36.push(fn(arguments[i]));}
return _36;},map:function(fn,lst){var m=MochiKit.Base;var itr=MochiKit.Iter;var _39=m.isArrayLike;if(arguments.length<=2){if(!_39(lst)){if(itr){lst=itr.list(lst);if(fn===null){return lst;}}else{throw new TypeError("Argument not an array-like and MochiKit.Iter not present");}}
if(fn===null){return m.extend(null,lst);}
var _40=[];for(var i=0;i<lst.length;i++){_40.push(fn(lst[i]));}
return _40;}else{if(fn===null){fn=Array;}
var _41=null;for(i=1;i<arguments.length;i++){if(!_39(arguments[i])){if(itr){return itr.list(itr.imap.apply(null,arguments));}else{throw new TypeError("Argument not an array-like and MochiKit.Iter not present");}}
var l=arguments[i].length;if(_41===null||_41>l){_41=l;}}
_40=[];for(i=0;i<_41;i++){var _42=[];for(var j=1;j<arguments.length;j++){_42.push(arguments[j][i]);}
_40.push(fn.apply(this,_42));}
return _40;}},xfilter:function(fn){var _44=[];if(fn===null){fn=MochiKit.Base.operator.truth;}
for(var i=1;i<arguments.length;i++){var o=arguments[i];if(fn(o)){_44.push(o);}}
return _44;},filter:function(fn,lst,_45){var _46=[];var m=MochiKit.Base;if(!m.isArrayLike(lst)){if(MochiKit.Iter){lst=MochiKit.Iter.list(lst);}else{throw new TypeError("Argument not an array-like and MochiKit.Iter not present");}}
if(fn===null){fn=m.operator.truth;}
if(typeof(Array.prototype.filter)=="function"){return Array.prototype.filter.call(lst,fn,_45);}else{if(typeof(_45)=="undefined"||_45===null){for(var i=0;i<lst.length;i++){var o=lst[i];if(fn(o)){_46.push(o);}}}else{for(i=0;i<lst.length;i++){o=lst[i];if(fn.call(_45,o)){_46.push(o);}}}}
return _46;},_wrapDumbFunction:function(_47){return function(){switch(arguments.length){case 0:return _47();case 1:return _47(arguments[0]);case 2:return _47(arguments[0],arguments[1]);case 3:return _47(arguments[0],arguments[1],arguments[2]);}
var _48=[];for(var i=0;i<arguments.length;i++){_48.push("arguments["+i+"]");}
return eval("(func("+_48.join(",")+"))");};},method:function(_49,_50){var m=MochiKit.Base;return m.bind.apply(this,m.extend([_50,_49],arguments,2));},bind:function(_51,_52){if(typeof(_51)=="string"){_51=_52[_51];}
var _53=_51.im_func;var _54=_51.im_preargs;var _55=_51.im_self;var m=MochiKit.Base;if(typeof(_51)=="function"&&typeof(_51.apply)=="undefined"){_51=m._wrapDumbFunction(_51);}
if(typeof(_53)!="function"){_53=_51;}
if(typeof(_52)!="undefined"){_55=_52;}
if(typeof(_54)=="undefined"){_54=[];}else{_54=_54.slice();}
m.extend(_54,arguments,2);var _56=function(){var _57=arguments;var me=arguments.callee;if(me.im_preargs.length>0){_57=m.concat(me.im_preargs,_57);}
var _52=me.im_self;if(!_52){_52=this;}
return me.im_func.apply(_52,_57);};_56.im_self=_55;_56.im_func=_53;_56.im_preargs=_54;return _56;},bindMethods:function(_58){var _59=MochiKit.Base.bind;for(var k in _58){var _60=_58[k];if(typeof(_60)=="function"){_58[k]=_59(_60,_58);}}},registerComparator:function(_61,_62,_63,_64){MochiKit.Base.comparatorRegistry.register(_61,_62,_63,_64);},_primitives:{"boolean":true,"string":true,"number":true},compare:function(a,b){if(a==b){return 0;}
var _65=(typeof(a)=="undefined"||a===null);var _66=(typeof(b)=="undefined"||b===null);if(_65&&_66){return 0;}else{if(_65){return-1;}else{if(_66){return 1;}}}
var m=MochiKit.Base;var _67=m._primitives;if(!(typeof(a)in _67&&typeof(b)in _67)){try{return m.comparatorRegistry.match(a,b);}
catch(e){if(e!=m.NotFound){throw e;}}}
if(a<b){return-1;}else{if(a>b){return 1;}}
var _68=m.repr;throw new TypeError(_68(a)+" and "+_68(b)+" can not be compared");},compareDateLike:function(a,b){return MochiKit.Base.compare(a.getTime(),b.getTime());},compareArrayLike:function(a,b){var _69=MochiKit.Base.compare;var _70=a.length;var _71=0;if(_70>b.length){_71=1;_70=b.length;}else{if(_70<b.length){_71=-1;}}
for(var i=0;i<_70;i++){var cmp=_69(a[i],b[i]);if(cmp){return cmp;}}
return _71;},registerRepr:function(_73,_74,_75,_76){MochiKit.Base.reprRegistry.register(_73,_74,_75,_76);},repr:function(o){if(typeof(o)=="undefined"){return"undefined";}else{if(o===null){return"null";}}
try{if(typeof(o.__repr__)=="function"){return o.__repr__();}else{if(typeof(o.repr)=="function"&&o.repr!=arguments.callee){return o.repr();}}
return MochiKit.Base.reprRegistry.match(o);}
catch(e){if(typeof(o.NAME)=="string"&&(o.toString==Function.prototype.toString||o.toString==Object.prototype.toString)){return o.NAME;}}
try{var _77=(o+"");}
catch(e){return"["+typeof(o)+"]";}
if(typeof(o)=="function"){o=_77.replace(/^\s+/,"");var idx=o.indexOf("{");if(idx!=-1){o=o.substr(0,idx)+"{...}";}}
return _77;},reprArrayLike:function(o){var m=MochiKit.Base;return"["+m.map(m.repr,o).join(", ")+"]";},reprString:function(o){return("\""+o.replace(/(["\\])/g,"\\$1")+"\"").replace(/[\f]/g,"\\f").replace(/[\b]/g,"\\b").replace(/[\n]/g,"\\n").replace(/[\t]/g,"\\t").replace(/[\r]/g,"\\r");},reprNumber:function(o){return o+"";},registerJSON:function(_79,_80,_81,_82){MochiKit.Base.jsonRegistry.register(_79,_80,_81,_82);},evalJSON:function(){return eval("("+arguments[0]+")");},serializeJSON:function(o){var _83=typeof(o);if(_83=="undefined"){return"undefined";}else{if(_83=="number"||_83=="boolean"){return o+"";}else{if(o===null){return"null";}}}
var m=MochiKit.Base;var _84=m.reprString;if(_83=="string"){return _84(o);}
var me=arguments.callee;var _85;if(typeof(o.__json__)=="function"){_85=o.__json__();if(o!==_85){return me(_85);}}
if(typeof(o.json)=="function"){_85=o.json();if(o!==_85){return me(_85);}}
if(_83!="function"&&typeof(o.length)=="number"){var res=[];for(var i=0;i<o.length;i++){var val=me(o[i]);if(typeof(val)!="string"){val="undefined";}
res.push(val);}
return"["+res.join(", ")+"]";}
try{_85=m.jsonRegistry.match(o);return me(_85);}
catch(e){if(e!=m.NotFound){throw e;}}
if(_83=="function"){return null;}
res=[];for(var k in o){var _87;if(typeof(k)=="number"){_87="\""+k+"\"";}else{if(typeof(k)=="string"){_87=_84(k);}else{continue;}}
val=me(o[k]);if(typeof(val)!="string"){continue;}
res.push(_87+":"+val);}
return"{"+res.join(", ")+"}";},objEqual:function(a,b){return(MochiKit.Base.compare(a,b)===0);},arrayEqual:function(_88,arr){if(_88.length!=arr.length){return false;}
return(MochiKit.Base.compare(_88,arr)===0);},concat:function(){var _90=[];var _91=MochiKit.Base.extend;for(var i=0;i<arguments.length;i++){_91(_90,arguments[i]);}
return _90;},keyComparator:function(key){var m=MochiKit.Base;var _93=m.compare;if(arguments.length==1){return function(a,b){return _93(a[key],b[key]);};}
var _94=m.extend(null,arguments);return function(a,b){var _95=0;for(var i=0;(_95===0)&&(i<_94.length);i++){var key=_94[i];_95=_93(a[key],b[key]);}
return _95;};},reverseKeyComparator:function(key){var _96=MochiKit.Base.keyComparator.apply(this,arguments);return function(a,b){return _96(b,a);};},partial:function(_97){var m=MochiKit.Base;return m.bind.apply(this,m.extend([_97,undefined],arguments,1));},listMinMax:function(_98,lst){if(lst.length===0){return null;}
var cur=lst[0];var _100=MochiKit.Base.compare;for(var i=1;i<lst.length;i++){var o=lst[i];if(_100(o,cur)==_98){cur=o;}}
return cur;},objMax:function(){return MochiKit.Base.listMinMax(1,arguments);},objMin:function(){return MochiKit.Base.listMinMax(-1,arguments);},findIdentical:function(lst,_101,_102,end){if(typeof(end)=="undefined"||end===null){end=lst.length;}
for(var i=(_102||0);i<end;i++){if(lst[i]===_101){return i;}}
return-1;},findValue:function(lst,_104,_105,end){if(typeof(end)=="undefined"||end===null){end=lst.length;}
var cmp=MochiKit.Base.compare;for(var i=(_105||0);i<end;i++){if(cmp(lst[i],_104)===0){return i;}}
return-1;},nodeWalk:function(node,_107){var _108=[node];var _109=MochiKit.Base.extend;while(_108.length){var res=_107(_108.shift());if(res){_109(_108,res);}}},nameFunctions:function(_110){var base=_110.NAME;if(typeof(base)=="undefined"){base="";}else{base=base+".";}
for(var name in _110){var o=_110[name];if(typeof(o)=="function"&&typeof(o.NAME)=="undefined"){try{o.NAME=base+name;}
catch(e){}}}},queryString:function(_113,_114){if(typeof(MochiKit.DOM)!="undefined"&&arguments.length==1&&(typeof(_113)=="string"||(typeof(_113.nodeType)!="undefined"&&_113.nodeType>0))){var kv=MochiKit.DOM.formContents(_113);_113=kv[0];_114=kv[1];}else{if(arguments.length==1){var o=_113;_113=[];_114=[];for(var k in o){var v=o[k];if(typeof(v)!="function"){_113.push(k);_114.push(v);}}}}
var rval=[];var len=Math.min(_113.length,_114.length);var _118=MochiKit.Base.urlEncode;for(var i=0;i<len;i++){v=_114[i];if(typeof(v)!="undefined"&&v!==null){rval.push(_118(_113[i])+"="+_118(v));}}
return rval.join("&");},parseQueryString:function(_119,_120){var _121=_119.replace(/\+/g,"%20").split("&");var o={};var _122;if(typeof(decodeURIComponent)!="undefined"){_122=decodeURIComponent;}else{_122=unescape;}
if(_120){for(var i=0;i<_121.length;i++){var pair=_121[i].split("=");var name=_122(pair[0]);var arr=o[name];if(!(arr instanceof Array)){arr=[];o[name]=arr;}
arr.push(_122(pair[1]));}}else{for(i=0;i<_121.length;i++){pair=_121[i].split("=");o[_122(pair[0])]=_122(pair[1]);}}
return o;}});MochiKit.Base.AdapterRegistry=function(){this.pairs=[];};MochiKit.Base.AdapterRegistry.prototype={register:function(name,_124,wrap,_126){if(_126){this.pairs.unshift([name,_124,wrap]);}else{this.pairs.push([name,_124,wrap]);}},match:function(){for(var i=0;i<this.pairs.length;i++){var pair=this.pairs[i];if(pair[1].apply(this,arguments)){return pair[2].apply(this,arguments);}}
throw MochiKit.Base.NotFound;},unregister:function(name){for(var i=0;i<this.pairs.length;i++){var pair=this.pairs[i];if(pair[0]==name){this.pairs.splice(i,1);return true;}}
return false;}};MochiKit.Base.EXPORT=["counter","clone","extend","update","updatetree","setdefault","keys","items","NamedError","operator","forwardCall","itemgetter","typeMatcher","isCallable","isUndefined","isUndefinedOrNull","isNull","isEmpty","isNotEmpty","isArrayLike","isDateLike","xmap","map","xfilter","filter","bind","bindMethods","NotFound","AdapterRegistry","registerComparator","compare","registerRepr","repr","objEqual","arrayEqual","concat","keyComparator","reverseKeyComparator","partial","merge","listMinMax","listMax","listMin","objMax","objMin","nodeWalk","zip","urlEncode","queryString","serializeJSON","registerJSON","evalJSON","parseQueryString","findValue","findIdentical","flattenArguments","method"];MochiKit.Base.EXPORT_OK=["nameFunctions","comparatorRegistry","reprRegistry","jsonRegistry","compareDateLike","compareArrayLike","reprArrayLike","reprString","reprNumber"];MochiKit.Base._exportSymbols=function(_127,_128){if(typeof(MochiKit.__export__)=="undefined"){MochiKit.__export__=(MochiKit.__compat__||(typeof(JSAN)=="undefined"&&typeof(dojo)=="undefined"));}
if(!MochiKit.__export__){return;}
var all=_128.EXPORT_TAGS[":all"];for(var i=0;i<all.length;i++){_127[all[i]]=_128[all[i]];}};MochiKit.Base.__new__=function(){var m=this;m.forward=m.forwardCall;m.find=m.findValue;if(typeof(encodeURIComponent)!="undefined"){m.urlEncode=function(_130){return encodeURIComponent(_130).replace(/\'/g,"%27");};}else{m.urlEncode=function(_131){return escape(_131).replace(/\+/g,"%2B").replace(/\"/g,"%22").rval.replace(/\'/g,"%27");};}
m.NamedError=function(name){this.message=name;this.name=name;};m.NamedError.prototype=new Error();m.update(m.NamedError.prototype,{repr:function(){if(this.message&&this.message!=this.name){return this.name+"("+m.repr(this.message)+")";}else{return this.name+"()";}},toString:m.forwardCall("repr")});m.NotFound=new m.NamedError("MochiKit.Base.NotFound");m.listMax=m.partial(m.listMinMax,1);m.listMin=m.partial(m.listMinMax,-1);m.isCallable=m.typeMatcher("function");m.isUndefined=m.typeMatcher("undefined");m.merge=m.partial(m.update,null);m.zip=m.partial(m.map,null);m.comparatorRegistry=new m.AdapterRegistry();m.registerComparator("dateLike",m.isDateLike,m.compareDateLike);m.registerComparator("arrayLike",m.isArrayLike,m.compareArrayLike);m.reprRegistry=new m.AdapterRegistry();m.registerRepr("arrayLike",m.isArrayLike,m.reprArrayLike);m.registerRepr("string",m.typeMatcher("string"),m.reprString);m.registerRepr("numbers",m.typeMatcher("number","boolean"),m.reprNumber);m.jsonRegistry=new m.AdapterRegistry();var all=m.concat(m.EXPORT,m.EXPORT_OK);m.EXPORT_TAGS={":common":m.concat(m.EXPORT_OK),":all":all};m.nameFunctions(this);};MochiKit.Base.__new__();if(!MochiKit.__compat__){compare=MochiKit.Base.compare;}
MochiKit.Base._exportSymbols(this,MochiKit.Base);if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.Iter");dojo.require("MochiKit.Base");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Base",[]);}
try{if(typeof(MochiKit.Base)=="undefined"){throw"";}}
catch(e){throw"MochiKit.Iter depends on MochiKit.Base!";}
if(typeof(MochiKit.Iter)=="undefined"){MochiKit.Iter={};}
MochiKit.Iter.NAME="MochiKit.Iter";MochiKit.Iter.VERSION="1.3.1";MochiKit.Base.update(MochiKit.Iter,{__repr__:function(){return"["+this.NAME+" "+this.VERSION+"]";},toString:function(){return this.__repr__();},registerIteratorFactory:function(name,_132,_133,_134){MochiKit.Iter.iteratorRegistry.register(name,_132,_133,_134);},iter:function(_135,_136){var self=MochiKit.Iter;if(arguments.length==2){return self.takewhile(function(a){return a!=_136;},_135);}
if(typeof(_135.next)=="function"){return _135;}else{if(typeof(_135.iter)=="function"){return _135.iter();}}
try{return self.iteratorRegistry.match(_135);}
catch(e){var m=MochiKit.Base;if(e==m.NotFound){e=new TypeError(typeof(_135)+": "+m.repr(_135)+" is not iterable");}
throw e;}},count:function(n){if(!n){n=0;}
var m=MochiKit.Base;return{repr:function(){return"count("+n+")";},toString:m.forwardCall("repr"),next:m.counter(n)};},cycle:function(p){var self=MochiKit.Iter;var m=MochiKit.Base;var lst=[];var _139=self.iter(p);return{repr:function(){return"cycle(...)";},toString:m.forwardCall("repr"),next:function(){try{var rval=_139.next();lst.push(rval);return rval;}
catch(e){if(e!=self.StopIteration){throw e;}
if(lst.length===0){this.next=function(){throw self.StopIteration;};}else{var i=-1;this.next=function(){i=(i+1)%lst.length;return lst[i];};}
return this.next();}}};},repeat:function(elem,n){var m=MochiKit.Base;if(typeof(n)=="undefined"){return{repr:function(){return"repeat("+m.repr(elem)+")";},toString:m.forwardCall("repr"),next:function(){return elem;}};}
return{repr:function(){return"repeat("+m.repr(elem)+", "+n+")";},toString:m.forwardCall("repr"),next:function(){if(n<=0){throw MochiKit.Iter.StopIteration;}
n-=1;return elem;}};},next:function(_141){return _141.next();},izip:function(p,q){var m=MochiKit.Base;var next=MochiKit.Iter.next;var _144=m.map(iter,arguments);return{repr:function(){return"izip(...)";},toString:m.forwardCall("repr"),next:function(){return m.map(next,_144);}};},ifilter:function(pred,seq){var m=MochiKit.Base;seq=MochiKit.Iter.iter(seq);if(pred===null){pred=m.operator.truth;}
return{repr:function(){return"ifilter(...)";},toString:m.forwardCall("repr"),next:function(){while(true){var rval=seq.next();if(pred(rval)){return rval;}}
return undefined;}};},ifilterfalse:function(pred,seq){var m=MochiKit.Base;seq=MochiKit.Iter.iter(seq);if(pred===null){pred=m.operator.truth;}
return{repr:function(){return"ifilterfalse(...)";},toString:m.forwardCall("repr"),next:function(){while(true){var rval=seq.next();if(!pred(rval)){return rval;}}
return undefined;}};},islice:function(seq){var self=MochiKit.Iter;var m=MochiKit.Base;seq=self.iter(seq);var _147=0;var stop=0;var step=1;var i=-1;if(arguments.length==2){stop=arguments[1];}else{if(arguments.length==3){_147=arguments[1];stop=arguments[2];}else{_147=arguments[1];stop=arguments[2];step=arguments[3];}}
return{repr:function(){return"islice("+["...",_147,stop,step].join(", ")+")";},toString:m.forwardCall("repr"),next:function(){var rval;while(i<_147){rval=seq.next();i++;}
if(_147>=stop){throw self.StopIteration;}
_147+=step;return rval;}};},imap:function(fun,p,q){var m=MochiKit.Base;var self=MochiKit.Iter;var _151=m.map(self.iter,m.extend(null,arguments,1));var map=m.map;var next=self.next;return{repr:function(){return"imap(...)";},toString:m.forwardCall("repr"),next:function(){return fun.apply(this,map(next,_151));}};},applymap:function(fun,seq,self){seq=MochiKit.Iter.iter(seq);var m=MochiKit.Base;return{repr:function(){return"applymap(...)";},toString:m.forwardCall("repr"),next:function(){return fun.apply(self,seq.next());}};},chain:function(p,q){var self=MochiKit.Iter;var m=MochiKit.Base;if(arguments.length==1){return self.iter(arguments[0]);}
var _153=m.map(self.iter,arguments);return{repr:function(){return"chain(...)";},toString:m.forwardCall("repr"),next:function(){while(_153.length>1){try{return _153[0].next();}
catch(e){if(e!=self.StopIteration){throw e;}
_153.shift();}}
if(_153.length==1){var arg=_153.shift();this.next=m.bind("next",arg);return this.next();}
throw self.StopIteration;}};},takewhile:function(pred,seq){var self=MochiKit.Iter;seq=self.iter(seq);return{repr:function(){return"takewhile(...)";},toString:MochiKit.Base.forwardCall("repr"),next:function(){var rval=seq.next();if(!pred(rval)){this.next=function(){throw self.StopIteration;};this.next();}
return rval;}};},dropwhile:function(pred,seq){seq=MochiKit.Iter.iter(seq);var m=MochiKit.Base;var bind=m.bind;return{"repr":function(){return"dropwhile(...)";},"toString":m.forwardCall("repr"),"next":function(){while(true){var rval=seq.next();if(!pred(rval)){break;}}
this.next=bind("next",seq);return rval;}};},_tee:function(_155,sync,_157){sync.pos[_155]=-1;var m=MochiKit.Base;var _158=m.listMin;return{repr:function(){return"tee("+_155+", ...)";},toString:m.forwardCall("repr"),next:function(){var rval;var i=sync.pos[_155];if(i==sync.max){rval=_157.next();sync.deque.push(rval);sync.max+=1;sync.pos[_155]+=1;}else{rval=sync.deque[i-sync.min];sync.pos[_155]+=1;if(i==sync.min&&_158(sync.pos)!=sync.min){sync.min+=1;sync.deque.shift();}}
return rval;}};},tee:function(_159,n){var rval=[];var sync={"pos":[],"deque":[],"max":-1,"min":-1};if(arguments.length==1){n=2;}
var self=MochiKit.Iter;_159=self.iter(_159);var _tee=self._tee;for(var i=0;i<n;i++){rval.push(_tee(i,sync,_159));}
return rval;},list:function(_161){var m=MochiKit.Base;if(typeof(_161.slice)=="function"){return _161.slice();}else{if(m.isArrayLike(_161)){return m.concat(_161);}}
var self=MochiKit.Iter;_161=self.iter(_161);var rval=[];try{while(true){rval.push(_161.next());}}
catch(e){if(e!=self.StopIteration){throw e;}
return rval;}
return undefined;},reduce:function(fn,_162,_163){var i=0;var x=_163;var self=MochiKit.Iter;_162=self.iter(_162);if(arguments.length<3){try{x=_162.next();}
catch(e){if(e==self.StopIteration){e=new TypeError("reduce() of empty sequence with no initial value");}
throw e;}
i++;}
try{while(true){x=fn(x,_162.next());}}
catch(e){if(e!=self.StopIteration){throw e;}}
return x;},range:function(){var _165=0;var stop=0;var step=1;if(arguments.length==1){stop=arguments[0];}else{if(arguments.length==2){_165=arguments[0];stop=arguments[1];}else{if(arguments.length==3){_165=arguments[0];stop=arguments[1];step=arguments[2];}else{throw new TypeError("range() takes 1, 2, or 3 arguments!");}}}
if(step===0){throw new TypeError("range() step must not be 0");}
return{next:function(){if((step>0&&_165>=stop)||(step<0&&_165<=stop)){throw MochiKit.Iter.StopIteration;}
var rval=_165;_165+=step;return rval;},repr:function(){return"range("+[_165,stop,step].join(", ")+")";},toString:MochiKit.Base.forwardCall("repr")};},sum:function(_166,_167){var x=_167||0;var self=MochiKit.Iter;_166=self.iter(_166);try{while(true){x+=_166.next();}}
catch(e){if(e!=self.StopIteration){throw e;}}
return x;},exhaust:function(_168){var self=MochiKit.Iter;_168=self.iter(_168);try{while(true){_168.next();}}
catch(e){if(e!=self.StopIteration){throw e;}}},forEach:function(_169,func,self){var m=MochiKit.Base;if(arguments.length>2){func=m.bind(func,self);}
if(m.isArrayLike(_169)){try{for(var i=0;i<_169.length;i++){func(_169[i]);}}
catch(e){if(e!=MochiKit.Iter.StopIteration){throw e;}}}else{self=MochiKit.Iter;self.exhaust(self.imap(func,_169));}},every:function(_171,func){var self=MochiKit.Iter;try{self.ifilterfalse(func,_171).next();return false;}
catch(e){if(e!=self.StopIteration){throw e;}
return true;}},sorted:function(_172,cmp){var rval=MochiKit.Iter.list(_172);if(arguments.length==1){cmp=MochiKit.Base.compare;}
rval.sort(cmp);return rval;},reversed:function(_173){var rval=MochiKit.Iter.list(_173);rval.reverse();return rval;},some:function(_174,func){var self=MochiKit.Iter;try{self.ifilter(func,_174).next();return true;}
catch(e){if(e!=self.StopIteration){throw e;}
return false;}},iextend:function(lst,_175){if(MochiKit.Base.isArrayLike(_175)){for(var i=0;i<_175.length;i++){lst.push(_175[i]);}}else{var self=MochiKit.Iter;_175=self.iter(_175);try{while(true){lst.push(_175.next());}}
catch(e){if(e!=self.StopIteration){throw e;}}}
return lst;},groupby:function(_176,_177){var m=MochiKit.Base;var self=MochiKit.Iter;if(arguments.length<2){_177=m.operator.identity;}
_176=self.iter(_176);var pk=undefined;var k=undefined;var v;function fetch(){v=_176.next();k=_177(v);}
function eat(){var ret=v;v=undefined;return ret;}
var _180=true;return{repr:function(){return"groupby(...)";},next:function(){while(k==pk){fetch();if(_180){_180=false;break;}}
pk=k;return[k,{next:function(){if(v==undefined){fetch();}
if(k!=pk){throw self.StopIteration;}
return eat();}}];}};},groupby_as_array:function(_181,_182){var m=MochiKit.Base;var self=MochiKit.Iter;if(arguments.length<2){_182=m.operator.identity;}
_181=self.iter(_181);var _183=[];var _184=true;var _185;while(true){try{var _186=_181.next();var key=_182(_186);}
catch(e){if(e==self.StopIteration){break;}
throw e;}
if(_184||key!=_185){var _187=[];_183.push([key,_187]);}
_187.push(_186);_184=false;_185=key;}
return _183;},arrayLikeIter:function(_188){var i=0;return{repr:function(){return"arrayLikeIter(...)";},toString:MochiKit.Base.forwardCall("repr"),next:function(){if(i>=_188.length){throw MochiKit.Iter.StopIteration;}
return _188[i++];}};},hasIterateNext:function(_189){return(_189&&typeof(_189.iterateNext)=="function");},iterateNextIter:function(_190){return{repr:function(){return"iterateNextIter(...)";},toString:MochiKit.Base.forwardCall("repr"),next:function(){var rval=_190.iterateNext();if(rval===null||rval===undefined){throw MochiKit.Iter.StopIteration;}
return rval;}};}});MochiKit.Iter.EXPORT_OK=["iteratorRegistry","arrayLikeIter","hasIterateNext","iterateNextIter",];MochiKit.Iter.EXPORT=["StopIteration","registerIteratorFactory","iter","count","cycle","repeat","next","izip","ifilter","ifilterfalse","islice","imap","applymap","chain","takewhile","dropwhile","tee","list","reduce","range","sum","exhaust","forEach","every","sorted","reversed","some","iextend","groupby","groupby_as_array"];MochiKit.Iter.__new__=function(){var m=MochiKit.Base;this.StopIteration=new m.NamedError("StopIteration");this.iteratorRegistry=new m.AdapterRegistry();this.registerIteratorFactory("arrayLike",m.isArrayLike,this.arrayLikeIter);this.registerIteratorFactory("iterateNext",this.hasIterateNext,this.iterateNextIter);this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};m.nameFunctions(this);};MochiKit.Iter.__new__();if(!MochiKit.__compat__){reduce=MochiKit.Iter.reduce;}
MochiKit.Base._exportSymbols(this,MochiKit.Iter);if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.Logging");dojo.require("MochiKit.Base");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Base",[]);}
try{if(typeof(MochiKit.Base)=="undefined"){throw"";}}
catch(e){throw"MochiKit.Logging depends on MochiKit.Base!";}
if(typeof(MochiKit.Logging)=="undefined"){MochiKit.Logging={};}
MochiKit.Logging.NAME="MochiKit.Logging";MochiKit.Logging.VERSION="1.3.1";MochiKit.Logging.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.Logging.toString=function(){return this.__repr__();};MochiKit.Logging.EXPORT=["LogLevel","LogMessage","Logger","alertListener","logger","log","logError","logDebug","logFatal","logWarning"];MochiKit.Logging.EXPORT_OK=["logLevelAtLeast","isLogMessage","compareLogMessage"];MochiKit.Logging.LogMessage=function(num,_192,info){this.num=num;this.level=_192;this.info=info;this.timestamp=new Date();};MochiKit.Logging.LogMessage.prototype={repr:function(){var m=MochiKit.Base;return"LogMessage("+m.map(m.repr,[this.num,this.level,this.info]).join(", ")+")";},toString:MochiKit.Base.forwardCall("repr")};MochiKit.Base.update(MochiKit.Logging,{logLevelAtLeast:function(_194){var self=MochiKit.Logging;if(typeof(_194)=="string"){_194=self.LogLevel[_194];}
return function(msg){var _196=msg.level;if(typeof(_196)=="string"){_196=self.LogLevel[_196];}
return _196>=_194;};},isLogMessage:function(){var _197=MochiKit.Logging.LogMessage;for(var i=0;i<arguments.length;i++){if(!(arguments[i]instanceof _197)){return false;}}
return true;},compareLogMessage:function(a,b){return MochiKit.Base.compare([a.level,a.info],[b.level,b.info]);},alertListener:function(msg){alert("num: "+msg.num+"\nlevel: "+msg.level+"\ninfo: "+msg.info.join(" "));}});MochiKit.Logging.Logger=function(_198){this.counter=0;if(typeof(_198)=="undefined"||_198===null){_198=-1;}
this.maxSize=_198;this._messages=[];this.listeners={};this.useNativeConsole=false;};MochiKit.Logging.Logger.prototype={clear:function(){this._messages.splice(0,this._messages.length);},logToConsole:function(msg){if(typeof(window)!="undefined"&&window.console&&window.console.log){window.console.log(msg);}else{if(typeof(opera)!="undefined"&&opera.postError){opera.postError(msg);}else{if(typeof(printfire)=="function"){printfire(msg);}}}},dispatchListeners:function(msg){for(var k in this.listeners){var pair=this.listeners[k];if(pair.ident!=k||(pair[0]&&!pair[0](msg))){continue;}
pair[1](msg);}},addListener:function(_199,_200,_201){if(typeof(_200)=="string"){_200=MochiKit.Logging.logLevelAtLeast(_200);}
var _202=[_200,_201];_202.ident=_199;this.listeners[_199]=_202;},removeListener:function(_203){delete this.listeners[_203];},baseLog:function(_204,_205){var msg=new MochiKit.Logging.LogMessage(this.counter,_204,MochiKit.Base.extend(null,arguments,1));this._messages.push(msg);this.dispatchListeners(msg);if(this.useNativeConsole){this.logToConsole(msg.level+": "+msg.info.join(" "));}
this.counter+=1;while(this.maxSize>=0&&this._messages.length>this.maxSize){this._messages.shift();}},getMessages:function(_206){var _207=0;if(!(typeof(_206)=="undefined"||_206===null)){_207=Math.max(0,this._messages.length-_206);}
return this._messages.slice(_207);},getMessageText:function(_208){if(typeof(_208)=="undefined"||_208===null){_208=30;}
var _209=this.getMessages(_208);if(_209.length){var lst=map(function(m){return"\n  ["+m.num+"] "+m.level+": "+m.info.join(" ");},_209);lst.unshift("LAST "+_209.length+" MESSAGES:");return lst.join("");}
return"";},debuggingBookmarklet:function(_210){if(typeof(MochiKit.LoggingPane)=="undefined"){alert(this.getMessageText());}else{MochiKit.LoggingPane.createLoggingPane(_210||false);}}};MochiKit.Logging.__new__=function(){this.LogLevel={ERROR:40,FATAL:50,WARNING:30,INFO:20,DEBUG:10};var m=MochiKit.Base;m.registerComparator("LogMessage",this.isLogMessage,this.compareLogMessage);var _211=m.partial;var _212=this.Logger;var _213=_212.prototype.baseLog;m.update(this.Logger.prototype,{debug:_211(_213,"DEBUG"),log:_211(_213,"INFO"),error:_211(_213,"ERROR"),fatal:_211(_213,"FATAL"),warning:_211(_213,"WARNING")});var self=this;var _214=function(name){return function(){self.logger[name].apply(self.logger,arguments);};};this.log=_214("log");this.logError=_214("error");this.logDebug=_214("debug");this.logFatal=_214("fatal");this.logWarning=_214("warning");this.logger=new _212();this.logger.useNativeConsole=true;this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};m.nameFunctions(this);};if(typeof(printfire)=="undefined"&&typeof(document)!="undefined"&&document.createEvent&&typeof(dispatchEvent)!="undefined"){printfire=function(){printfire.args=arguments;var ev=document.createEvent("Events");ev.initEvent("printfire",false,true);dispatchEvent(ev);};}
MochiKit.Logging.__new__();MochiKit.Base._exportSymbols(this,MochiKit.Logging);if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.DateTime");}
if(typeof(MochiKit)=="undefined"){MochiKit={};}
if(typeof(MochiKit.DateTime)=="undefined"){MochiKit.DateTime={};}
MochiKit.DateTime.NAME="MochiKit.DateTime";MochiKit.DateTime.VERSION="1.3.1";MochiKit.DateTime.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.DateTime.toString=function(){return this.__repr__();};MochiKit.DateTime.isoDate=function(str){str=str+"";if(typeof(str)!="string"||str.length===0){return null;}
var iso=str.split("-");if(iso.length===0){return null;}
return new Date(iso[0],iso[1]-1,iso[2]);};MochiKit.DateTime._isoRegexp=/(\d{4,})(?:-(\d{1,2})(?:-(\d{1,2})(?:[T ](\d{1,2}):(\d{1,2})(?::(\d{1,2})(?:\.(\d+))?)?(?:(Z)|([+-])(\d{1,2})(?::(\d{1,2}))?)?)?)?)?/;MochiKit.DateTime.isoTimestamp=function(str){str=str+"";if(typeof(str)!="string"||str.length===0){return null;}
var res=str.match(MochiKit.DateTime._isoRegexp);if(typeof(res)=="undefined"||res===null){return null;}
var year,month,day,hour,min,sec,msec;year=parseInt(res[1],10);if(typeof(res[2])=="undefined"||res[2]===""){return new Date(year);}
month=parseInt(res[2],10)-1;day=parseInt(res[3],10);if(typeof(res[4])=="undefined"||res[4]===""){return new Date(year,month,day);}
hour=parseInt(res[4],10);min=parseInt(res[5],10);sec=(typeof(res[6])!="undefined"&&res[6]!=="")?parseInt(res[6],10):0;if(typeof(res[7])!="undefined"&&res[7]!==""){msec=Math.round(1000*parseFloat("0."+res[7]));}else{msec=0;}
if((typeof(res[8])=="undefined"||res[8]==="")&&(typeof(res[9])=="undefined"||res[9]==="")){return new Date(year,month,day,hour,min,sec,msec);}
var ofs;if(typeof(res[9])!="undefined"&&res[9]!==""){ofs=parseInt(res[10],10)*3600000;if(typeof(res[11])!="undefined"&&res[11]!==""){ofs+=parseInt(res[11],10)*60000;}
if(res[9]=="-"){ofs=-ofs;}}else{ofs=0;}
return new Date(Date.UTC(year,month,day,hour,min,sec,msec)-ofs);};MochiKit.DateTime.toISOTime=function(date,_221){if(typeof(date)=="undefined"||date===null){return null;}
var hh=date.getHours();var mm=date.getMinutes();var ss=date.getSeconds();var lst=[((_221&&(hh<10))?"0"+hh:hh),((mm<10)?"0"+mm:mm),((ss<10)?"0"+ss:ss)];return lst.join(":");};MochiKit.DateTime.toISOTimestamp=function(date,_225){if(typeof(date)=="undefined"||date===null){return null;}
var sep=_225?"T":" ";var foot=_225?"Z":"";if(_225){date=new Date(date.getTime()+(date.getTimezoneOffset()*60000));}
return MochiKit.DateTime.toISODate(date)+sep+MochiKit.DateTime.toISOTime(date,_225)+foot;};MochiKit.DateTime.toISODate=function(date){if(typeof(date)=="undefined"||date===null){return null;}
var _228=MochiKit.DateTime._padTwo;return[date.getFullYear(),_228(date.getMonth()+1),_228(date.getDate())].join("-");};MochiKit.DateTime.americanDate=function(d){d=d+"";if(typeof(d)!="string"||d.length===0){return null;}
var a=d.split("/");return new Date(a[2],a[0]-1,a[1]);};MochiKit.DateTime._padTwo=function(n){return(n>9)?n:"0"+n;};MochiKit.DateTime.toPaddedAmericanDate=function(d){if(typeof(d)=="undefined"||d===null){return null;}
var _230=MochiKit.DateTime._padTwo;return[_230(d.getMonth()+1),_230(d.getDate()),d.getFullYear()].join("/");};MochiKit.DateTime.toAmericanDate=function(d){if(typeof(d)=="undefined"||d===null){return null;}
return[d.getMonth()+1,d.getDate(),d.getFullYear()].join("/");};MochiKit.DateTime.EXPORT=["isoDate","isoTimestamp","toISOTime","toISOTimestamp","toISODate","americanDate","toPaddedAmericanDate","toAmericanDate"];MochiKit.DateTime.EXPORT_OK=[];MochiKit.DateTime.EXPORT_TAGS={":common":MochiKit.DateTime.EXPORT,":all":MochiKit.DateTime.EXPORT};MochiKit.DateTime.__new__=function(){var base=this.NAME+".";for(var k in this){var o=this[k];if(typeof(o)=="function"&&typeof(o.NAME)=="undefined"){try{o.NAME=base+k;}
catch(e){}}}};MochiKit.DateTime.__new__();if(typeof(MochiKit.Base)!="undefined"){MochiKit.Base._exportSymbols(this,MochiKit.DateTime);}else{(function(_231,_232){if((typeof(JSAN)=="undefined"&&typeof(dojo)=="undefined")||(typeof(MochiKit.__compat__)=="boolean"&&MochiKit.__compat__)){var all=_232.EXPORT_TAGS[":all"];for(var i=0;i<all.length;i++){_231[all[i]]=_232[all[i]];}}})(this,MochiKit.DateTime);}
if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.Format");}
if(typeof(MochiKit)=="undefined"){MochiKit={};}
if(typeof(MochiKit.Format)=="undefined"){MochiKit.Format={};}
MochiKit.Format.NAME="MochiKit.Format";MochiKit.Format.VERSION="1.3.1";MochiKit.Format.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.Format.toString=function(){return this.__repr__();};MochiKit.Format._numberFormatter=function(_233,_234,_235,_236,_237,_238,_239,_240,_241){return function(num){num=parseFloat(num);if(typeof(num)=="undefined"||num===null||isNaN(num)){return _233;}
var _242=_234;var _243=_235;if(num<0){num=-num;}else{_242=_242.replace(/-/,"");}
var me=arguments.callee;var fmt=MochiKit.Format.formatLocale(_236);if(_237){num=num*100;_243=fmt.percent+_243;}
num=MochiKit.Format.roundToFixed(num,_238);var _245=num.split(/\./);var _246=_245[0];var frac=(_245.length==1)?"":_245[1];var res="";while(_246.length<_239){_246="0"+_246;}
if(_240){while(_246.length>_240){var i=_246.length-_240;res=fmt.separator+_246.substring(i,_246.length)+res;_246=_246.substring(0,i);}}
res=_246+res;if(_238>0){while(frac.length<_241){frac=frac+"0";}
res=res+fmt.decimal+frac;}
return _242+res+_243;};};MochiKit.Format.numberFormatter=function(_248,_249,_250){if(typeof(_249)=="undefined"){_249="";}
var _251=_248.match(/((?:[0#]+,)?[0#]+)(?:\.([0#]+))?(%)?/);if(!_251){throw TypeError("Invalid pattern");}
var _252=_248.substr(0,_251.index);var _253=_248.substr(_251.index+_251[0].length);if(_252.search(/-/)==-1){_252=_252+"-";}
var _254=_251[1];var frac=(typeof(_251[2])=="string"&&_251[2]!="")?_251[2]:"";var _255=(typeof(_251[3])=="string"&&_251[3]!="");var tmp=_254.split(/,/);var _257;if(typeof(_250)=="undefined"){_250="default";}
if(tmp.length==1){_257=null;}else{_257=tmp[1].length;}
var _258=_254.length-_254.replace(/0/g,"").length;var _259=frac.length-frac.replace(/0/g,"").length;var _260=frac.length;var rval=MochiKit.Format._numberFormatter(_249,_252,_253,_250,_255,_260,_258,_257,_259);var m=MochiKit.Base;if(m){var fn=arguments.callee;var args=m.concat(arguments);rval.repr=function(){return[self.NAME,"(",map(m.repr,args).join(", "),")"].join("");};}
return rval;};MochiKit.Format.formatLocale=function(_262){if(typeof(_262)=="undefined"||_262===null){_262="default";}
if(typeof(_262)=="string"){var rval=MochiKit.Format.LOCALE[_262];if(typeof(rval)=="string"){rval=arguments.callee(rval);MochiKit.Format.LOCALE[_262]=rval;}
return rval;}else{return _262;}};MochiKit.Format.twoDigitAverage=function(_263,_264){if(_264){var res=_263/_264;if(!isNaN(res)){return MochiKit.Format.twoDigitFloat(_263/_264);}}
return"0";};MochiKit.Format.twoDigitFloat=function(_265){var sign=(_265<0?"-":"");var s=Math.floor(Math.abs(_265)*100).toString();if(s=="0"){return s;}
if(s.length<3){while(s.charAt(s.length-1)=="0"){s=s.substring(0,s.length-1);}
return sign+"0."+s;}
var head=sign+s.substring(0,s.length-2);var tail=s.substring(s.length-2,s.length);if(tail=="00"){return head;}else{if(tail.charAt(1)=="0"){return head+"."+tail.charAt(0);}else{return head+"."+tail;}}};MochiKit.Format.lstrip=function(str,_270){str=str+"";if(typeof(str)!="string"){return null;}
if(!_270){return str.replace(/^\s+/,"");}else{return str.replace(new RegExp("^["+_270+"]+"),"");}};MochiKit.Format.rstrip=function(str,_271){str=str+"";if(typeof(str)!="string"){return null;}
if(!_271){return str.replace(/\s+$/,"");}else{return str.replace(new RegExp("["+_271+"]+$"),"");}};MochiKit.Format.strip=function(str,_272){var self=MochiKit.Format;return self.rstrip(self.lstrip(str,_272),_272);};MochiKit.Format.truncToFixed=function(_273,_274){_273=Math.floor(_273*Math.pow(10,_274));var res=(_273*Math.pow(10,-_274)).toFixed(_274);if(res.charAt(0)=="."){res="0"+res;}
return res;};MochiKit.Format.roundToFixed=function(_275,_276){return MochiKit.Format.truncToFixed(_275+0.5*Math.pow(10,-_276),_276);};MochiKit.Format.percentFormat=function(_277){return MochiKit.Format.twoDigitFloat(100*_277)+"%";};MochiKit.Format.EXPORT=["truncToFixed","roundToFixed","numberFormatter","formatLocale","twoDigitAverage","twoDigitFloat","percentFormat","lstrip","rstrip","strip"];MochiKit.Format.LOCALE={en_US:{separator:",",decimal:".",percent:"%"},de_DE:{separator:".",decimal:",",percent:"%"},fr_FR:{separator:" ",decimal:",",percent:"%"},"default":"en_US"};MochiKit.Format.EXPORT_OK=[];MochiKit.Format.EXPORT_TAGS={":all":MochiKit.Format.EXPORT,":common":MochiKit.Format.EXPORT};MochiKit.Format.__new__=function(){var base=this.NAME+".";var k,v,o;for(k in this.LOCALE){o=this.LOCALE[k];if(typeof(o)=="object"){o.repr=function(){return this.NAME;};o.NAME=base+"LOCALE."+k;}}
for(k in this){o=this[k];if(typeof(o)=="function"&&typeof(o.NAME)=="undefined"){try{o.NAME=base+k;}
catch(e){}}}};MochiKit.Format.__new__();if(typeof(MochiKit.Base)!="undefined"){MochiKit.Base._exportSymbols(this,MochiKit.Format);}else{(function(_278,_279){if((typeof(JSAN)=="undefined"&&typeof(dojo)=="undefined")||(typeof(MochiKit.__compat__)=="boolean"&&MochiKit.__compat__)){var all=_279.EXPORT_TAGS[":all"];for(var i=0;i<all.length;i++){_278[all[i]]=_279[all[i]];}}})(this,MochiKit.Format);}
if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.Async");dojo.require("MochiKit.Base");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Base",[]);}
try{if(typeof(MochiKit.Base)=="undefined"){throw"";}}
catch(e){throw"MochiKit.Async depends on MochiKit.Base!";}
if(typeof(MochiKit.Async)=="undefined"){MochiKit.Async={};}
MochiKit.Async.NAME="MochiKit.Async";MochiKit.Async.VERSION="1.3.1";MochiKit.Async.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.Async.toString=function(){return this.__repr__();};MochiKit.Async.Deferred=function(_280){this.chain=[];this.id=this._nextId();this.fired=-1;this.paused=0;this.results=[null,null];this.canceller=_280;this.silentlyCancelled=false;this.chained=false;};MochiKit.Async.Deferred.prototype={repr:function(){var _281;if(this.fired==-1){_281="unfired";}else{if(this.fired===0){_281="success";}else{_281="error";}}
return"Deferred("+this.id+", "+_281+")";},toString:MochiKit.Base.forwardCall("repr"),_nextId:MochiKit.Base.counter(),cancel:function(){var self=MochiKit.Async;if(this.fired==-1){if(this.canceller){this.canceller(this);}else{this.silentlyCancelled=true;}
if(this.fired==-1){this.errback(new self.CancelledError(this));}}else{if((this.fired===0)&&(this.results[0]instanceof self.Deferred)){this.results[0].cancel();}}},_pause:function(){this.paused++;},_unpause:function(){this.paused--;if((this.paused===0)&&(this.fired>=0)){this._fire();}},_continue:function(res){this._resback(res);this._unpause();},_resback:function(res){this.fired=((res instanceof Error)?1:0);this.results[this.fired]=res;this._fire();},_check:function(){if(this.fired!=-1){if(!this.silentlyCancelled){throw new MochiKit.Async.AlreadyCalledError(this);}
this.silentlyCancelled=false;return;}},callback:function(res){this._check();if(res instanceof MochiKit.Async.Deferred){throw new Error("Deferred instances can only be chained if they are the result of a callback");}
this._resback(res);},errback:function(res){this._check();var self=MochiKit.Async;if(res instanceof self.Deferred){throw new Error("Deferred instances can only be chained if they are the result of a callback");}
if(!(res instanceof Error)){res=new self.GenericError(res);}
this._resback(res);},addBoth:function(fn){if(arguments.length>1){fn=MochiKit.Base.partial.apply(null,arguments);}
return this.addCallbacks(fn,fn);},addCallback:function(fn){if(arguments.length>1){fn=MochiKit.Base.partial.apply(null,arguments);}
return this.addCallbacks(fn,null);},addErrback:function(fn){if(arguments.length>1){fn=MochiKit.Base.partial.apply(null,arguments);}
return this.addCallbacks(null,fn);},addCallbacks:function(cb,eb){if(this.chained){throw new Error("Chained Deferreds can not be re-used");}
this.chain.push([cb,eb]);if(this.fired>=0){this._fire();}
return this;},_fire:function(){var _284=this.chain;var _285=this.fired;var res=this.results[_285];var self=this;var cb=null;while(_284.length>0&&this.paused===0){var pair=_284.shift();var f=pair[_285];if(f===null){continue;}
try{res=f(res);_285=((res instanceof Error)?1:0);if(res instanceof MochiKit.Async.Deferred){cb=function(res){self._continue(res);};this._pause();}}
catch(err){_285=1;if(!(err instanceof Error)){err=new MochiKit.Async.GenericError(err);}
res=err;}}
this.fired=_285;this.results[_285]=res;if(cb&&this.paused){res.addBoth(cb);res.chained=true;}}};MochiKit.Base.update(MochiKit.Async,{evalJSONRequest:function(){return eval("("+arguments[0].responseText+")");},succeed:function(_287){var d=new MochiKit.Async.Deferred();d.callback.apply(d,arguments);return d;},fail:function(_288){var d=new MochiKit.Async.Deferred();d.errback.apply(d,arguments);return d;},getXMLHttpRequest:function(){var self=arguments.callee;if(!self.XMLHttpRequest){var _289=[function(){return new XMLHttpRequest();},function(){return new ActiveXObject("Msxml2.XMLHTTP");},function(){return new ActiveXObject("Microsoft.XMLHTTP");},function(){return new ActiveXObject("Msxml2.XMLHTTP.4.0");},function(){throw new MochiKit.Async.BrowserComplianceError("Browser does not support XMLHttpRequest");}];for(var i=0;i<_289.length;i++){var func=_289[i];try{self.XMLHttpRequest=func;return func();}
catch(e){}}}
return self.XMLHttpRequest();},_nothing:function(){},_xhr_onreadystatechange:function(d){if(this.readyState==4){try{this.onreadystatechange=null;}
catch(e){try{this.onreadystatechange=MochiKit.Async._nothing;}
catch(e){}}
var _290=null;try{_290=this.status;if(!_290&&MochiKit.Base.isNotEmpty(this.responseText)){_290=304;}}
catch(e){}
if(_290==200||_290==304||_290==201){d.callback(this);}else{var err=new MochiKit.Async.XMLHttpRequestError(this,"Request failed");if(err.number){d.errback(err);}else{d.errback(err);}}}},_xhr_canceller:function(req){try{req.onreadystatechange=null;}
catch(e){try{req.onreadystatechange=MochiKit.Async._nothing;}
catch(e){}}
req.abort();},sendXMLHttpRequest:function(req,_293){if(typeof(_293)=="undefined"||_293===null){_293="";}
var m=MochiKit.Base;var self=MochiKit.Async;var d=new self.Deferred(m.partial(self._xhr_canceller,req));try{req.onreadystatechange=m.bind(self._xhr_onreadystatechange,req,d);req.send(_293);}
catch(e){try{req.onreadystatechange=null;}
catch(ignore){}
d.errback(e);}
return d;},doSimpleXMLHttpRequest:function(url){var self=MochiKit.Async;var req=self.getXMLHttpRequest();if(arguments.length>1){var m=MochiKit.Base;var qs=m.queryString.apply(null,m.extend(null,arguments,1));if(qs){url+="?"+qs;}}
req.open("GET",url,true);return self.sendXMLHttpRequest(req);},loadJSONDoc:function(url){var self=MochiKit.Async;var d=self.doSimpleXMLHttpRequest.apply(self,arguments);d=d.addCallback(self.evalJSONRequest);return d;},wait:function(_296,_297){var d=new MochiKit.Async.Deferred();var m=MochiKit.Base;if(typeof(_297)!="undefined"){d.addCallback(function(){return _297;});}
var _298=setTimeout(m.bind("callback",d),Math.floor(_296*1000));d.canceller=function(){try{clearTimeout(_298);}
catch(e){}};return d;},callLater:function(_299,func){var m=MochiKit.Base;var _300=m.partial.apply(m,m.extend(null,arguments,1));return MochiKit.Async.wait(_299).addCallback(function(res){return _300();});}});MochiKit.Async.DeferredLock=function(){this.waiting=[];this.locked=false;this.id=this._nextId();};MochiKit.Async.DeferredLock.prototype={__class__:MochiKit.Async.DeferredLock,acquire:function(){d=new MochiKit.Async.Deferred();if(this.locked){this.waiting.push(d);}else{this.locked=true;d.callback(this);}
return d;},release:function(){if(!this.locked){throw TypeError("Tried to release an unlocked DeferredLock");}
this.locked=false;if(this.waiting.length>0){this.locked=true;this.waiting.shift().callback(this);}},_nextId:MochiKit.Base.counter(),repr:function(){var _301;if(this.locked){_301="locked, "+this.waiting.length+" waiting";}else{_301="unlocked";}
return"DeferredLock("+this.id+", "+_301+")";},toString:MochiKit.Base.forwardCall("repr")};MochiKit.Async.DeferredList=function(list,_303,_304,_305,_306){this.list=list;this.resultList=new Array(this.list.length);this.chain=[];this.id=this._nextId();this.fired=-1;this.paused=0;this.results=[null,null];this.canceller=_306;this.silentlyCancelled=false;if(this.list.length===0&&!_303){this.callback(this.resultList);}
this.finishedCount=0;this.fireOnOneCallback=_303;this.fireOnOneErrback=_304;this.consumeErrors=_305;var _307=0;MochiKit.Base.map(MochiKit.Base.bind(function(d){d.addCallback(MochiKit.Base.bind(this._cbDeferred,this),_307,true);d.addErrback(MochiKit.Base.bind(this._cbDeferred,this),_307,false);_307+=1;},this),this.list);};MochiKit.Base.update(MochiKit.Async.DeferredList.prototype,MochiKit.Async.Deferred.prototype);MochiKit.Base.update(MochiKit.Async.DeferredList.prototype,{_cbDeferred:function(_308,_309,_310){this.resultList[_308]=[_309,_310];this.finishedCount+=1;if(this.fired!==0){if(_309&&this.fireOnOneCallback){this.callback([_308,_310]);}else{if(!_309&&this.fireOnOneErrback){this.errback(_310);}else{if(this.finishedCount==this.list.length){this.callback(this.resultList);}}}}
if(!_309&&this.consumeErrors){_310=null;}
return _310;}});MochiKit.Async.gatherResults=function(_311){var d=new MochiKit.Async.DeferredList(_311,false,true,false);d.addCallback(function(_312){var ret=[];for(var i=0;i<_312.length;i++){ret.push(_312[i][1]);}
return ret;});return d;};MochiKit.Async.maybeDeferred=function(func){var self=MochiKit.Async;var _313;try{var r=func.apply(null,MochiKit.Base.extend([],arguments,1));if(r instanceof self.Deferred){_313=r;}else{if(r instanceof Error){_313=self.fail(r);}else{_313=self.succeed(r);}}}
catch(e){_313=self.fail(e);}
return _313;};MochiKit.Async.EXPORT=["AlreadyCalledError","CancelledError","BrowserComplianceError","GenericError","XMLHttpRequestError","Deferred","succeed","fail","getXMLHttpRequest","doSimpleXMLHttpRequest","loadJSONDoc","wait","callLater","sendXMLHttpRequest","DeferredLock","DeferredList","gatherResults","maybeDeferred"];MochiKit.Async.EXPORT_OK=["evalJSONRequest"];MochiKit.Async.__new__=function(){var m=MochiKit.Base;var ne=m.partial(m._newNamedError,this);ne("AlreadyCalledError",function(_316){this.deferred=_316;});ne("CancelledError",function(_317){this.deferred=_317;});ne("BrowserComplianceError",function(msg){this.message=msg;});ne("GenericError",function(msg){this.message=msg;});ne("XMLHttpRequestError",function(req,msg){this.req=req;this.message=msg;try{this.number=req.status;}
catch(e){}});this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};m.nameFunctions(this);};MochiKit.Async.__new__();MochiKit.Base._exportSymbols(this,MochiKit.Async);if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.DOM");dojo.require("MochiKit.Iter");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Iter",[]);}
try{if(typeof(MochiKit.Iter)=="undefined"){throw"";}}
catch(e){throw"MochiKit.DOM depends on MochiKit.Iter!";}
if(typeof(MochiKit.DOM)=="undefined"){MochiKit.DOM={};}
MochiKit.DOM.NAME="MochiKit.DOM";MochiKit.DOM.VERSION="1.3.1";MochiKit.DOM.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.DOM.toString=function(){return this.__repr__();};MochiKit.DOM.EXPORT=["formContents","currentWindow","currentDocument","withWindow","withDocument","registerDOMConverter","coerceToDOM","createDOM","createDOMFunc","getNodeAttribute","setNodeAttribute","updateNodeAttributes","appendChildNodes","replaceChildNodes","removeElement","swapDOM","BUTTON","TT","PRE","H1","H2","H3","BR","CANVAS","HR","LABEL","TEXTAREA","FORM","STRONG","SELECT","OPTION","OPTGROUP","LEGEND","FIELDSET","P","UL","OL","LI","TD","TR","THEAD","TBODY","TFOOT","TABLE","TH","INPUT","SPAN","A","DIV","B","I","SUP","IMG","getElement","$","computedStyle","getElementsByTagAndClassName","addToCallStack","addLoadEvent","focusOnLoad","setElementClass","toggleElementClass","addElementClass","removeElementClass","swapElementClass","hasElementClass","escapeHTML","toHTML","emitHTML","setDisplayForElement","hideElement","showElement","scrapeText","elementDimensions","elementPosition","setElementDimensions","setElementPosition","getViewportDimensions","setOpacity"];MochiKit.DOM.EXPORT_OK=["domConverters"];MochiKit.DOM.Dimensions=function(w,h){this.w=w;this.h=h;};MochiKit.DOM.Dimensions.prototype.repr=function(){var repr=MochiKit.Base.repr;return"{w: "+repr(this.w)+", h: "+repr(this.h)+"}";};MochiKit.DOM.Coordinates=function(x,y){this.x=x;this.y=y;};MochiKit.DOM.Coordinates.prototype.repr=function(){var repr=MochiKit.Base.repr;return"{x: "+repr(this.x)+", y: "+repr(this.y)+"}";};MochiKit.DOM.Coordinates.prototype.toString=function(){return this.repr();};MochiKit.Base.update(MochiKit.DOM,{setOpacity:function(elem,o){elem=MochiKit.DOM.getElement(elem);MochiKit.DOM.updateNodeAttributes(elem,{"style":{"opacity":o,"-moz-opacity":o,"-khtml-opacity":o,"filter":" alpha(opacity="+(o*100)+")"}});},getViewportDimensions:function(){var d=new MochiKit.DOM.Dimensions();var w=MochiKit.DOM._window;var b=MochiKit.DOM._document.body;if(w.innerWidth){d.w=w.innerWidth;d.h=w.innerHeight;}else{if(b.parentElement.clientWidth){d.w=b.parentElement.clientWidth;d.h=b.parentElement.clientHeight;}else{if(b&&b.clientWidth){d.w=b.clientWidth;d.h=b.clientHeight;}}}
return d;},elementDimensions:function(elem){var self=MochiKit.DOM;if(typeof(elem.w)=="number"||typeof(elem.h)=="number"){return new self.Dimensions(elem.w||0,elem.h||0);}
elem=self.getElement(elem);if(!elem){return undefined;}
if(self.computedStyle(elem,"display")!="none"){return new self.Dimensions(elem.offsetWidth||0,elem.offsetHeight||0);}
var s=elem.style;var _322=s.visibility;var _323=s.position;s.visibility="hidden";s.position="absolute";s.display="";var _324=elem.offsetWidth;var _325=elem.offsetHeight;s.display="none";s.position=_323;s.visibility=_322;return new self.Dimensions(_324,_325);},elementPosition:function(elem,_326){var self=MochiKit.DOM;elem=self.getElement(elem);if(!elem){return undefined;}
var c=new self.Coordinates(0,0);if(elem.x&&elem.y){c.x+=elem.x||0;c.y+=elem.y||0;return c;}else{if(elem.parentNode===null||self.computedStyle(elem,"display")=="none"){return undefined;}}
var box=null;var _329=null;var d=MochiKit.DOM._document;var de=d.documentElement;var b=d.body;if(elem.getBoundingClientRect){box=elem.getBoundingClientRect();c.x+=box.left+(de.scrollLeft||b.scrollLeft)-(de.clientLeft||b.clientLeft);c.y+=box.top+(de.scrollTop||b.scrollTop)-(de.clientTop||b.clientTop);}else{if(d.getBoxObjectFor){box=d.getBoxObjectFor(elem);c.x+=box.x;c.y+=box.y;}else{if(elem.offsetParent){c.x+=elem.offsetLeft;c.y+=elem.offsetTop;_329=elem.offsetParent;if(_329!=elem){while(_329){c.x+=_329.offsetLeft;c.y+=_329.offsetTop;_329=_329.offsetParent;}}
var ua=navigator.userAgent.toLowerCase();if((typeof(opera)!="undefined"&&parseFloat(opera.version())<9)||(ua.indexOf("safari")!=-1&&self.computedStyle(elem,"position")=="absolute")){c.x-=b.offsetLeft;c.y-=b.offsetTop;}}}}
if(typeof(_326)!="undefined"){_326=arguments.callee(_326);if(_326){c.x-=(_326.x||0);c.y-=(_326.y||0);}}
if(elem.parentNode){_329=elem.parentNode;}else{_329=null;}
while(_329&&_329.tagName!="BODY"&&_329.tagName!="HTML"){c.x-=_329.scrollLeft;c.y-=_329.scrollTop;if(_329.parentNode){_329=_329.parentNode;}else{_329=null;}}
return c;},setElementDimensions:function(elem,_332,_333){elem=MochiKit.DOM.getElement(elem);if(typeof(_333)=="undefined"){_333="px";}
MochiKit.DOM.updateNodeAttributes(elem,{"style":{"width":_332.w+_333,"height":_332.h+_333}});},setElementPosition:function(elem,_334,_335){elem=MochiKit.DOM.getElement(elem);if(typeof(_335)=="undefined"){_335="px";}
MochiKit.DOM.updateNodeAttributes(elem,{"style":{"left":_334.x+_335,"top":_334.y+_335}});},currentWindow:function(){return MochiKit.DOM._window;},currentDocument:function(){return MochiKit.DOM._document;},withWindow:function(win,func){var self=MochiKit.DOM;var _337=self._document;var _338=self._win;var rval;try{self._window=win;self._document=win.document;rval=func();}
catch(e){self._window=_338;self._document=_337;throw e;}
self._window=_338;self._document=_337;return rval;},formContents:function(elem){var _339=[];var _340=[];var m=MochiKit.Base;var self=MochiKit.DOM;if(typeof(elem)=="undefined"||elem===null){elem=self._document;}else{elem=self.getElement(elem);}
m.nodeWalk(elem,function(elem){var name=elem.name;if(m.isNotEmpty(name)){var _341=elem.nodeName;if(_341=="INPUT"&&(elem.type=="radio"||elem.type=="checkbox")&&!elem.checked){return null;}
if(_341=="SELECT"){if(elem.selectedIndex>=0){var opt=elem.options[elem.selectedIndex];_339.push(name);_340.push((opt.value)?opt.value:opt.text);return null;}
_339.push(name);_340.push("");return null;}
if(_341=="FORM"||_341=="P"||_341=="SPAN"||_341=="DIV"){return elem.childNodes;}
_339.push(name);_340.push(elem.value||"");return null;}
return elem.childNodes;});return[_339,_340];},withDocument:function(doc,func){var self=MochiKit.DOM;var _344=self._document;var rval;try{self._document=doc;rval=func();}
catch(e){self._document=_344;throw e;}
self._document=_344;return rval;},registerDOMConverter:function(name,_345,wrap,_346){MochiKit.DOM.domConverters.register(name,_345,wrap,_346);},coerceToDOM:function(node,ctx){var im=MochiKit.Iter;var self=MochiKit.DOM;var iter=im.iter;var _350=im.repeat;var imap=im.imap;var _352=self.domConverters;var _353=self.coerceToDOM;var _354=MochiKit.Base.NotFound;while(true){if(typeof(node)=="undefined"||node===null){return null;}
if(typeof(node.nodeType)!="undefined"&&node.nodeType>0){return node;}
if(typeof(node)=="number"||typeof(node)=="boolean"){node=node.toString();}
if(typeof(node)=="string"){return self._document.createTextNode(node);}
if(typeof(node.toDOM)=="function"){node=node.toDOM(ctx);continue;}
if(typeof(node)=="function"){node=node(ctx);continue;}
var _355=null;try{_355=iter(node);}
catch(e){}
if(_355){return imap(_353,_355,_350(ctx));}
try{node=_352.match(node,ctx);continue;}
catch(e){if(e!=_354){throw e;}}
return self._document.createTextNode(node.toString());}
return undefined;},setNodeAttribute:function(node,attr,_357){var o={};o[attr]=_357;try{return MochiKit.DOM.updateNodeAttributes(node,o);}
catch(e){}
return null;},getNodeAttribute:function(node,attr){var self=MochiKit.DOM;var _358=self.attributeArray.renames[attr];node=self.getElement(node);try{if(_358){return node[_358];}
return node.getAttribute(attr);}
catch(e){}
return null;},updateNodeAttributes:function(node,_359){var elem=node;var self=MochiKit.DOM;if(typeof(node)=="string"){elem=self.getElement(node);}
if(_359){var _360=MochiKit.Base.updatetree;if(self.attributeArray.compliant){for(var k in _359){var v=_359[k];if(typeof(v)=="object"&&typeof(elem[k])=="object"){_360(elem[k],v);}else{if(k.substring(0,2)=="on"){if(typeof(v)=="string"){v=new Function(v);}
elem[k]=v;}else{elem.setAttribute(k,v);}}}}else{var _361=self.attributeArray.renames;for(k in _359){v=_359[k];var _362=_361[k];if(k=="style"&&typeof(v)=="string"){elem.style.cssText=v;}else{if(typeof(_362)=="string"){elem[_362]=v;}else{if(typeof(elem[k])=="object"&&typeof(v)=="object"){_360(elem[k],v);}else{if(k.substring(0,2)=="on"){if(typeof(v)=="string"){v=new Function(v);}
elem[k]=v;}else{elem.setAttribute(k,v);}}}}}}}
return elem;},appendChildNodes:function(node){var elem=node;var self=MochiKit.DOM;if(typeof(node)=="string"){elem=self.getElement(node);}
var _363=[self.coerceToDOM(MochiKit.Base.extend(null,arguments,1),elem)];var _364=MochiKit.Base.concat;while(_363.length){var n=_363.shift();if(typeof(n)=="undefined"||n===null){}else{if(typeof(n.nodeType)=="number"){elem.appendChild(n);}else{_363=_364(n,_363);}}}
return elem;},replaceChildNodes:function(node){var elem=node;var self=MochiKit.DOM;if(typeof(node)=="string"){elem=self.getElement(node);arguments[0]=elem;}
var _365;while((_365=elem.firstChild)){elem.removeChild(_365);}
if(arguments.length<2){return elem;}else{return self.appendChildNodes.apply(this,arguments);}},createDOM:function(name,_366){var elem;var self=MochiKit.DOM;var m=MochiKit.Base;if(typeof(_366)=="string"||typeof(_366)=="number"){var args=m.extend([name,null],arguments,1);return arguments.callee.apply(this,args);}
if(typeof(name)=="string"){if(_366&&"name"in _366&&!self.attributeArray.compliant){name=("<"+name+" name=\""+self.escapeHTML(_366.name)+"\">");}
elem=self._document.createElement(name);}else{elem=name;}
if(_366){self.updateNodeAttributes(elem,_366);}
if(arguments.length<=2){return elem;}else{var args=m.extend([elem],arguments,2);return self.appendChildNodes.apply(this,args);}},createDOMFunc:function(){var m=MochiKit.Base;return m.partial.apply(this,m.extend([MochiKit.DOM.createDOM],arguments));},swapDOM:function(dest,src){var self=MochiKit.DOM;dest=self.getElement(dest);var _369=dest.parentNode;if(src){src=self.getElement(src);_369.replaceChild(src,dest);}else{_369.removeChild(dest);}
return src;},getElement:function(id){var self=MochiKit.DOM;if(arguments.length==1){return((typeof(id)=="string")?self._document.getElementById(id):id);}else{return MochiKit.Base.map(self.getElement,arguments);}},computedStyle:function(_371,_372,_373){if(arguments.length==2){_373=_372;}
var self=MochiKit.DOM;var el=self.getElement(_371);var _375=self._document;if(!el||el==_375){return undefined;}
if(el.currentStyle){return el.currentStyle[_372];}
if(typeof(_375.defaultView)=="undefined"){return undefined;}
if(_375.defaultView===null){return undefined;}
var _376=_375.defaultView.getComputedStyle(el,null);if(typeof(_376)=="undefined"||_376===null){return undefined;}
return _376.getPropertyValue(_373);},getElementsByTagAndClassName:function(_377,_378,_379){var self=MochiKit.DOM;if(typeof(_377)=="undefined"||_377===null){_377="*";}
if(typeof(_379)=="undefined"||_379===null){_379=self._document;}
_379=self.getElement(_379);var _380=(_379.getElementsByTagName(_377)||self._document.all);if(typeof(_378)=="undefined"||_378===null){return MochiKit.Base.extend(null,_380);}
var _381=[];for(var i=0;i<_380.length;i++){var _382=_380[i];var _383=_382.className.split(" ");for(var j=0;j<_383.length;j++){if(_383[j]==_378){_381.push(_382);break;}}}
return _381;},_newCallStack:function(path,once){var rval=function(){var _386=arguments.callee.callStack;for(var i=0;i<_386.length;i++){if(_386[i].apply(this,arguments)===false){break;}}
if(once){try{this[path]=null;}
catch(e){}}};rval.callStack=[];return rval;},addToCallStack:function(_387,path,func,once){var self=MochiKit.DOM;var _388=_387[path];var _389=_388;if(!(typeof(_388)=="function"&&typeof(_388.callStack)=="object"&&_388.callStack!==null)){_389=self._newCallStack(path,once);if(typeof(_388)=="function"){_389.callStack.push(_388);}
_387[path]=_389;}
_389.callStack.push(func);},addLoadEvent:function(func){var self=MochiKit.DOM;self.addToCallStack(self._window,"onload",func,true);},focusOnLoad:function(_390){var self=MochiKit.DOM;self.addLoadEvent(function(){_390=self.getElement(_390);if(_390){_390.focus();}});},setElementClass:function(_391,_392){var self=MochiKit.DOM;var obj=self.getElement(_391);if(self.attributeArray.compliant){obj.setAttribute("class",_392);}else{obj.setAttribute("className",_392);}},toggleElementClass:function(_393){var self=MochiKit.DOM;for(var i=1;i<arguments.length;i++){var obj=self.getElement(arguments[i]);if(!self.addElementClass(obj,_393)){self.removeElementClass(obj,_393);}}},addElementClass:function(_394,_395){var self=MochiKit.DOM;var obj=self.getElement(_394);var cls=obj.className;if(cls.length===0){self.setElementClass(obj,_395);return true;}
if(cls==_395){return false;}
var _397=obj.className.split(" ");for(var i=0;i<_397.length;i++){if(_397[i]==_395){return false;}}
self.setElementClass(obj,cls+" "+_395);return true;},removeElementClass:function(_398,_399){var self=MochiKit.DOM;var obj=self.getElement(_398);var cls=obj.className;if(cls.length===0){return false;}
if(cls==_399){self.setElementClass(obj,"");return true;}
var _400=obj.className.split(" ");for(var i=0;i<_400.length;i++){if(_400[i]==_399){_400.splice(i,1);self.setElementClass(obj,_400.join(" "));return true;}}
return false;},swapElementClass:function(_401,_402,_403){var obj=MochiKit.DOM.getElement(_401);var res=MochiKit.DOM.removeElementClass(obj,_402);if(res){MochiKit.DOM.addElementClass(obj,_403);}
return res;},hasElementClass:function(_404,_405){var obj=MochiKit.DOM.getElement(_404);var _406=obj.className.split(" ");for(var i=1;i<arguments.length;i++){var good=false;for(var j=0;j<_406.length;j++){if(_406[j]==arguments[i]){good=true;break;}}
if(!good){return false;}}
return true;},escapeHTML:function(s){return s.replace(/&/g,"&amp;").replace(/"/g,"&quot;").replace(/</g,"&lt;").replace(/>/g,"&gt;");},toHTML:function(dom){return MochiKit.DOM.emitHTML(dom).join("");},emitHTML:function(dom,lst){if(typeof(lst)=="undefined"||lst===null){lst=[];}
var _409=[dom];var self=MochiKit.DOM;var _410=self.escapeHTML;var _411=self.attributeArray;while(_409.length){dom=_409.pop();if(typeof(dom)=="string"){lst.push(dom);}else{if(dom.nodeType==1){lst.push("<"+dom.nodeName.toLowerCase());var _412=[];var _413=_411(dom);for(var i=0;i<_413.length;i++){var a=_413[i];_412.push([" ",a.name,"=\"",_410(a.value),"\""]);}
_412.sort();for(i=0;i<_412.length;i++){var _414=_412[i];for(var j=0;j<_414.length;j++){lst.push(_414[j]);}}
if(dom.hasChildNodes()){lst.push(">");_409.push("</"+dom.nodeName.toLowerCase()+">");var _415=dom.childNodes;for(i=_415.length-1;i>=0;i--){_409.push(_415[i]);}}else{lst.push("/>");}}else{if(dom.nodeType==3){lst.push(_410(dom.nodeValue));}}}}
return lst;},setDisplayForElement:function(_416,_417){var m=MochiKit.Base;var _418=m.extend(null,arguments,1);MochiKit.Iter.forEach(m.filter(null,m.map(MochiKit.DOM.getElement,_418)),function(_417){_417.style.display=_416;});},scrapeText:function(node,_419){var rval=[];(function(node){var cn=node.childNodes;if(cn){for(var i=0;i<cn.length;i++){arguments.callee.call(this,cn[i]);}}
var _421=node.nodeValue;if(typeof(_421)=="string"){rval.push(_421);}})(MochiKit.DOM.getElement(node));if(_419){return rval;}else{return rval.join("");}},__new__:function(win){var m=MochiKit.Base;this._document=document;this._window=win;this.domConverters=new m.AdapterRegistry();var _422=this._document.createElement("span");var _423;if(_422&&_422.attributes&&_422.attributes.length>0){var _424=m.filter;_423=function(node){return _424(_423.ignoreAttrFilter,node.attributes);};_423.ignoreAttr={};MochiKit.Iter.forEach(_422.attributes,function(a){_423.ignoreAttr[a.name]=a.value;});_423.ignoreAttrFilter=function(a){return(_423.ignoreAttr[a.name]!=a.value);};_423.compliant=false;_423.renames={"class":"className","checked":"defaultChecked","usemap":"useMap","for":"htmlFor"};}else{_423=function(node){return node.attributes;};_423.compliant=true;_423.renames={};}
this.attributeArray=_423;var _425=this.createDOMFunc;this.UL=_425("ul");this.OL=_425("ol");this.LI=_425("li");this.TD=_425("td");this.TR=_425("tr");this.TBODY=_425("tbody");this.THEAD=_425("thead");this.TFOOT=_425("tfoot");this.TABLE=_425("table");this.TH=_425("th");this.INPUT=_425("input");this.SPAN=_425("span");this.A=_425("a");this.B=_425("b");this.I=_425("i");this.DIV=_425("div");this.SUP=_425("sup");this.IMG=_425("img");this.BUTTON=_425("button");this.TT=_425("tt");this.PRE=_425("pre");this.H1=_425("h1");this.H2=_425("h2");this.H3=_425("h3");this.BR=_425("br");this.HR=_425("hr");this.LABEL=_425("label");this.TEXTAREA=_425("textarea");this.FORM=_425("form");this.P=_425("p");this.SELECT=_425("select");this.OPTION=_425("option");this.OPTGROUP=_425("optgroup");this.LEGEND=_425("legend");this.FIELDSET=_425("fieldset");this.STRONG=_425("strong");this.CANVAS=_425("canvas");this.hideElement=m.partial(this.setDisplayForElement,"none");this.showElement=m.partial(this.setDisplayForElement,"block");this.removeElement=this.swapDOM;this.$=this.getElement;this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};m.nameFunctions(this);}});MochiKit.DOM.__new__(((typeof(window)=="undefined")?this:window));if(!MochiKit.__compat__){withWindow=MochiKit.DOM.withWindow;withDocument=MochiKit.DOM.withDocument;}
MochiKit.Base._exportSymbols(this,MochiKit.DOM);if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.LoggingPane");dojo.require("MochiKit.Logging");dojo.require("MochiKit.Base");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Logging",[]);JSAN.use("MochiKit.Base",[]);}
try{if(typeof(MochiKit.Base)=="undefined"||typeof(MochiKit.Logging)=="undefined"){throw"";}}
catch(e){throw"MochiKit.LoggingPane depends on MochiKit.Base and MochiKit.Logging!";}
if(typeof(MochiKit.LoggingPane)=="undefined"){MochiKit.LoggingPane={};}
MochiKit.LoggingPane.NAME="MochiKit.LoggingPane";MochiKit.LoggingPane.VERSION="1.3.1";MochiKit.LoggingPane.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.LoggingPane.toString=function(){return this.__repr__();};MochiKit.LoggingPane.createLoggingPane=function(_426){var m=MochiKit.LoggingPane;_426=!(!_426);if(m._loggingPane&&m._loggingPane.inline!=_426){m._loggingPane.closePane();m._loggingPane=null;}
if(!m._loggingPane||m._loggingPane.closed){m._loggingPane=new m.LoggingPane(_426,MochiKit.Logging.logger);}
return m._loggingPane;};MochiKit.LoggingPane.LoggingPane=function(_427,_428){if(typeof(_428)=="undefined"||_428===null){_428=MochiKit.Logging.logger;}
this.logger=_428;var _429=MochiKit.Base.update;var _430=MochiKit.Base.updatetree;var bind=MochiKit.Base.bind;var _431=MochiKit.Base.clone;var win=window;var uid="_MochiKit_LoggingPane";if(typeof(MochiKit.DOM)!="undefined"){win=MochiKit.DOM.currentWindow();}
if(!_427){var url=win.location.href.split("?")[0].replace(/[:\/.><&]/g,"_");var name=uid+"_"+url;var nwin=win.open("",name,"dependent,resizable,height=200");if(!nwin){alert("Not able to open debugging window due to pop-up blocking.");return undefined;}
nwin.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" "+"\"http://www.w3.org/TR/html4/loose.dtd\">"+"<html><head><title>[MochiKit.LoggingPane]</title></head>"+"<body></body></html>");nwin.document.close();nwin.document.title+=" "+win.document.title;win=nwin;}
var doc=win.document;this.doc=doc;var _434=doc.getElementById(uid);var _435=!!_434;if(_434&&typeof(_434.loggingPane)!="undefined"){_434.loggingPane.logger=this.logger;_434.loggingPane.buildAndApplyFilter();return _434.loggingPane;}
if(_435){var _436;while((_436=_434.firstChild)){_434.removeChild(_436);}}else{_434=doc.createElement("div");_434.id=uid;}
_434.loggingPane=this;var _437=doc.createElement("input");var _438=doc.createElement("input");var _439=doc.createElement("button");var _440=doc.createElement("button");var _441=doc.createElement("button");var _442=doc.createElement("button");var togButton=doc.createElement("button");var _443=doc.createElement("div");var _444=doc.createElement("div");var _445=uid+"_Listener";this.colorTable=_431(this.colorTable);var _446=[];var _447=null;var _448=function(msg){var _449=msg.level;if(typeof(_449)=="number"){_449=MochiKit.Logging.LogLevel[_449];}
return _449;};var _450=function(msg){return msg.info.join(" ");};var _451=bind(function(msg){var _452=_448(msg);var text=_450(msg);var c=this.colorTable[_452];var p=doc.createElement("span");p.className="MochiKit-LogMessage MochiKit-LogLevel-"+_452;p.style.cssText="margin: 0px; color: "+c;p.appendChild(doc.createTextNode(_452+": "+text));_444.appendChild(p);_444.appendChild(doc.createElement("br"));if(_443.offsetHeight>_443.scrollHeight){_443.scrollTop=0;}else{_443.scrollTop=_443.scrollHeight;}},this);var _454=function(msg){_446[_446.length]=msg;_451(msg);};var _455=function(){var _456,infore;try{_456=new RegExp(_437.value);infore=new RegExp(_438.value);}
catch(e){logDebug("Error in filter regex: "+e.message);return null;}
return function(msg){return(_456.test(_448(msg))&&infore.test(_450(msg)));};};var _457=function(){while(_444.firstChild){_444.removeChild(_444.firstChild);}};var _458=function(){_446=[];_457();};var _459=bind(function(){if(this.closed){return;}
this.closed=true;if(MochiKit.LoggingPane._loggingPane==this){MochiKit.LoggingPane._loggingPane=null;}
this.logger.removeListener(_445);_434.loggingPane=null;if(_427){_434.parentNode.removeChild(_434);}else{this.win.close();}},this);var _460=function(){_457();for(var i=0;i<_446.length;i++){var msg=_446[i];if(_447===null||_447(msg)){_451(msg);}}};this.buildAndApplyFilter=function(){_447=_455();_460();this.logger.removeListener(_445);this.logger.addListener(_445,_447,_454);};var _461=bind(function(){_446=this.logger.getMessages();_460();},this);var _462=bind(function(_463){_463=_463||window.event;key=_463.which||_463.keyCode;if(key==13){this.buildAndApplyFilter();}},this);var _464="display: block; z-index: 1000; left: 0px; bottom: 12px; position: fixed; width: 100%; background-color: white; font: "+this.logFont;if(_427){_464+="; height: 0.75em; border-top: 2px solid black";}else{_464+="; height: 100%;";}
_434.style.cssText=_464;if(!_435){doc.body.appendChild(_434);}
_464={"cssText":"width: 27.5%; display: inline; font: "+this.logFont};_430(_437,{"value":"FATAL|ERROR|WARNING|INFO|DEBUG","onkeypress":_462,"style":_464});_434.appendChild(_437);_430(_438,{"value":".*","onkeypress":_462,"style":_464});_434.appendChild(_438);_464="width: 8%; display:inline; font: "+this.logFont;_439.appendChild(doc.createTextNode("Filter"));_439.onclick=bind("buildAndApplyFilter",this);_439.style.cssText=_464;_434.appendChild(_439);_440.appendChild(doc.createTextNode("Load"));_440.onclick=_461;_440.style.cssText=_464;_434.appendChild(_440);_441.appendChild(doc.createTextNode("Clear"));_441.onclick=_458;_441.style.cssText=_464;_434.appendChild(_441);_442.appendChild(doc.createTextNode("Close"));_442.onclick=_459;_442.style.cssText=_464;_434.appendChild(_442);togButton.appendChild(doc.createTextNode("Show/Hide"));togButton.onclick=function(){if(parseInt(_434.style.height)<10){_434.style.height='15em';}else{_434.style.height='.75em';}};togButton.style.cssText=_464;_434.appendChild(togButton);_443.style.cssText="overflow: auto; width: 100%";_444.style.cssText="width: 100%; height: "+(_427?"14em":"100%");_443.appendChild(_444);_434.appendChild(_443);this.buildAndApplyFilter();_461();if(_427){this.win=undefined;}else{this.win=win;}
this.inline=_427;this.closePane=_459;this.closed=false;return this;};MochiKit.LoggingPane.LoggingPane.prototype={"logFont":"8pt Verdana,sans-serif","colorTable":{"ERROR":"red","FATAL":"darkred","WARNING":"blue","INFO":"black","DEBUG":"green"}};MochiKit.LoggingPane.EXPORT_OK=["LoggingPane"];MochiKit.LoggingPane.EXPORT=["createLoggingPane"];MochiKit.LoggingPane.__new__=function(){this.EXPORT_TAGS={":common":this.EXPORT,":all":MochiKit.Base.concat(this.EXPORT,this.EXPORT_OK)};MochiKit.Base.nameFunctions(this);MochiKit.LoggingPane._loggingPane=null;};MochiKit.LoggingPane.__new__();MochiKit.Base._exportSymbols(this,MochiKit.LoggingPane);if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.Color");dojo.require("MochiKit.Base");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Base",[]);}
try{if(typeof(MochiKit.Base)=="undefined"){throw"";}}
catch(e){throw"MochiKit.Color depends on MochiKit.Base";}
if(typeof(MochiKit.Color)=="undefined"){MochiKit.Color={};}
MochiKit.Color.NAME="MochiKit.Color";MochiKit.Color.VERSION="1.3.1";MochiKit.Color.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.Color.toString=function(){return this.__repr__();};MochiKit.Color.Color=function(red,_466,blue,_468){if(typeof(_468)=="undefined"||_468===null){_468=1;}
this.rgb={r:red,g:_466,b:blue,a:_468};};MochiKit.Color.Color.prototype={__class__:MochiKit.Color.Color,colorWithAlpha:function(_469){var rgb=this.rgb;var m=MochiKit.Color;return m.Color.fromRGB(rgb.r,rgb.g,rgb.b,_469);},colorWithHue:function(hue){var hsl=this.asHSL();hsl.h=hue;var m=MochiKit.Color;return m.Color.fromHSL(hsl);},colorWithSaturation:function(_473){var hsl=this.asHSL();hsl.s=_473;var m=MochiKit.Color;return m.Color.fromHSL(hsl);},colorWithLightness:function(_474){var hsl=this.asHSL();hsl.l=_474;var m=MochiKit.Color;return m.Color.fromHSL(hsl);},darkerColorWithLevel:function(_475){var hsl=this.asHSL();hsl.l=Math.max(hsl.l-_475,0);var m=MochiKit.Color;return m.Color.fromHSL(hsl);},lighterColorWithLevel:function(_476){var hsl=this.asHSL();hsl.l=Math.min(hsl.l+_476,1);var m=MochiKit.Color;return m.Color.fromHSL(hsl);},blendedColor:function(_477,_478){if(typeof(_478)=="undefined"||_478===null){_478=0.5;}
var sf=1-_478;var s=this.rgb;var d=_477.rgb;var df=_478;return MochiKit.Color.Color.fromRGB((s.r*sf)+(d.r*df),(s.g*sf)+(d.g*df),(s.b*sf)+(d.b*df),(s.a*sf)+(d.a*df));},compareRGB:function(_481){var a=this.asRGB();var b=_481.asRGB();return MochiKit.Base.compare([a.r,a.g,a.b,a.a],[b.r,b.g,b.b,b.a]);},isLight:function(){return this.asHSL().b>0.5;},isDark:function(){return(!this.isLight());},toHSLString:function(){var c=this.asHSL();var ccc=MochiKit.Color.clampColorComponent;var rval=this._hslString;if(!rval){var mid=(ccc(c.h,360).toFixed(0)+","+ccc(c.s,100).toPrecision(4)+"%"+","+ccc(c.l,100).toPrecision(4)+"%");var a=c.a;if(a>=1){a=1;rval="hsl("+mid+")";}else{if(a<=0){a=0;}
rval="hsla("+mid+","+a+")";}
this._hslString=rval;}
return rval;},toRGBString:function(){var c=this.rgb;var ccc=MochiKit.Color.clampColorComponent;var rval=this._rgbString;if(!rval){var mid=(ccc(c.r,255).toFixed(0)+","+ccc(c.g,255).toFixed(0)+","+ccc(c.b,255).toFixed(0));if(c.a!=1){rval="rgba("+mid+","+c.a+")";}else{rval="rgb("+mid+")";}
this._rgbString=rval;}
return rval;},asRGB:function(){return MochiKit.Base.clone(this.rgb);},toHexString:function(){var m=MochiKit.Color;var c=this.rgb;var ccc=MochiKit.Color.clampColorComponent;var rval=this._hexString;if(!rval){rval=("#"+m.toColorPart(ccc(c.r,255))+m.toColorPart(ccc(c.g,255))+m.toColorPart(ccc(c.b,255)));this._hexString=rval;}
return rval;},asHSV:function(){var hsv=this.hsv;var c=this.rgb;if(typeof(hsv)=="undefined"||hsv===null){hsv=MochiKit.Color.rgbToHSV(this.rgb);this.hsv=hsv;}
return MochiKit.Base.clone(hsv);},asHSL:function(){var hsl=this.hsl;var c=this.rgb;if(typeof(hsl)=="undefined"||hsl===null){hsl=MochiKit.Color.rgbToHSL(this.rgb);this.hsl=hsl;}
return MochiKit.Base.clone(hsl);},toString:function(){return this.toRGBString();},repr:function(){var c=this.rgb;var col=[c.r,c.g,c.b,c.a];return this.__class__.NAME+"("+col.join(", ")+")";}};MochiKit.Base.update(MochiKit.Color.Color,{fromRGB:function(red,_486,blue,_487){var _488=MochiKit.Color.Color;if(arguments.length==1){var rgb=red;red=rgb.r;_486=rgb.g;blue=rgb.b;if(typeof(rgb.a)=="undefined"){_487=undefined;}else{_487=rgb.a;}}
return new _488(red,_486,blue,_487);},fromHSL:function(hue,_489,_490,_491){var m=MochiKit.Color;return m.Color.fromRGB(m.hslToRGB.apply(m,arguments));},fromHSV:function(hue,_492,_493,_494){var m=MochiKit.Color;return m.Color.fromRGB(m.hsvToRGB.apply(m,arguments));},fromName:function(name){var _495=MochiKit.Color.Color;if(name.charAt(0)=="\""){name=name.substr(1,name.length-2);}
var _496=_495._namedColors[name.toLowerCase()];if(typeof(_496)=="string"){return _495.fromHexString(_496);}else{if(name=="transparent"){return _495.transparentColor();}}
return null;},fromString:function(_497){var self=MochiKit.Color.Color;var _498=_497.substr(0,3);if(_498=="rgb"){return self.fromRGBString(_497);}else{if(_498=="hsl"){return self.fromHSLString(_497);}else{if(_497.charAt(0)=="#"){return self.fromHexString(_497);}}}
return self.fromName(_497);},fromHexString:function(_499){if(_499.charAt(0)=="#"){_499=_499.substring(1);}
var _500=[];var i,hex;if(_499.length==3){for(i=0;i<3;i++){hex=_499.substr(i,1);_500.push(parseInt(hex+hex,16)/255);}}else{for(i=0;i<6;i+=2){hex=_499.substr(i,2);_500.push(parseInt(hex,16)/255);}}
var _501=MochiKit.Color.Color;return _501.fromRGB.apply(_501,_500);},_fromColorString:function(pre,_503,_504,_505){if(_505.indexOf(pre)===0){_505=_505.substring(_505.indexOf("(",3)+1,_505.length-1);}
var _506=_505.split(/\s*,\s*/);var _507=[];for(var i=0;i<_506.length;i++){var c=_506[i];var val;var _508=c.substring(c.length-3);if(c.charAt(c.length-1)=="%"){val=0.01*parseFloat(c.substring(0,c.length-1));}else{if(_508=="deg"){val=parseFloat(c)/360;}else{if(_508=="rad"){val=parseFloat(c)/(Math.PI*2);}else{val=_504[i]*parseFloat(c);}}}
_507.push(val);}
return this[_503].apply(this,_507);},fromComputedStyle:function(elem,_509,_510){var d=MochiKit.DOM;var cls=MochiKit.Color.Color;for(elem=d.getElement(elem);elem;elem=elem.parentNode){var _511=d.computedStyle.apply(d,arguments);if(!_511){continue;}
var _512=cls.fromString(_511);if(!_512){break;}
if(_512.asRGB().a>0){return _512;}}
return null;},fromBackground:function(elem){var cls=MochiKit.Color.Color;return cls.fromComputedStyle(elem,"backgroundColor","background-color")||cls.whiteColor();},fromText:function(elem){var cls=MochiKit.Color.Color;return cls.fromComputedStyle(elem,"color","color")||cls.blackColor();},namedColors:function(){return MochiKit.Base.clone(MochiKit.Color.Color._namedColors);}});MochiKit.Base.update(MochiKit.Color,{clampColorComponent:function(v,_513){v*=_513;if(v<0){return 0;}else{if(v>_513){return _513;}else{return v;}}},_hslValue:function(n1,n2,hue){if(hue>6){hue-=6;}else{if(hue<0){hue+=6;}}
var val;if(hue<1){val=n1+(n2-n1)*hue;}else{if(hue<3){val=n2;}else{if(hue<4){val=n1+(n2-n1)*(4-hue);}else{val=n1;}}}
return val;},hsvToRGB:function(hue,_516,_517,_518){if(arguments.length==1){var hsv=hue;hue=hsv.h;_516=hsv.s;_517=hsv.v;_518=hsv.a;}
var red;var _519;var blue;if(_516===0){red=0;_519=0;blue=0;}else{var i=Math.floor(hue*6);var f=(hue*6)-i;var p=_517*(1-_516);var q=_517*(1-(_516*f));var t=_517*(1-(_516*(1-f)));switch(i){case 1:red=q;_519=_517;blue=p;break;case 2:red=p;_519=_517;blue=t;break;case 3:red=p;_519=q;blue=_517;break;case 4:red=t;_519=p;blue=_517;break;case 5:red=_517;_519=p;blue=q;break;case 6:case 0:red=_517;_519=t;blue=p;break;}}
return{r:red,g:_519,b:blue,a:_518};},hslToRGB:function(hue,_521,_522,_523){if(arguments.length==1){var hsl=hue;hue=hsl.h;_521=hsl.s;_522=hsl.l;_523=hsl.a;}
var red;var _524;var blue;if(_521===0){red=_522;_524=_522;blue=_522;}else{var m2;if(_522<=0.5){m2=_522*(1+_521);}else{m2=_522+_521-(_522*_521);}
var m1=(2*_522)-m2;var f=MochiKit.Color._hslValue;var h6=hue*6;red=f(m1,m2,h6+2);_524=f(m1,m2,h6);blue=f(m1,m2,h6-2);}
return{r:red,g:_524,b:blue,a:_523};},rgbToHSV:function(red,_528,blue,_529){if(arguments.length==1){var rgb=red;red=rgb.r;_528=rgb.g;blue=rgb.b;_529=rgb.a;}
var max=Math.max(Math.max(red,_528),blue);var min=Math.min(Math.min(red,_528),blue);var hue;var _532;var _533=max;if(min==max){hue=0;_532=0;}else{var _534=(max-min);_532=_534/max;if(red==max){hue=(_528-blue)/_534;}else{if(_528==max){hue=2+((blue-red)/_534);}else{hue=4+((red-_528)/_534);}}
hue/=6;if(hue<0){hue+=1;}
if(hue>1){hue-=1;}}
return{h:hue,s:_532,v:_533,a:_529};},rgbToHSL:function(red,_535,blue,_536){if(arguments.length==1){var rgb=red;red=rgb.r;_535=rgb.g;blue=rgb.b;_536=rgb.a;}
var max=Math.max(red,Math.max(_535,blue));var min=Math.min(red,Math.min(_535,blue));var hue;var _537;var _538=(max+min)/2;var _539=max-min;if(_539===0){hue=0;_537=0;}else{if(_538<=0.5){_537=_539/(max+min);}else{_537=_539/(2-max-min);}
if(red==max){hue=(_535-blue)/_539;}else{if(_535==max){hue=2+((blue-red)/_539);}else{hue=4+((red-_535)/_539);}}
hue/=6;if(hue<0){hue+=1;}
if(hue>1){hue-=1;}}
return{h:hue,s:_537,l:_538,a:_536};},toColorPart:function(num){num=Math.round(num);var _540=num.toString(16);if(num<16){return"0"+_540;}
return _540;},__new__:function(){var m=MochiKit.Base;this.Color.fromRGBString=m.bind(this.Color._fromColorString,this.Color,"rgb","fromRGB",[1/255,1/255,1/255,1]);this.Color.fromHSLString=m.bind(this.Color._fromColorString,this.Color,"hsl","fromHSL",[1/360,0.01,0.01,1]);var _541=1/3;var _542={black:[0,0,0],blue:[0,0,1],brown:[0.6,0.4,0.2],cyan:[0,1,1],darkGray:[_541,_541,_541],gray:[0.5,0.5,0.5],green:[0,1,0],lightGray:[2*_541,2*_541,2*_541],magenta:[1,0,1],orange:[1,0.5,0],purple:[0.5,0,0.5],red:[1,0,0],transparent:[0,0,0,0],white:[1,1,1],yellow:[1,1,0]};var _543=function(name,r,g,b,a){var rval=this.fromRGB(r,g,b,a);this[name]=function(){return rval;};return rval;};for(var k in _542){var name=k+"Color";var _545=m.concat([_543,this.Color,name],_542[k]);this.Color[name]=m.bind.apply(null,_545);}
var _546=function(){for(var i=0;i<arguments.length;i++){if(!(arguments[i]instanceof Color)){return false;}}
return true;};var _547=function(a,b){return a.compareRGB(b);};m.nameFunctions(this);m.registerComparator(this.Color.NAME,_546,_547);this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};}});MochiKit.Color.EXPORT=["Color"];MochiKit.Color.EXPORT_OK=["clampColorComponent","rgbToHSL","hslToRGB","rgbToHSV","hsvToRGB","toColorPart"];MochiKit.Color.__new__();MochiKit.Base._exportSymbols(this,MochiKit.Color);MochiKit.Color.Color._namedColors={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.Signal");dojo.require("MochiKit.Base");dojo.require("MochiKit.DOM");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Base",[]);JSAN.use("MochiKit.DOM",[]);}
try{if(typeof(MochiKit.Base)=="undefined"){throw"";}}
catch(e){throw"MochiKit.Signal depends on MochiKit.Base!";}
try{if(typeof(MochiKit.DOM)=="undefined"){throw"";}}
catch(e){throw"MochiKit.Signal depends on MochiKit.DOM!";}
if(typeof(MochiKit.Signal)=="undefined"){MochiKit.Signal={};}
MochiKit.Signal.NAME="MochiKit.Signal";MochiKit.Signal.VERSION="1.3.1";MochiKit.Signal._observers=[];MochiKit.Signal.Event=function(src,e){this._event=e||window.event;this._src=src;};MochiKit.Base.update(MochiKit.Signal.Event.prototype,{__repr__:function(){var repr=MochiKit.Base.repr;var str="{event(): "+repr(this.event())+", src(): "+repr(this.src())+", type(): "+repr(this.type())+", target(): "+repr(this.target())+", modifier(): "+"{alt: "+repr(this.modifier().alt)+", ctrl: "+repr(this.modifier().ctrl)+", meta: "+repr(this.modifier().meta)+", shift: "+repr(this.modifier().shift)+", any: "+repr(this.modifier().any)+"}";if(this.type()&&this.type().indexOf("key")===0){str+=", key(): {code: "+repr(this.key().code)+", string: "+repr(this.key().string)+"}";}
if(this.type()&&(this.type().indexOf("mouse")===0||this.type().indexOf("click")!=-1||this.type()=="contextmenu")){str+=", mouse(): {page: "+repr(this.mouse().page)+", client: "+repr(this.mouse().client);if(this.type()!="mousemove"){str+=", button: {left: "+repr(this.mouse().button.left)+", middle: "+repr(this.mouse().button.middle)+", right: "+repr(this.mouse().button.right)+"}}";}else{str+="}";}}
if(this.type()=="mouseover"||this.type()=="mouseout"){str+=", relatedTarget(): "+repr(this.relatedTarget());}
str+="}";return str;},toString:function(){return this.__repr__();},src:function(){return this._src;},event:function(){return this._event;},type:function(){return this._event.type||undefined;},target:function(){return this._event.target||this._event.srcElement;},relatedTarget:function(){if(this.type()=="mouseover"){return(this._event.relatedTarget||this._event.fromElement);}else{if(this.type()=="mouseout"){return(this._event.relatedTarget||this._event.toElement);}}
return undefined;},modifier:function(){var m={};m.alt=this._event.altKey;m.ctrl=this._event.ctrlKey;m.meta=this._event.metaKey||false;m.shift=this._event.shiftKey;m.any=m.alt||m.ctrl||m.shift||m.meta;return m;},key:function(){var k={};if(this.type()&&this.type().indexOf("key")===0){if(this.type()=="keydown"||this.type()=="keyup"){k.code=this._event.keyCode;k.string=(MochiKit.Signal._specialKeys[k.code]||"KEY_UNKNOWN");return k;}else{if(this.type()=="keypress"){k.code=0;k.string="";if(typeof(this._event.charCode)!="undefined"&&this._event.charCode!==0&&!MochiKit.Signal._specialMacKeys[this._event.charCode]){k.code=this._event.charCode;k.string=String.fromCharCode(k.code);}else{if(this._event.keyCode&&typeof(this._event.charCode)=="undefined"){k.code=this._event.keyCode;k.string=String.fromCharCode(k.code);}}
return k;}}}
return undefined;},mouse:function(){var m={};var e=this._event;if(this.type()&&(this.type().indexOf("mouse")===0||this.type().indexOf("click")!=-1||this.type()=="contextmenu")){m.client=new MochiKit.DOM.Coordinates(0,0);if(e.clientX||e.clientY){m.client.x=(!e.clientX||e.clientX<0)?0:e.clientX;m.client.y=(!e.clientY||e.clientY<0)?0:e.clientY;}
m.page=new MochiKit.DOM.Coordinates(0,0);if(e.pageX||e.pageY){m.page.x=(!e.pageX||e.pageX<0)?0:e.pageX;m.page.y=(!e.pageY||e.pageY<0)?0:e.pageY;}else{var de=MochiKit.DOM._document.documentElement;var b=MochiKit.DOM._document.body;m.page.x=e.clientX+(de.scrollLeft||b.scrollLeft)-(de.clientLeft||b.clientLeft);m.page.y=e.clientY+(de.scrollTop||b.scrollTop)-(de.clientTop||b.clientTop);}
if(this.type()!="mousemove"){m.button={};m.button.left=false;m.button.right=false;m.button.middle=false;if(e.which){m.button.left=(e.which==1);m.button.middle=(e.which==2);m.button.right=(e.which==3);}else{m.button.left=!!(e.button&1);m.button.right=!!(e.button&2);m.button.middle=!!(e.button&4);}}
return m;}
return undefined;},stop:function(){this.stopPropagation();this.preventDefault();},stopPropagation:function(){if(this._event.stopPropagation){this._event.stopPropagation();}else{this._event.cancelBubble=true;}},preventDefault:function(){if(this._event.preventDefault){this._event.preventDefault();}else{this._event.returnValue=false;}},dispose:function(){delete this._src;this._src=null;delete this._event;this._event=null;}});MochiKit.Signal._specialMacKeys={3:"KEY_ENTER",63289:"KEY_NUM_PAD_CLEAR",63276:"KEY_PAGE_UP",63277:"KEY_PAGE_DOWN",63275:"KEY_END",63273:"KEY_HOME",63234:"KEY_ARROW_LEFT",63232:"KEY_ARROW_UP",63235:"KEY_ARROW_RIGHT",63233:"KEY_ARROW_DOWN",63302:"KEY_INSERT",63272:"KEY_DELETE"};for(i=63236;i<=63242;i++){MochiKit.Signal._specialMacKeys[i]="KEY_F"+(i-63236+1);}
MochiKit.Signal._specialKeys={8:"KEY_BACKSPACE",9:"KEY_TAB",12:"KEY_NUM_PAD_CLEAR",13:"KEY_ENTER",16:"KEY_SHIFT",17:"KEY_CTRL",18:"KEY_ALT",19:"KEY_PAUSE",20:"KEY_CAPS_LOCK",27:"KEY_ESCAPE",32:"KEY_SPACEBAR",33:"KEY_PAGE_UP",34:"KEY_PAGE_DOWN",35:"KEY_END",36:"KEY_HOME",37:"KEY_ARROW_LEFT",38:"KEY_ARROW_UP",39:"KEY_ARROW_RIGHT",40:"KEY_ARROW_DOWN",44:"KEY_PRINT_SCREEN",45:"KEY_INSERT",46:"KEY_DELETE",59:"KEY_SEMICOLON",91:"KEY_WINDOWS_LEFT",92:"KEY_WINDOWS_RIGHT",93:"KEY_SELECT",106:"KEY_NUM_PAD_ASTERISK",107:"KEY_NUM_PAD_PLUS_SIGN",109:"KEY_NUM_PAD_HYPHEN-MINUS",110:"KEY_NUM_PAD_FULL_STOP",111:"KEY_NUM_PAD_SOLIDUS",144:"KEY_NUM_LOCK",145:"KEY_SCROLL_LOCK",186:"KEY_SEMICOLON",187:"KEY_EQUALS_SIGN",188:"KEY_COMMA",189:"KEY_HYPHEN-MINUS",190:"KEY_FULL_STOP",191:"KEY_SOLIDUS",192:"KEY_GRAVE_ACCENT",219:"KEY_LEFT_SQUARE_BRACKET",220:"KEY_REVERSE_SOLIDUS",221:"KEY_RIGHT_SQUARE_BRACKET",222:"KEY_APOSTROPHE"};for(var i=48;i<=57;i++){MochiKit.Signal._specialKeys[i]="KEY_"+(i-48);}
for(i=65;i<=90;i++){MochiKit.Signal._specialKeys[i]="KEY_"+String.fromCharCode(i);}
for(i=96;i<=105;i++){MochiKit.Signal._specialKeys[i]="KEY_NUM_PAD_"+(i-96);}
for(i=112;i<=123;i++){MochiKit.Signal._specialKeys[i]="KEY_F"+(i-112+1);}
MochiKit.Base.update(MochiKit.Signal,{__repr__:function(){return"["+this.NAME+" "+this.VERSION+"]";},toString:function(){return this.__repr__();},_unloadCache:function(){var self=MochiKit.Signal;var _548=self._observers;for(var i=0;i<_548.length;i++){self._disconnect(_548[i]);}
delete self._observers;try{window.onload=undefined;}
catch(e){}
try{window.onunload=undefined;}
catch(e){}},_listener:function(src,func,obj,_549){var E=MochiKit.Signal.Event;if(!_549){return MochiKit.Base.bind(func,obj);}
obj=obj||src;if(typeof(func)=="string"){return function(_551){obj[func].apply(obj,[new E(src,_551)]);};}else{return function(_552){func.apply(obj,[new E(src,_552)]);};}},connect:function(src,sig,_554,_555){src=MochiKit.DOM.getElement(src);var self=MochiKit.Signal;if(typeof(sig)!="string"){throw new Error("'sig' must be a string");}
var obj=null;var func=null;if(typeof(_555)!="undefined"){obj=_554;func=_555;if(typeof(_555)=="string"){if(typeof(_554[_555])!="function"){throw new Error("'funcOrStr' must be a function on 'objOrFunc'");}}else{if(typeof(_555)!="function"){throw new Error("'funcOrStr' must be a function or string");}}}else{if(typeof(_554)!="function"){throw new Error("'objOrFunc' must be a function if 'funcOrStr' is not given");}else{func=_554;}}
if(typeof(obj)=="undefined"||obj===null){obj=src;}
var _556=!!(src.addEventListener||src.attachEvent);var _557=self._listener(src,func,obj,_556);if(src.addEventListener){src.addEventListener(sig.substr(2),_557,false);}else{if(src.attachEvent){src.attachEvent(sig,_557);}}
var _558=[src,sig,_557,_556,_554,_555];self._observers.push(_558);return _558;},_disconnect:function(_559){if(!_559[3]){return;}
var src=_559[0];var sig=_559[1];var _560=_559[2];if(src.removeEventListener){src.removeEventListener(sig.substr(2),_560,false);}else{if(src.detachEvent){src.detachEvent(sig,_560);}else{throw new Error("'src' must be a DOM element");}}},disconnect:function(_561){var self=MochiKit.Signal;var _562=self._observers;var m=MochiKit.Base;if(arguments.length>1){var src=MochiKit.DOM.getElement(arguments[0]);var sig=arguments[1];var obj=arguments[2];var func=arguments[3];for(var i=_562.length-1;i>=0;i--){var o=_562[i];if(o[0]===src&&o[1]===sig&&o[4]===obj&&o[5]===func){self._disconnect(o);_562.splice(i,1);return true;}}}else{var idx=m.findIdentical(_562,_561);if(idx>=0){self._disconnect(_561);_562.splice(idx,1);return true;}}
return false;},disconnectAll:function(src,sig){src=MochiKit.DOM.getElement(src);var m=MochiKit.Base;var _563=m.flattenArguments(m.extend(null,arguments,1));var self=MochiKit.Signal;var _564=self._disconnect;var _565=self._observers;if(_563.length===0){for(var i=_565.length-1;i>=0;i--){var _566=_565[i];if(_566[0]===src){_564(_566);_565.splice(i,1);}}}else{var sigs={};for(var i=0;i<_563.length;i++){sigs[_563[i]]=true;}
for(var i=_565.length-1;i>=0;i--){var _566=_565[i];if(_566[0]===src&&_566[1]in sigs){_564(_566);_565.splice(i,1);}}}},signal:function(src,sig){var _568=MochiKit.Signal._observers;src=MochiKit.DOM.getElement(src);var args=MochiKit.Base.extend(null,arguments,2);var _569=[];for(var i=0;i<_568.length;i++){var _570=_568[i];if(_570[0]===src&&_570[1]===sig){try{_570[2].apply(src,args);}
catch(e){_569.push(e);}}}
if(_569.length==1){throw _569[0];}else{if(_569.length>1){var e=new Error("Multiple errors thrown in handling 'sig', see errors property");e.errors=_569;throw e;}}}});MochiKit.Signal.EXPORT_OK=[];MochiKit.Signal.EXPORT=["connect","disconnect","signal","disconnectAll"];MochiKit.Signal.__new__=function(win){var m=MochiKit.Base;this._document=document;this._window=win;try{this.connect(window,"onunload",this._unloadCache);}
catch(e){}
this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};m.nameFunctions(this);};MochiKit.Signal.__new__(this);if(!MochiKit.__compat__){connect=MochiKit.Signal.connect;disconnect=MochiKit.Signal.disconnect;disconnectAll=MochiKit.Signal.disconnectAll;signal=MochiKit.Signal.signal;}
MochiKit.Base._exportSymbols(this,MochiKit.Signal);if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.Visual");dojo.require("MochiKit.Base");dojo.require("MochiKit.DOM");dojo.require("MochiKit.Color");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Base",[]);JSAN.use("MochiKit.DOM",[]);JSAN.use("MochiKit.Color",[]);}
try{if(typeof(MochiKit.Base)=="undefined"||typeof(MochiKit.DOM)=="undefined"||typeof(MochiKit.Color)=="undefined"){throw"";}}
catch(e){throw"MochiKit.Visual depends on MochiKit.Base, MochiKit.DOM and MochiKit.Color!";}
if(typeof(MochiKit.Visual)=="undefined"){MochiKit.Visual={};}
MochiKit.Visual.NAME="MochiKit.Visual";MochiKit.Visual.VERSION="1.3.1";MochiKit.Visual.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.Visual.toString=function(){return this.__repr__();};MochiKit.Visual._RoundCorners=function(e,_571){e=MochiKit.DOM.getElement(e);this._setOptions(_571);if(this.options.__unstable__wrapElement){e=this._doWrap(e);}
var _572=this.options.color;var C=MochiKit.Color.Color;if(this.options.color=="fromElement"){_572=C.fromBackground(e);}else{if(!(_572 instanceof C)){_572=C.fromString(_572);}}
this.isTransparent=(_572.asRGB().a<=0);var _574=this.options.bgColor;if(this.options.bgColor=="fromParent"){_574=C.fromBackground(e.offsetParent);}else{if(!(_574 instanceof C)){_574=C.fromString(_574);}}
this._roundCornersImpl(e,_572,_574);};MochiKit.Visual._RoundCorners.prototype={_doWrap:function(e){var _575=e.parentNode;var doc=MochiKit.DOM.currentDocument();if(typeof(doc.defaultView)=="undefined"||doc.defaultView===null){return e;}
var _576=doc.defaultView.getComputedStyle(e,null);if(typeof(_576)=="undefined"||_576===null){return e;}
var _577=MochiKit.DOM.DIV({"style":{display:"block",marginTop:_576.getPropertyValue("padding-top"),marginRight:_576.getPropertyValue("padding-right"),marginBottom:_576.getPropertyValue("padding-bottom"),marginLeft:_576.getPropertyValue("padding-left"),padding:"0px"}});_577.innerHTML=e.innerHTML;e.innerHTML="";e.appendChild(_577);return e;},_roundCornersImpl:function(e,_578,_579){if(this.options.border){this._renderBorder(e,_579);}
if(this._isTopRounded()){this._roundTopCorners(e,_578,_579);}
if(this._isBottomRounded()){this._roundBottomCorners(e,_578,_579);}},_renderBorder:function(el,_580){var _581="1px solid "+this._borderColor(_580);var _582="border-left: "+_581;var _583="border-right: "+_581;var _584="style='"+_582+";"+_583+"'";el.innerHTML="<div "+_584+">"+el.innerHTML+"</div>";},_roundTopCorners:function(el,_585,_586){var _587=this._createCorner(_586);for(var i=0;i<this.options.numSlices;i++){_587.appendChild(this._createCornerSlice(_585,_586,i,"top"));}
el.style.paddingTop=0;el.insertBefore(_587,el.firstChild);},_roundBottomCorners:function(el,_588,_589){var _590=this._createCorner(_589);for(var i=(this.options.numSlices-1);i>=0;i--){_590.appendChild(this._createCornerSlice(_588,_589,i,"bottom"));}
el.style.paddingBottom=0;el.appendChild(_590);},_createCorner:function(_591){var dom=MochiKit.DOM;return dom.DIV({style:{backgroundColor:_591.toString()}});},_createCornerSlice:function(_592,_593,n,_594){var _595=MochiKit.DOM.SPAN();var _596=_595.style;_596.backgroundColor=_592.toString();_596.display="block";_596.height="1px";_596.overflow="hidden";_596.fontSize="1px";var _597=this._borderColor(_592,_593);if(this.options.border&&n===0){_596.borderTopStyle="solid";_596.borderTopWidth="1px";_596.borderLeftWidth="0px";_596.borderRightWidth="0px";_596.borderBottomWidth="0px";_596.height="0px";_596.borderColor=_597.toString();}else{if(_597){_596.borderColor=_597.toString();_596.borderStyle="solid";_596.borderWidth="0px 1px";}}
if(!this.options.compact&&(n==(this.options.numSlices-1))){_596.height="2px";}
this._setMargin(_595,n,_594);this._setBorder(_595,n,_594);return _595;},_setOptions:function(_598){this.options={corners:"all",color:"fromElement",bgColor:"fromParent",blend:true,border:false,compact:false,__unstable__wrapElement:false};MochiKit.Base.update(this.options,_598);this.options.numSlices=(this.options.compact?2:4);},_whichSideTop:function(){var _599=this.options.corners;if(this._hasString(_599,"all","top")){return"";}
var _600=(_599.indexOf("tl")!=-1);var _601=(_599.indexOf("tr")!=-1);if(_600&&_601){return"";}
if(_600){return"left";}
if(_601){return"right";}
return"";},_whichSideBottom:function(){var _602=this.options.corners;if(this._hasString(_602,"all","bottom")){return"";}
var _603=(_602.indexOf("bl")!=-1);var _604=(_602.indexOf("br")!=-1);if(_603&&_604){return"";}
if(_603){return"left";}
if(_604){return"right";}
return"";},_borderColor:function(_605,_606){if(_605=="transparent"){return _606;}else{if(this.options.border){return this.options.border;}else{if(this.options.blend){return _606.blendedColor(_605);}}}
return"";},_setMargin:function(el,n,_607){var _608=this._marginSize(n)+"px";var _609=(_607=="top"?this._whichSideTop():this._whichSideBottom());var _610=el.style;if(_609=="left"){_610.marginLeft=_608;_610.marginRight="0px";}else{if(_609=="right"){_610.marginRight=_608;_610.marginLeft="0px";}else{_610.marginLeft=_608;_610.marginRight=_608;}}},_setBorder:function(el,n,_611){var _612=this._borderSize(n)+"px";var _613=(_611=="top"?this._whichSideTop():this._whichSideBottom());var _614=el.style;if(_613=="left"){_614.borderLeftWidth=_612;_614.borderRightWidth="0px";}else{if(_613=="right"){_614.borderRightWidth=_612;_614.borderLeftWidth="0px";}else{_614.borderLeftWidth=_612;_614.borderRightWidth=_612;}}},_marginSize:function(n){if(this.isTransparent){return 0;}
var o=this.options;if(o.compact&&o.blend){var _615=[1,0];return _615[n];}else{if(o.compact){var _616=[2,1];return _616[n];}else{if(o.blend){var _617=[3,2,1,0];return _617[n];}else{var _618=[5,3,2,1];return _618[n];}}}},_borderSize:function(n){var o=this.options;var _619;if(o.compact&&(o.blend||this.isTransparent)){return 1;}else{if(o.compact){_619=[1,0];}else{if(o.blend){_619=[2,1,1,1];}else{if(o.border){_619=[0,2,0,0];}else{if(this.isTransparent){_619=[5,3,2,1];}else{return 0;}}}}}
return _619[n];},_hasString:function(str){for(var i=1;i<arguments.length;i++){if(str.indexOf(arguments[i])!=-1){return true;}}
return false;},_isTopRounded:function(){return this._hasString(this.options.corners,"all","top","tl","tr");},_isBottomRounded:function(){return this._hasString(this.options.corners,"all","bottom","bl","br");},_hasSingleTextChild:function(el){return(el.childNodes.length==1&&el.childNodes[0].nodeType==3);}};MochiKit.Visual.roundElement=function(e,_620){new MochiKit.Visual._RoundCorners(e,_620);};MochiKit.Visual.roundClass=function(_621,_622,_623){var _624=MochiKit.DOM.getElementsByTagAndClassName(_621,_622);for(var i=0;i<_624.length;i++){MochiKit.Visual.roundElement(_624[i],_623);}};MochiKit.Visual.Color=MochiKit.Color.Color;MochiKit.Visual.getElementsComputedStyle=MochiKit.DOM.computedStyle;MochiKit.Visual.__new__=function(){var m=MochiKit.Base;m.nameFunctions(this);this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};};MochiKit.Visual.EXPORT=["roundElement","roundClass"];MochiKit.Visual.EXPORT_OK=[];MochiKit.Visual.__new__();MochiKit.Base._exportSymbols(this,MochiKit.Visual);if(typeof(MochiKit)=="undefined"){MochiKit={};}
if(typeof(MochiKit.MochiKit)=="undefined"){MochiKit.MochiKit={};}
MochiKit.MochiKit.NAME="MochiKit.MochiKit";MochiKit.MochiKit.VERSION="1.3.1";MochiKit.MochiKit.__repr__=function(){return"["+this.NAME+" "+this.VERSION+"]";};MochiKit.MochiKit.toString=function(){return this.__repr__();};MochiKit.MochiKit.SUBMODULES=["Base","Iter","Logging","DateTime","Format","Async","DOM","LoggingPane","Color","Signal","Visual"];if(typeof(JSAN)!="undefined"||typeof(dojo)!="undefined"){if(typeof(dojo)!="undefined"){dojo.provide("MochiKit.MochiKit");dojo.require("MochiKit.*");}
if(typeof(JSAN)!="undefined"){JSAN.use("MochiKit.Base",[]);JSAN.use("MochiKit.Iter",[]);JSAN.use("MochiKit.Logging",[]);JSAN.use("MochiKit.DateTime",[]);JSAN.use("MochiKit.Format",[]);JSAN.use("MochiKit.Async",[]);JSAN.use("MochiKit.DOM",[]);JSAN.use("MochiKit.LoggingPane",[]);JSAN.use("MochiKit.Color",[]);JSAN.use("MochiKit.Signal",[]);JSAN.use("MochiKit.Visual",[]);}
(function(){var _625=MochiKit.Base.extend;var self=MochiKit.MochiKit;var _626=self.SUBMODULES;var _627=[];var _628=[];var _629={};var i,k,m,all;for(i=0;i<_626.length;i++){m=MochiKit[_626[i]];_625(_627,m.EXPORT);_625(_628,m.EXPORT_OK);for(k in m.EXPORT_TAGS){_629[k]=_625(_629[k],m.EXPORT_TAGS[k]);}
all=m.EXPORT_TAGS[":all"];if(!all){all=_625(null,m.EXPORT,m.EXPORT_OK);}
var j;for(j=0;j<all.length;j++){k=all[j];self[k]=m[k];}}
self.EXPORT=_627;self.EXPORT_OK=_628;self.EXPORT_TAGS=_629;}());}else{if(typeof(MochiKit.__compat__)=="undefined"){MochiKit.__compat__=true;}
(function(){var _630=document.getElementsByTagName("script");var _631="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";var base=null;var _632=null;var _633={};var i;for(i=0;i<_630.length;i++){var src=_630[i].getAttribute("src");if(!src){continue;}
_633[src]=true;if(src.match(/MochiKit.js$/)){base=src.substring(0,src.lastIndexOf("MochiKit.js"));_632=_630[i];}}
if(base===null){return;}
var _634=MochiKit.MochiKit.SUBMODULES;for(var i=0;i<_634.length;i++){if(MochiKit[_634[i]]){continue;}
var uri=base+_634[i]+".js";if(uri in _633){continue;}
if(document.documentElement&&document.documentElement.namespaceURI==_631){var s=document.createElementNS(_631,"script");s.setAttribute("id","MochiKit_"+base+_634[i]);s.setAttribute("src",uri);s.setAttribute("type","application/x-javascript");_632.parentNode.appendChild(s);}else{document.write("<script src=\""+uri+"\" type=\"text/javascript\"></script>");}}})();}
namespace("contrib");if(!this.JSON){JSON=function(){function f(n){return n<10?'0'+n:n;}
Date.prototype.toJSON=function(){return this.getUTCFullYear()+'-'+
f(this.getUTCMonth()+1)+'-'+
f(this.getUTCDate())+'T'+
f(this.getUTCHours())+':'+
f(this.getUTCMinutes())+':'+
f(this.getUTCSeconds())+'Z';};var escapeable=/["\\\x00-\x1f\x7f-\x9f]/g,gap,indent,meta={'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'},rep;function quote(string){return escapeable.test(string)?'"'+string.replace(escapeable,function(a){var c=meta[a];if(typeof c==='string'){return c;}
c=a.charCodeAt();return'\\u00'+Math.floor(c/16).toString(16)+
(c%16).toString(16);})+'"':'"'+string+'"';}
function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==='object'&&typeof value.toJSON==='function'){value=value.toJSON(key);}
if(typeof rep==='function'){value=rep.call(holder,key,value);}
switch(typeof value){case'string':return quote(value);case'number':return isFinite(value)?String(value):'null';case'boolean':case'null':return String(value);case'object':if(!value){return'null';}
gap+=indent;partial=[];if(typeof value.length==='number'&&!(value.propertyIsEnumerable('length'))){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||'null';}
v=partial.length===0?'[]':gap?'[\n'+gap+partial.join(',\n'+gap)+'\n'+mind+']':'['+partial.join(',')+']';gap=mind;return v;}
if(typeof rep==='object'){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==='string'){v=str(k,value,rep);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}}else{for(k in value){v=str(k,value,rep);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}
v=partial.length===0?'{}':gap?'{\n'+gap+partial.join(',\n'+gap)+'\n'+mind+'}':'{'+partial.join(',')+'}';gap=mind;return v;}}
return{stringify:function(value,replacer,space){var i;gap='';indent='';if(space){if(typeof space==='number'){for(i=0;i<space;i+=1){indent+=' ';}}else if(typeof space==='string'){indent=space;}}
if(!replacer){rep=function(key,value){if(!Object.hasOwnProperty.call(this,key)){return undefined;}
return value;};}else if(typeof replacer==='function'||(typeof replacer==='object'&&typeof replacer.length==='number')){rep=replacer;}else{throw new Error('JSON.stringify');}
return str('',{'':value});},parse:function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==='object'){for(k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v;}else{delete value[k];}}}}
return reviver.call(holder,key,value);}
if(/^[\],:{}\s]*$/.test(text.replace(/\\["\\\/bfnrtu]/g,'@').replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,']').replace(/(?:^|:|,)(?:\s*\[)+/g,''))){j=eval('('+text+')');return typeof reviver==='function'?walk({'':j},''):j;}
throw new SyntaxError('JSON.parse');},quote:quote};}();}
namespace("userSmarts.lang");Array.prototype.swap=function(i,j){var arr=this;if(i>=0&&i<arr.length&&j>=0&&j<arr.length){var temp=arr[i];arr[i]=arr[j];arr[j]=temp;return true;}
return false;};Array.prototype.contains=function(obj){var arr=this;for(var i=0;i<arr.length;i++){if(arr[i]==obj||arr[i].toString()==obj.toString()){return true;}}
return false;};Array.prototype.clear=function(){var l=this.length;for(var i=0;i<l;i++){this.pop();}};if(!Array.prototype.indexOf){Array.prototype.indexOf=function(item,startIndex){var len=this.length;if(startIndex===null){startIndex=0;}else if(startIndex<0){startIndex+=len;if(startIndex<0){startIndex=0;}}
for(var i=startIndex;i<len;i++){var val=this[i]||this.charAt&&this.charAt(i);if(val==item){return i;}}
return-1;};}
if(!Array.prototype.remove){Array.prototype.remove=function(item){var result=null;var index=this.indexOf(item);if(index>=0&&index<this.length){result=this[index];this.splice(index,1);}
return result;};}
if(!Array.prototype.lastIndexOf){Array.prototype.lastIndexOf=function(item,startIndex){var len=this.length;if(startIndex===null||startIndex>=len){startIndex=len-1;}else if(startIndex<0){startIndex+=len;}
for(var i=startIndex;i>=0;i--){var val=this[i]||this.charAt&&this.charAt(i);if(val==item){return i;}}
return-1;};}
if(!Array.prototype.forEach){Array.prototype.forEach=function(func,thisVal){var len=this.length;for(var i=0;i<len;i++){func.call(thisVal,this[i]||this.charAt&&this.charAt(i),i,this);}};}
if(!Array.prototype.map){Array.prototype.map=function(func,thisVal){var len=this.length;var ret=[];for(var i=0;i<len;i++){ret[i]=func.call(thisVal,this[i]||this.charAt&&this.charAt(i),i,this);}
return ret;};}
if(!Array.prototype.filter){Array.prototype.filter=function(func,thisVal){var len=this.length;var ret=[];for(var i=0;i<len;i++){var val=this[i]||this.charAt&&this.charAt(i);if(func.call(thisVal,val,i,this)){ret[ret.length]=val;}}
return ret;};}
if(!Array.prototype.every){Array.prototype.every=function(func,thisVal){var len=this.length;for(var i=0;i<len;i++){if(!func.call(thisVal,this[i]||this.charAt&&this.charAt(i),i,this)){return false;}}
return true;};}
if(!Array.prototype.some){Array.prototype.some=function(func,thisVal){var len=this.length;for(var i=0;i<len;i++){if(func.call(thisVal,this[i]||this.charAt&&this.charAt(i),i,this)){return true;}}
return false;};}
if(!Array.prototype.subset){Array.prototype.subset=function(startIndex,endIndex){var arr=this;var len=arr.length;var result=[];if(startIndex>=0&&startIndex<len){endIndex=Math.min(len,endIndex);for(var c=startIndex;c<endIndex;++c){result.push(arr[c]);}}
return result;};}
if(!Array.prototype.reverse){Array.prototype.reverse=function(){var arr=this;var len=arr.length;var result=[];for(var i=len-1;i>=0;--i){result.push(arr[i]);}
return result;};}
if(!Array.prototype.clone){Array.prototype.clone=function(){var arr=this;var len=arr.length;var result=[];for(var i=0;i<len;++i){result.push(arr[i]);}
return result;};}
if(!Array.prototype.pushAll){Array.prototype.pushAll=function(arg){if(!arg||typeof(arg.push)=="undefined")return;var len=arg.length;for(var i=0;i<len;++i){this.push(arg[i]);}};}
if(!Array.prototype.peek){Array.prototype.peek=function(){var arr=this;if(arr.length>0){return arr[arr.length-1];}
return null;};}
Array.prototype.toString=function(sep){var output="";var arr=this;if(typeof(arr)!='undefined'){sep=sep||",";var len=arr.length;for(var i=0;i<len;i++){var value=null;if(typeof(arr[i]=='string')){value=arr[i];}else if(typeof(arr[i].toString)=='function'){value=arr[i].toString();}else{value=Coerce.toString(arr[i],null);}
if(value){output+=(i>0?sep:"")+value;}}}
return output;};namespace("userSmarts.lang");Function.prototype.PrototypeMarker="__PrOtOtYpEmArKeR__";Function.prototype.inheritsFrom=function(BaseClassOrObject){var instance=new BaseClassOrObject(this.PrototypeMarker);this.prototype=instance;$prototype=this.prototype;$class=this;return this;};isPrototype=function(args){return(args.length==1)&&(args[0]==Function.prototype.PrototypeMarker);};Function.prototype.newInstance=function(options){return new this(options);};findClass=function(className){if(typeof className!="string"){throw new InvalidArgumentException("Classname must be a string, not a "+typeof className);}
var parts=className.split(".");var ctx=self;var pkg;for(var i=0;i<parts.length;++i){var name=parts[i];pkg=ctx[name];if(!pkg){throw new ClassNotFoundException("ClassNotFoundException: "+className);}
ctx=pkg;}
return pkg;};newInstance=function(className,options){var cls=findClass(className);var obj=cls.newInstance(options);return obj;};namespace("userSmarts.lang");var Class={PrototypeMarker:"__PrOtOtYpEmArKeR__"};Class.DefaultConstructor=function(){};Class.create=function(superClass,ctorName){var context={ctorName:ctorName||"initialize"};superClass=superClass||Class.DefaultConstructor;$class=function(){if(!((arguments.length==1)&&(arguments[0]==Class.PrototypeMarker))){var ctor=context.prototype[context.ctorName];if(ctor!==null){var args=concat([superClass],arguments);ctor.apply(this,args);}}};if(superClass){$class.prototype=new superClass(Class.PrototypeMarker);}
$prototype=context.prototype=$class.prototype;return $class;};namespace("userSmarts.lang");namespace=function(ns){if(typeof ns!="string"){halt("invalid namespace declaration");}
var ctx=self[ns];if(!ctx){ctx=self;var parts=ns.split(".");var length=parts.length;for(var i=0;i<length;++i){var part=parts[i];var partNS=ctx[part];if(!partNS){partNS={EXPORT:[],EXPORT_OK:[]};ctx[part]=partNS;}
ctx=partNS;}}
$namespace=ctx;return ctx;};namespace("userSmarts.lang");if(!window.Node||!window.Node.ELEMENT_NODE){var Node={ELEMENT_NODE:1,ATTRIBUTE_NODE:2,TEXT_NODE:3,CDATA_SECTION_NODE:4,ENTITY_REFERENCE_NODE:5,ENTITY_NODE:6,PROCESSING_INSTRUCTION_NODE:7,COMMENT_NODE:8,DOCUMENT_NODE:9,DOCUMENT_TYPE_NODE:10,DOCUMENT_FRAGMENT_NODE:11,NOTATION_NODE:12};}
Node.instanceOf=function(node){return node&&typeof node.nodeType=="number";};namespace("userSmarts.lang");String.prototype.trim=function(){var str=this;str=str.replace(/^\s+/g,"");return str.replace(/\s+$/g,"");};String.prototype.startsWith=function(substr){var str=this;for(var i=0;i<substr.length;++i){if(i>=str.length){return false;}
if(str.charAt(i)!=substr.charAt(i)){return false;}}
return true;};String.prototype.endsWith=function(substr){var str=this;if(str.length<=substr.length)return false;var last=str.substring(str.length-substr.length,str.length);return last==substr;};String.prototype.toUpperCaseFirst=function(str){return str.substr(0,1).toUpperCase()+str.substr(1);};function roundDecimal(value,places){places=places||0;var mx="1";for(var mxc=0;mxc<places;++mxc){mx+="0";}
mx*=1;var result=Math.round(value*mx)/mx;return result;};if(!Date.prototype.isBefore){Date.prototype.isBefore=function(date){var result=false;var thisYear=this.getFullYear();if(thisYear<date.getFullYear()){result=true;}else if(thisYear>date.getFullYear()){result=false;}else{var thisMonth=this.getMonth();if(thisMonth<date.getMonth()){result=true;}else if(thisMonth>date.getMonth()){result=false;}else{var thisDay=this.getDate();if(thisDay<date.getDate()){result=true;}else if(thisDay>date.getDate()){result=false;}else{var hours=this.getHours();if(hours<date.getHours()){result=true;}else if(hours>date.getHours()){result=false;}else{var minutes=this.getMinutes();if(minutes<date.getMinutes()){result=true;}else if(minutes>date.getMinutes()){result=false;}}}}}
return result;};}
if(!Date.prototype.isAfter){Date.prototype.isAfter=function(date){var result=false;var thisYear=this.getFullYear();if(thisYear>date.getFullYear()){result=true;}else if(thisYear<date.getFullYear()){result=false;}else{var thisMonth=this.getMonth();if(thisMonth>date.getMonth()){result=true;}else if(thisMonth<date.getMonth()){result=false;}else{var thisDay=this.getDate();if(thisDay>date.getDate()){result=true;}else if(thisDay<date.getDate()){result=false;}else{var hours=this.getHours();if(hours>date.getHours()){result=true;}else if(hours<date.getHours()){result=false;}else{var minutes=this.getMinutes();if(minutes>date.getMinutes()){result=true;}else if(minutes<date.getMinutes()){result=false;}}}}}
return result;};}
namespace("userSmarts.lang");System={};System.getProperties=function(){if(!System.properties){System.properties=new Bean();}
return System.properties;};System.getRequestParameters=function(){if(!System.requestParameters){var queryString=location.search.substring(1,location.search.length);System.requestParameters=parseQueryString(location.search.substring(1,location.search.length));}
return System.requestParameters;}
System.setProperties=function(properties){System.properties=properties;};System.getProperty=function(key,def){return System.getProperties().getProperty(key,def);};System.setProperty=function(key,value){var result=System.getProperties().getProperty(key)||null;System.getProperties().setProperty(key,value);return result;};System.clearProperty=function(key){var result=System.getProperties().getProperty(key)||null;delete System.getProperties()[key];};System.disposables=[];System.addDisposable=function(obj){System.disposables.push(obj);};System.shutdown=function(){for(var i=0;i<System.disposables.length;++i){var obj=System.disposables[i];if(obj&&typeof(obj.dispose)=="function"){obj.dispose(true);}
delete System.disposables[i];}
if(System.properties instanceof Bean){System.properties.dispose();System.properties=null;}};namespace("userSmarts.lang");function RuntimeException(message,cause){if(isPrototype(arguments)){return;}
this.message=message;this.cause=cause;System.lastError=this;}
RuntimeException.inheritsFrom(Error);RuntimeException.prototype.toString=function(){return this.message.toString();};namespace("userSmarts.lang");function InstantiationException(message,cause){RuntimeException.apply(this,arguments);}
InstantiationException.inheritsFrom(RuntimeException);namespace("userSmarts.lang");function ClassNotFoundException(message,cause){RuntimeException.apply(this,arguments);}
ClassNotFoundException.inheritsFrom(RuntimeException);namespace("userSmarts.lang");function InvalidArgumentException(message,cause){if(isPrototype(arguments)){return;}
RuntimeException.apply(this,arguments);}
InvalidArgumentException.inheritsFrom(RuntimeException);namespace("userSmarts.lang");var DeferredAccessor=Class.create();$prototype.initialize=function(superClass,properties){properties=setdefault(properties,{wrappedPrototypes:[]});setdefault(this,properties);this.inspectInnerClass();this.innerClassObjListener=connect(this,"innerClassObj",this,this.onInnerClassObjReady);};$prototype.inspectInnerClass=function(){if(this.innerClassType){var proto;var protos=this.innerClassType.prototype;for(var k in protos){proto=protos[k];this.wrappedPrototypes[k]=proto;this[k]=function(){return null;}}}};$prototype.onInnerClassObjReady=function(event){if(this.innerClassObj){for(var k in this.wrappedPrototypes){this[k]=this.innerClassObj[k];}
disconnect(this.innerClassObjListener);}};$prototype.isInnerClassObjReady=function(){return!(this.innerClassObj==null);};$prototype.setInnerClassObj=function(value){this.innerClassObj=value;this.onInnerClassObjReady();};$prototype.callInnerClassObjMethod=function(methodName){var args=null;if(arguments.length>1){args=[];for(var i=0;i<arguments[i];++i){args.push(arguments[i]);}}
this.innerClassObj[methodName](args);};namespace("userSmarts.util");namespace("userSmarts.util");namespace("userSmarts.util");(function(){var ua=navigator.userAgent.toLowerCase();var isOpera=ua.indexOf("opera")>-1;var isIE=!isOpera&&ua.indexOf("msie")>-1;var isSafari=(/webkit|khtml/).test(ua);var isStrict=document.compatMode=="CSS1Compat";userSmarts.util.Browser={};var browser=userSmarts.util.Browser;setdefault(userSmarts.util.Browser,{userAgent:ua,isStrict:isStrict,isOpera:isOpera,isSafari:isSafari,isSafari3:isSafari&&ua.indexOf('webkit/5')!=-1,isBadSafari:!((new RegExp("[\u0150\u0170]","g")).test("\u0150")),isIE:isIE,isIE7:!isOpera&&ua.indexOf("msie 7")>-1,isGecko:!isSafari&&ua.indexOf("gecko")>-1,firefoxDate:/Gecko\/(\d{8})/i.exec(ua),isBorderBox:isIE&&!isStrict,isWindows:(ua.indexOf("windows")!=-1||ua.indexOf("win32")!=-1),isMac:(ua.indexOf("macintosh")!=-1||ua.indexOf("mac os x")!=-1),isAir:(ua.indexOf("adobeair")!=-1),isLinux:(ua.indexOf("linux")!=-1),isUnix:ua.indexOf("x11")!=-1,getViewWidth:function(arg){if(arg){return browser.getScrollWidth();}else{return browser.getClientWidth();}},getViewHeight:function(arg){if(arg){return browser.getScrollHeight();}else{return browser.getClientHeight();}},getScrollWidth:function(){var scrollWidth=0;if(!isStrict){scrollWidth=document.body.scrollWidth;}else{scrollWidth=document.documentElement.scrollWidth;}
return Math.max(scrollWidth,browser.getClientWidth());},getScrollHeight:function(){var scrollHeight=0;if(!isStrict){scrollHeight=document.body.scrollHeight;}else{scrollHeight=document.documentElement.scrollHeight;}
return Math.max(scrollHeight,browser.getClientHeight());},getClientWidth:function(){if(isIE){if(isStrict){return document.documentElement.clientWidth;}else{return document.body.clientWidth;}}else{return self.innerWidth;}},getClientHeight:function(){if(isIE){if(isStrict){return document.documentElement.clientHeight;}else{return document.body.clientHeight;}}else{return self.innerHeight;}}});})();namespace("userSmarts.util");PropertyChangeEvent=function(source,propertyName,oldValue,newValue,index){this.source=source;this.propertyName=propertyName;this.oldValue=oldValue;this.newValue=newValue;if(typeof index=="number"){this.index=index;}
this.id=Math.random();};PropertyChangeEvent.prototype.repr=function(){return"PropertyChangeEvent: "+this;};PropertyChangeEvent.prototype.dispose=function(){delete this.source;delete this.propertyName;delete this.oldValue;delete this.newValue;delete this.index;this.disposed=true;};PropertyChangeEvent.prototype.equals=function(event){if(event instanceof PropertyChangeEvent){return event.id==this.id;}
return false;};namespace("userSmarts.util");PropertyChangeSupport=function(properties){this.properties=[];this.sync=false;if(properties&&(properties.sync!==undefined)){this.sync=!!properties.sync;}};PropertyChangeSupport.queue=[];PropertyChangeSupport.prototype.addMessage=function(msg){PropertyChangeSupport.queue.push(msg);};PropertyChangeSupport.processQueue=function(){var queue=PropertyChangeSupport.queue;while(queue.length>0){var msg=queue.shift();var listeners=msg.listeners;var n=listeners.length;var event=msg.event;for(var i=0;i<n;++i){if(!listeners.disposed){listeners[i](event);}
listeners[i]=null;}
event.dispose();msg.event=null;msg.listeners=null;}};PropertyChangeSupport.prototype.addListener=function(listener,propertyName,test){if(!propertyName){return undefined;}
var subscribers=this.properties[propertyName];if(!subscribers){subscribers=[];this.properties[propertyName]=subscribers;}
var found=false;for(var i=0;i<subscribers.length;++i){if(subscribers[i].listener==listener){found=true;listener=subscribers[i].listener;break;}}
if(!found&&(typeof(listener)=='function')){subscribers.push({listener:listener,test:test});}
return listener;};PropertyChangeSupport.prototype.removeListener=function(listener,propertyName){if(!propertyName){return undefined;}
subscribers=this.properties[propertyName];if((subscribers)){for(var i=0;i<subscribers.length;++i){if(subscribers[i].listener==listener){subscribers.splice(i,1);return true;}}}};PropertyChangeSupport.prototype.firePropertyChange=function(source,propertyName,oldValue,newValue){var event=new PropertyChangeEvent(source,propertyName,oldValue,newValue);this.firePropertyChangeEvent(event);};PropertyChangeSupport.prototype.firePropertyChangeEvent=function(event){var listeners=[];var subscribers=this.properties[event.propertyName];if(subscribers){var length=subscribers.length;for(var i=0;i<length;++i){var test=subscribers[i].test;if((!(typeof(test)=='function')||test(event))&&(typeof(subscribers[i].listener)=='function')){listeners.push(subscribers[i].listener);}}}
subscribers=this.properties["*"];if(subscribers){var length=subscribers.length;for(var i=0;i<length;++i){var test=subscribers[i].test;if((!(typeof(test)=='function')||test(event))&&(typeof(subscribers[i].listener)=='function')){listeners.push(subscribers[i].listener);}}}
if(listeners.length>0){this.sendEvent(event,listeners);}};PropertyChangeSupport.prototype.sendEvent=function(event,listeners){this.addMessage({listeners:listeners,event:event});setTimeout(PropertyChangeSupport.processQueue);};namespace("userSmarts.util");function Bean(properties){if(isPrototype(arguments)){return;}
this.pcs=new PropertyChangeSupport(this);if(properties){properties=properties||{};this.setProperties(properties);}
this.beanListeners={};};Bean.prototype.dispose=function(deep){this.disposed=true;if(deep){for(var key in this){var value=this[key];if((value instanceof Object)&&(typeof value.dispose=="function")&&(!value.disposed)){value.dispose(deep);}}}};Bean.prototype.setProperty=function(propertyName,value,notify){var oldValue=this[propertyName];this[propertyName]=value;if(notify!==false){var event=new PropertyChangeEvent(this,propertyName,oldValue,value);signal(this,propertyName,event);signal(this,"*",event);this.pcs.firePropertyChangeEvent(event);}
return this;};Bean.prototype.setProperties=function(properties,notify){for(name in properties){if((typeof(name)=='string')&&(name!='extend')){value=properties[name];if(notify){this.setProperty(name,value);}else{this[name]=value;}}}
return this;};Bean.prototype.append=function(propertyName){var oldValue=this[propertyName];var newValue=oldValue;if(!oldValue){newValue=[];}else if(oldValue.push){newValue=oldValue;}else{newValue=[oldValue];}
for(var i=1;i<arguments.length;++i){newValue.push(arguments[i]);}
this.setProperty(propertyName,newValue);};Bean.prototype.touch=function(propertyName){this.setProperty(propertyName,this[propertyName]);};Bean.prototype.getProperty=function(propertyName,defaultValue){var result=defaultValue;if(typeof(this[propertyName]!='undefined')){result=this[propertyName];}
return result;};Bean.prototype.connect=function(property,thisPtrOrFunc,func){return connect(this,property,thisPtrOrFunc,func);};Bean.prototype.disconnect=function(handle){disconnect(handle);handle=null;};Bean.prototype.disconnectAll=function(){disconnectAll(this);};Bean.prototype.addChangeListener=function(listener,propertyName,test){this.pcs.addListener(listener,propertyName,test);};Bean.prototype.removeChangeListener=function(listener,propertyName){this.pcs.removeListener(listener,propertyName);};Bean.prototype.iter=function(){if(this.iterable){return iter(this[this.iterable]||[]);}else{return iter([]);}};function setp(obj,propertyName,value,notify){if(obj&&(typeof obj.setProperty=="function")){obj.setProperty(propertyName,value,notify);}else if(!(notify===false)){var oldValue=obj[propertyName];obj[propertyName]=value;var event=new PropertyChangeEvent(obj,propertyName,oldValue,value);signal(obj,propertyName,event);signal(obj,"*",event);}else{obj[propertyName]=value;}}
function setallp(obj,properties,notify){if(obj&&properties){for(name in properties){if((typeof(name)=='string')&&(name!='extend')){value=properties[name];setp(obj,name,value,notify);}}}};function getp(obj,propertyName,defaultValue){var result=defaultValue;if(obj&&(typeof obj.getProperty=="function")){result=obj.getProperty(propertyName);}else if(obj&&typeof(obj[propertyName]!='undefined')){result=obj[propertyName];}
return result;}
function appendp(obj,propertyName){var oldValue=obj[propertyName];var newValue=oldValue;if(!oldValue){newValue=[];}else if(oldValue.push){newValue=oldValue;}else{newValue=[oldValue];}
for(var i=2;i<arguments.length;++i){newValue.push(arguments[i]);}
setp(obj,propertyName,newValue);};function signalp(obj,propertyName,oldValue,newValue){var event=new PropertyChangeEvent(obj,propertyName,oldValue,newValue);signal(obj,propertyName,event);signal(obj,"*",event);}
namespace("userSmarts.util");function BeanPropertyBinding(bean,propertyName,properties){this.bean=bean||{};this.propertyName=propertyName;if(!properties||properties.useGettersSetters){var funcSuffix=propertyName.substring(0,1).toUpperCase()+
propertyName.substring(1,propertyName.length);this.getter=this.bean["get"+funcSuffix];this.setter=this.bean["set"+funcSuffix];}}
BeanPropertyBinding.prototype.getValue=function(){var value;if(this.bean){if(typeof(this.getter)=="function"){value=this.getter.call(this.bean);}else if(typeof this.bean.getProperty=="function"){value=this.bean.getProperty(this.propertyName);}else{value=this.bean[this.propertyName];}}
return value;};BeanPropertyBinding.prototype.setValue=function(value){if(typeof(this.setter)=="function"){value=this.setter.call(this.bean,value);this.bean.touch();}else if(typeof this.bean.setProperty=="function"){this.bean.setProperty(this.propertyName,value);}else{this.bean[this.propertyName]=value;}};BeanPropertyBinding.prototype.dispose=function(){this.bean=null;this.propertyName=null;};namespace("userSmarts.util");function BeanPropertyBinding2(bean,propertyName,properties){this.bean=bean||{};this.propertyName=propertyName;if(this.bean&&this.propertyName){this.listener=connect(this.bean,this.propertyName,this,this.onPropertyChange);if(!properties||properties.useGettersSetters){var funcSuffix=propertyName.substring(0,1).toUpperCase()+
propertyName.substring(1,propertyName.length);this.getter=this.bean["get"+funcSuffix];this.setter=this.bean["set"+funcSuffix];}}}
BeanPropertyBinding2.prototype.getValue=function(){var value;if(this.bean){if(typeof(this.getter)=="function"){value=this.getter.call(this.bean);}else if(typeof this.bean.getProperty=="function"){value=this.bean.getProperty(this.propertyName);}else{value=this.bean[this.propertyName];}}
return value;};BeanPropertyBinding2.prototype.setValue=function(value){if(typeof(this.setter)=="function"){value=this.setter.call(this.bean,value);}else if(typeof this.bean.setProperty=="function"){this.bean.setProperty(this.propertyName,value);}else{this.bean[this.propertyName]=value;}};BeanPropertyBinding2.prototype.onPropertyChange=function(event){setp(this,"beanPropertyModified",event.newValue);};BeanPropertyBinding2.prototype.dispose=function(){if(this.listener){disconnect(this.listener);delete this.bean;delete this.propertyName;}};namespace("userSmarts.util");function PropertyChangeListener(){Bean.apply(this,arguments);}
PropertyChangeListener.inheritsFrom(Bean);PropertyChangeListener.prototype.start=function(){if(this.bean&&typeof(this.bean.addChangeListener)=='function'){this.listener=bind(this.onPropertyChange,this);if(this.property&&typeof(this.property)=='string'){this.bean.addChangeListener(this.listener,this.property,this.sync);}}};PropertyChangeListener.prototype.stop=function(){if(this.bean&&typeof(this.bean.addChangeListener)=='function'&&this.listener){if(this.property&&typeof(this.property)=='string'){this.bean.removeChangeListener(this.listener,this.property);}else{this.bean.removeChangeListener(this.listener);}}};PropertyChangeListener.prototype.onPropertyChange=function(event){};namespace("userSmarts.util");function Format(){};Format.prototype.format=function(obj){};Format.prototype.parseObject=function(str){};function StringFormat(){};StringFormat.prototype.format=function(obj){return obj;};StringFormat.prototype.parseObject=function(text,out){if(out){out.valid=true;out.value=text;}
return text;};function IntegerFormat(params){setdefault(this,params);};IntegerFormat.prototype.format=function(obj){return obj+"";};IntegerFormat.prototype.parseObject=function(text,out){var value;var valid=true;if(isNaN(text)){value=this.defaultValue||-1;valid=false;}else{value=parseInt(text);}
if(out){out.value=value;out.valid=valid;}
return value;};function FloatFormat(){}
FloatFormat.prototype.format=function(obj){return obj+"";};FloatFormat.prototype.parseObject=function(text,out){var value=parseFloat(text);if(value)value*=1.0;if(out){out.value=value;out.valid=true;}
return value;};function BooleanFormat(){}
BooleanFormat.prototype.format=function(obj){return obj+"";};BooleanFormat.prototype.parseObject=function(text,out){var value=!(text=='false'||text===0||!text);if(out){out.value=value;out.valid=true;}
return value;};function DateFormat(){}
DateFormat.prototype.format=function(obj,iso){var result="";if(typeof(obj)=='string'){obj=this.parseObject(obj);}
if(obj&&typeof(obj.toUTCString)=="function"){if(iso){result=toISOTimestamp(obj,true);}else{result=obj.toUTCString();}}
return result;};DateFormat.prototype.parseObject=function(text,out){var value=null;if(text.indexOf("T")>0){value=isoTimestamp(text);}else{value=Date.parse(text);}
if(out){out.value=value;out.valid=!!value;}
return value;};function HTMLFormat(){}
HTMLFormat.prototype.format=function(obj){if(typeof(obj.appendChild)=="function"){var div=DIV();div.appendChild(obj);return div.innerHTML;}
return null;};HTMLFormat.prototype.parseObject=function(text,out){var div=(out&&typeof(out.appendChild)=="function")?out:DIV();if(typeof(text.length)!="undefined"){for(var t=0;t<text.length;++t){if(typeof(text[t])=="string"||typeof(text[t])=="number"){div.appendChild(document.createTextNode(text[t]+""));}else if(typeof(text[t].appendChild)=="function"){div.appendChild(text[t]);}}}else{if(typeof(text.appendChild)=="function"){div.appendChild(text);}else{div.innerHTML=text;}}
return div;};function GeoRSS(){this.ns="http://www.georss.org/georss";};GeoRSS.prototype.format=function(obj,output){var result=null;if(obj instanceof Geometry){if(isXmlNode(output)&&obj instanceof Geometry){var nodeName=null;var type=obj.getType().toLowerCase().trim();if(type=="box"||type=="point"||type=="line"||type=="polygon"){nodeName=type;}
if(nodeName){var coordStr="";var points=obj.getPoints();for(var c=0;c<points.length;++c){if(c>0)coordStr+=" ";coordStr+=points[c].x+" "+points[c].y;}
var doc=output.ownerDocument;var node=createElementNS(this.ns,nodeName,doc);output.appendChild(node);node.appendChild(doc.createTextNode(coordStr));result=node;}}else if(output&&obj instanceof Geometry){var type=obj.getType().toLowerCase().trim();if(type=="box"||type=="point"||type=="line"||type=="polygon"){nodeName=type;}
if(nodeName){var coordStr="";var points=obj.getPoints();for(var c=0;c<points.length;++c){if(c>0)coordStr+=" ";coordStr+=points[c].x+" "+points[c].y;}
output[nodeName]=coordStr;result=coordStr;}}}
return result;};GeoRSS.prototype.parseObject=function(input){var result=null;if(isXmlNode(input)){var box=this.getElementsByTagNameNS(input,this.ns,"box");var point=this.getElementsByTagNameNS(input,this.ns,"point");var line=this.getElementsByTagNameNS(input,this.ns,"line");var polygon=this.getElementsByTagNameNS(input,this.ns,"polygon");var georssnode=null;var type=null;if(box.length>0){georssnode=box[0];type="Box";}else if(point.length>0){georssnode=point[0];type="Point";}else if(line.length>0){georssnode=line[0];type="Line";}else if(polygon.length>0){georssnode=polygon[0];type="Polygon";}
if(georssnode){var coordStr=scrapeText(georssnode).trim();var coords=coordStr.split(/\s+/);if((coords.length%2)!=0){return result;}
var geometry=new Geometry(type);for(var c=0;c<coords.length;c+=2){geometry.addPoint(new Point(Coerce.toDouble(coords[c]),Coerce.toDouble(coords[c+1])));}
result=geometry;}}else if(input){var box=input.box;var point=input.point;var line=input.line;var polygon=input.polygon;var coordStr=null;var type=null;if(box){coordStr=box;type="Box";}else if(point){coordStr=point;type="Point";}else if(line){coordStr=line;type="Line";}else if(polygon){coordStr=polygon;type="Polygon";}
if(coordStr){var coords=coordStr.split(/\s+/);if((coords.length%2)!=0){return result;}
var geometry=new Geometry(type);for(var c=0;c<coords.length;c+=2){geometry.addPoint(new Point(Coerce.toDouble(coords[c]),Coerce.toDouble(coords[c+1])));}
result=geometry;}}
return result;};GeoRSS.prototype.getElementsByTagNameNS=function(node,uri,name){var elements=[];if(node.getElementsByTagNameNS){elements=node.getElementsByTagNameNS(uri,name);}else{var allNodes=node.getElementsByTagName("*");var potentialNode,fullName;for(var i=0;i<allNodes.length;++i){potentialNode=allNodes[i];fullName=(potentialNode.prefix)?(potentialNode.prefix+":"+name):name;if((name=="*")||(fullName==potentialNode.nodeName)){if((uri=="*")||(uri==potentialNode.namespaceURI)){elements.push(potentialNode);}}}}
return elements;};namespace("userSmarts.util");var XSDNS="http://www.w3.org/2001/XMLSchema#";function DatatypeRegistry(){this.types={};}
DatatypeRegistry.prototype.addType=function(type){if(typeof(type.uri)=='string'){var uri=type.uri;this.types[uri]=type;}else if(typeof(type.uri)=='object'){var pref=type.uri.prefix;var uri=type.uri.namespaceURI;var local=type.uri.localPart;if(pref){this.types[pref+':'+local]=type;}
if(uri){this.types[uri+local]=type;}}};DatatypeRegistry.prototype.getType=function(uri){return this.types[uri];};datatypes=new DatatypeRegistry();datatypes.addType({uri:{prefix:'xsd',namespaceURI:XSDNS,localPart:"integer"},facets:{},isAtomic:true,format:new IntegerFormat()});datatypes.addType({uri:{prefix:'xsd',namespaceURI:XSDNS,localPart:"float"},facets:{},isAtomic:true,format:new FloatFormat()});datatypes.addType({uri:{prefix:'xsd',namespaceURI:XSDNS,localPart:"string"},facets:{},isAtomic:true,format:new StringFormat()});datatypes.addType({uri:{prefix:'xsd',namespaceURI:XSDNS,localPart:"boolean"},facets:{enumeration:[{label:'true',value:true},{label:'false',value:false}]},isAtomic:true,isList:true,format:new BooleanFormat()});namespace("userSmarts.util");function ExpressionFactory(){}
ExpressionFactory.prototype.createValueExpression=function(expression,expectedType){var result;var nodes=this.compile(expression);if(nodes.length===0){result=new ConstantExpression();}
if(nodes.length===1){result=nodes[0];}else{result=new CompositeExpression(nodes);}
return result;};ExpressionFactory.prototype.compile=function(src){var parser=new ExpressionParser();if(typeof src=="string"){parser.parse(src);}else{throw new RuntimeException("Invalid Expression: "+src+", expected 'string' but got '"+typeof(src)+"'");}
return parser.expressions;};function Expression(expr){this.expr=expr;}
Expression.prototype.getValue=function(context){context=context||this.context||this;var expr="("+this.expr+");";with(context){var value=eval(expr);}
return value;};Expression.prototype.setValue=function(value,context){var context=context||this.context||this;var expr=this.expr+" = value;";with(context){eval(expr);}
this.touchBean(context);};Expression.prototype.checkBean=function(context){context=context||this.context||this;var splitter=/(.*)\.(\w+)/;var match=splitter.exec(this.expr);if(match){var ownerExpr=match[1];var property=match[2];var expr=new Expression(ownerExpr);var bean=expr.getValue(context);if(bean&&typeof(bean.addChangeListener)=='function'){return{bean:bean,property:property};}else{return false;}}};Expression.prototype.touchBean=function(context){context=context||this.context||this;var result=this.checkBean(context);if(result){result.bean.touch(result.property);}};Expression.prototype.addChangeListener=function(listener,context){var result=null;logDebug("Adding listener, context = "+context+", context.data = "+context.data);context=context||this.context||this;var check=this.checkBean(context);logDebug("check: "+check);if(check){if(check.bean.addChangeListener){check.bean.addChangeListener(listener,check.property);result=listener;}}
return result;}
Expression.prototype.removeChangeListener=function(listener,context){context=context||this.context||this;var result=this.checkBean(context);if(result){result.bean.removeChangeListener(listener,result.property);}}
Expression.prototype.toString=function(){return"[expression: "+this.expr+"]";}
function CompositeExpression(expressions){this.expressions=expressions;}
CompositeExpression.prototype.getValue=function(context){var context=context||this.context||this;var values=[];for(var i=0;i<this.expressions.length;++i){values.push(this.expressions[i].getValue(context));}
return values.join("");}
CompositeExpression.prototype.toString=function(){return"[composite expression: "+repr(this.expressions)+"]";}
function ConstantExpression(expr){this.expr=expr;}
ConstantExpression.prototype.getValue=function(){return this.expr;};ConstantExpression.prototype.toString=function(){return"[const epxression: "+this.expr+"]";};function ExpressionParser(){this.expressions=[];}
ExpressionParser.prototype.TEXT_STATE=1;ExpressionParser.prototype.EXPR_STATE=2;ExpressionParser.prototype.BGN_EXPR_EVENT="${";ExpressionParser.prototype.END_EXPR_EVENT="}";ExpressionParser.prototype.EOF_EVENT="EOF";ExpressionParser.prototype.parse=function(input){this.state=this.TEXT_STATE;this.input=input;this.next=0;this.last=input.length-1;this.mark=0;this.expressions=[];var done=false;while(!done){var event=this.advance();if(this.state==this.TEXT_STATE){if(event==this.BGN_EXPR_EVENT){this.endText();this.beginExpression();}else if(event==this.EOF_EVENT){this.endText();done=true;break;}else if(event==this.END_EXPR_EVENT){}else{this.parseError("");}}else{if(event==this.END_EXPR_EVENT){this.endExpression();}else{this.parseError();}}}};ExpressionParser.prototype.endText=function(){var buffer;if(this.event==this.EOF_EVENT&&(this.mark<=this.last)){buffer=this.input.substring(this.mark);}else if(this.event==this.BGN_EXPR_EVENT){buffer=this.input.substring(this.mark,(this.next-2));}
if(buffer){this.expressions.push(new ConstantExpression(buffer));}}
ExpressionParser.prototype.beginExpression=function(){this.mark=this.next;this.state=this.EXPR_STATE;};ExpressionParser.prototype.endExpression=function(){var buffer=this.input.substring(this.mark,this.next-1);this.mark=this.next;this.state=this.TEXT_STATE;if(buffer&&buffer.length>0){this.expressions.push(new Expression(buffer));}};ExpressionParser.prototype.parseError=function(){throw"Parse Error";};ExpressionParser.prototype.advance=function(){var done=false;var event;while(!done){if(this.next>this.last){done=true;event=this.EOF_EVENT;}else if(this.input.charAt(this.next)=='$'&&this.peek(1)=='{'){this.next+=2;done=true;event=this.BGN_EXPR_EVENT;}else if(this.input.charAt(this.next)=='}'){++this.next;done=true;event=this.END_EXPR_EVENT;}else{++this.next;}}
this.event=event;return event;};ExpressionParser.prototype.peek=function(count){var pos=this.next+count;if(pos<=this.last){return this.input.charAt(pos);}else{return null;}}
namespace("userSmarts.util");function QName(namespaceURI,localPart,prefix){if(arguments.length>1){this.namespaceURI=namespaceURI;this.localPart=localPart;this.prefix=prefix;}else{this.localPart=arguments[0];}}
QName.prototype.toString=function(){if(this.namespaceURI){return"{"+this.namespaceURI+"}"+this.localPart;}else{return this.localPart;}};QName.valueOf=function(value){if(typeof(value)=='string'){var regex=/\{([^}]*)\}(\w+)/;var match=regex.exec(value);if(match){return new QName(match[1],match[2],"");}}else if(typeof(value)=='object'&&(value.nodeType)){if(value.nodeType==Node.ELEMENT_NODE){if(value.getAttribute("qname")){return QName.valueOf(value.getAttribute("qname"));}else{return new QName(value.namespaceURI,value.localName||value.baseName,value.prefix);}}else if(value.nodeType==Node.ATTRIBUTE_NODE){return new QName(value.namespaceURI,(value.localName||value.baseName||value.name),value.prefix);}}};QName.prototype.equals=function(other){var result=(other instanceof QName)&&(other.namespaceURI==this.namespaceURI)&&(other.localPart==this.localPart);return result;};namespace("userSmarts.util");function StateChart(properties){if(isPrototype(arguments)){return;}
Bean.call(this,properties);if(!this.states){this.states=[];}
if(!this.startState){this.startState=this.states[0];}}
StateChart.inheritsFrom(Bean);StateChart.prototype.addState=function(properties){var s=new State(properties);this.append("states",s);return s;};StateChart.prototype.addFinalState=function(properties){return this.addState(update(properties,{"final":true}));};StateChart.prototype.getState=function(id){var state;if(typeof id=="string"){for(var i=0;i<this.states.length;++i){if(this.states[i].id==id){state=this.states[i];break;}}}else if(instanceOf(id,State)){state=id;}
return state;};StateChart.prototype.getStartState=function(){return this.getState(this.startState);};function StateChartSession(properties){if(isPrototype(arguments)){return;}
Bean.call(this,properties);this.setProperty("status","CREATED");}
StateChartSession.inheritsFrom(Bean);StateChartSession.prototype.start=function(){this.setProperty("status","ACTIVE");this.currentState=this.stateChart.getStartState();if(this.currentState&&(typeof this.currentState.enter=="function")){this.doEnter(this.currentState);}else{logError("Error entering startState");}};StateChartSession.prototype.signal=function(sig){if(this.status!="ACTIVE"){return;}
if(typeof(sig)=='string'){sig={id:sig};}
this.lastSignal=sig;var state=this.currentState;var transitions=state.transitions;for(var i=0;i<transitions.length;++i){var t=transitions[i];if(t.matches(this)){var target=t.getTargetState(this);if(!target){alert("transition.to: "+t.to);}
this.doExit(state);t.execute(this);this.currentState=target;this.doEnter(target);if(target["final"]===true){this.setProperty("status","ENDED");}
break;}}};StateChartSession.prototype.doEnter=function(state){state.enter(this);};StateChartSession.prototype.doExit=function(state){state.exit(this);};function State(properties){if(isPrototype(arguments)){return;}
Bean.call(this,properties);if(!this.onentry){this.onentry=[];}
if(!this.onexit){this.onexit=[];}
if(!this.transitions){this.transitions=[];}}
State.inheritsFrom(Bean);State.prototype.signal=function(session,signal){};State.prototype.enter=function(session){if(this.onentry){if(this.onentry.push){forEach(this.onentry,function(action){try{action(session);}catch(e){logError(e.message);}});}else{this.onentry(session);}}};State.prototype.exit=function(session){forEach(this.onexit,function(action){action(session);});};State.prototype.addTransition=function(on,to){var t=new Transition({to:to,on:on});this.append("transitions",t);return t;};function Transition(properties){if(isPrototype(arguments)){return;}
Bean.call(this,properties);}
Transition.inheritsFrom(Bean);Transition.prototype["@beaninfo"]={description:"This bean does blah!",properties:{},methods:{},events:{}};Transition.prototype.getTargetState=function(session){return session.stateChart.getState(this.to);};Transition.prototype.matches=function(session){var result=(session.lastSignal.id==this.on);var conditions=this.conditions;if(!(conditions instanceof Array)){this.conditions=[];if(conditions){this.conditions.push(conditions);}
conditions=this.conditions;}
for(var i=0;i<conditions.length&&result;++i){var condition=conditions[i];if(typeof condition=='function'){result=condition(session);}}
return result;};Transition.prototype.execute=function(session){};namespace("userSmarts.util");namespace("userSmarts.util");$namespace.Color=Class.create(Bean);$prototype.initialize=function(superClass,properties){properties=setdefault(properties,{r:0.0,g:0.0,b:0.0,a:1.0});superClass.call(this,properties);};$prototype.getRed=function(){return this.r;};$prototype.getGreen=function(){return this.g;};$prototype.getBlue=function(){return this.b;};$prototype.getAlpha=function(){return this.a;};$prototype.equals=function(arg){var result=false;var color=userSmarts.util.Color.valueOf(arg);if(color){result=color.r==this.r&&color.g==this.g&&color.b==this.b;if(this.a!=undefined){if(color.a!=undefined){result=result&&color.a==this.a;}else{result=false;}}}
return result;};$prototype.toString=function(){var str=this.r+" "+this.g+" "+this.b;if(this.a!=undefined){str+=" "+this.a;}
return str;};$prototype.toHex=function(){var str="#"+this.componentToHex(this.r)+
this.componentToHex(this.g)+
this.componentToHex(this.b);return str;};$prototype.componentToHex=function(value){if(value==null||isNaN(value))return"00";value*=1.0;value=Math.min(value,255.0);value=Math.max(value,0.0);if(value==0.0)return"00";value=Math.round(255.0/value);if(!this.hexArr){this.hexArr=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"];}
var firstChar=this.hexArr[((N-N%16)/16)];var secondChar=this.hexArr[(N%16)];return firstChar+secondChar;};$namespace.Color.valueOf=function(cstr){if(!cstr)return null;if(cstr instanceof userSmarts.util.Color)return cstr;var components=null;if(typeof(cstr)=='string'){components=cstr.split(" ");}else if(typeof(cstr.push)=='function'){components=cstr;}else{return null;}
if(components.length<3)return null;var r=components[0]*1.0;var g=components[1]*1.0;var b=components[2]*1.0;var a=1.0;if(components.length>=4){a=components[3]*1.0;}
return new userSmarts.util.Color({r:r,g:g,b:b});};userSmarts.util.Colors={};userSmarts.util.Colors.RED=new userSmarts.util.Color({r:1.0});userSmarts.util.Colors.BLUE=new userSmarts.util.Color({b:1.0});userSmarts.util.Colors.GREEN=new userSmarts.util.Color({g:1.0});userSmarts.util.Colors.BLACK=new userSmarts.util.Color();userSmarts.util.Colors.WHITE=new userSmarts.util.Color({r:1.0,g:1.0,b:1.0});userSmarts.util.Colors.YELLOW=new userSmarts.util.Color({r:1.0,g:1.0});userSmarts.util.Colors.CYAN=new userSmarts.util.Color({g:1.0,b:1.0});userSmarts.util.Colors.MAGENTA=new userSmarts.util.Color({r:1.0,b:1.0});userSmarts.util.Colors.RED_HALF_ALPHA=new userSmarts.util.Color({r:1.0,a:0.5});userSmarts.util.Colors.BLUE_HALF_ALPHA=new userSmarts.util.Color({b:1.0,a:0.5});userSmarts.util.Colors.GREEN_HALF_ALPHA=new userSmarts.util.Color({g:1.0,a:0.5});userSmarts.util.Colors.BLACK_HALF_ALPHA=new userSmarts.util.Color({a:0.5});userSmarts.util.Colors.WHITE_HALF_ALPHA=new userSmarts.util.Color({r:1.0,g:1.0,b:1.0,a:0.5});userSmarts.util.Colors.YELLOW_HALF_ALPHA=new userSmarts.util.Color({r:1.0,g:1.0,a:0.5});userSmarts.util.Colors.CYAN_HALF_ALPHA=new userSmarts.util.Color({g:1.0,b:1.0,a:0.5});userSmarts.util.Colors.MAGENTA_HALF_ALPHA=new userSmarts.util.Color({r:1.0,b:1.0,a:0.5});namespace("userSmarts.util");function Coerce(){};Coerce.toInteger=function(arg,fallback){var result=0;if(fallback!=undefined)result=fallback;if(arg!=undefined&&arg!=null){var type=typeof(arg);if(type=='number'){result=arg*1;}else if(type=='string'){var num=parseInt(arg);if(!isNaN(num)){result=num;}}else if(type=="boolean"){result=arg?1:0;}}
return result;};Coerce.toDouble=function(arg,fallback){var result=0.0;if(fallback!=undefined)result=fallback;if(arg!=undefined&&arg!=null){var type=typeof(arg);if(type=='number'){result=arg*1.0;}else if(type=='string'){var num=parseFloat(arg);if(!isNaN(num)){result=num*1.0;}}else if(type=="boolean"){result=arg?1.0:0.0;}}
return result;};Coerce.toBoolean=function(arg,fallback){var result=false;if(fallback!=undefined)result=fallback;if(arg!=undefined&&arg!=null){var type=typeof(arg);if(type=='boolean'){result=arg;}else if(type=="number"){result=(arg>0);}else if(type=='string'){var num=Coerce.toInteger(arg,null);if(num){result=Coerce.toBoolean(num,fallback);}else{result=(arg.toLowerCase()=="true")||(arg.toLowerCase()=="yes");}}}
return result;};Coerce.toString=function(arg,fallback){var result="";if(fallback!=undefined)result=fallback;if(arg!=undefined&&arg!=null){var type=typeof(arg);if(type=="string"){result=arg;}else if(type=="number"||type=="boolean"){result=arg+"";}else if(isXmlNode(arg)){result=serializeNode(arg);}else if(typeof(arg.toString)=="function"){result=arg.toString();}}
return result;};Coerce.toJSON=function(arg,fallback){var result=fallback;if(arg!=undefined&&arg!=null){if(typeof(arg)=="object"){result=serializeJSON(arg);}}
return result;};Coerce.toType=function(arg,type,fallback){var result=fallback;if(arg!=null&&arg!=undefined&&type){type=type.toLowerCase().trim();if(type=="string"){result=Coerce.toString(arg,fallback);}else if(type=="number"){result=Coerce.toInt(arg,fallback);}else if(type=='boolean'){result=Coerce.toBoolean(arg,fallback);}else if(type=="json"){result=Coerce.toJSON(arg,fallback);}}
return result;};namespace("userSmarts.util");function DOMUtils(){};DOMUtils.newDocument=function(rootName,namespaceURI){var doc=createXMLDocument(rootName,namespaceURI,null);return doc;};DOMUtils.getParent=function(element){if(element&&isXmlNode(element)){return element.parentNode;}};DOMUtils.getChild=function(parent,childName){var node=null;if(parent&&isXmlNode(parent)){childName=childName.toLowerCase();var ignorePrefix=childName.indexOf(":")<0;var name;var prefixedName;var children=parent.childNodes;for(var i=0;i<children.length;++i){name=DOMUtils.getName(children[i],ignorePrefix);if(name)name=name.toLowerCase();if(childName==name){node=children[i];break;}}}
return node;};DOMUtils.getChildNS=function(parent,namespaceURI,childName){var node=null;if(parent&&isXmlNode(parent)){childName=childName.toLowerCase();var ignorePrefix=childName.indexOf(":")<0;var name;var children=parent.childNodes;for(var i=0;i<children.length;++i){name=DOMUtils.getName(children[i],ignorePrefix);if(name)name=name.toLowerCase();if(childName==name){node=children[i];break;}}}
return node;};DOMUtils.getChildText=function(parent,childName,fallback){var result=fallback;var node=DOMUtils.getChild(parent,childName);if(node){result=scrapeText(node);}
return result;};DOMUtils.getChildTextNS=function(parent,namespaceURI,childName,fallback){var result=fallback;var node=DOMUtils.getChildNS(parent,namespaceURI,childName);if(node){result=scrapeText(node);}
return result;};DOMUtils.getDescendant=function(parent,descendantName){var node;if(parent&&isXmlNode(parent)){var nodes=parent.getElementsByTagName(descendantName);if(nodes&&nodes.length>0){node=nodes[0];}}
return node;};DOMUtils.getChildren=function(parent,childName){var nodes=[];if(parent&&isXmlNode(parent)){var ignorePrefix=false;if(childName){childName=childName.toLowerCase();ignorePrefix=childName.indexOf(":")<0;}
var name;var children=parent.childNodes;for(var i=0;i<children.length;++i){if(childName){name=DOMUtils.getName(children[i],ignorePrefix);if(name)name=name.toLowerCase();if(childName==name){nodes.push(children[i]);}}else{nodes.push(children[i]);}}}
return nodes;};DOMUtils.getChildrenNS=function(parent,namespaceURI,childName){var nodes=[];if(parent&&isXmlNode(parent)){childName=childName.toLowerCase();var ignorePrefix=childName.indexOf(":")<0;var name;var children=parent.childNodes;for(var i=0;i<children.length;++i){name=DOMUtils.getName(children[i],ignorePrefix);if(name)name=name.toLowerCase();if(name==childName){nodes.push(children[i]);}}}
return nodes;};DOMUtils.getDescendants=function(parent,descendantName){var nodes=[];if(parent&&isXmlNode(parent)){var descs=parent.getElementsByTagName(descendantName);if(descs&&desc.length>=0){nodes=descs;}}
return nodes;};DOMUtils.getFirstChildOfType=function(parent,type){var node;if(parent&&isXmlNode(parent)){var children=parent.childNodes;for(var i=0;i<children.length;++i){if(children[i].nodeType==type){node=children[i];break;}}}
return node;};DOMUtils.isLeafNode=function(node){var result=(DOMUtils.getFirstChildOfType(node,1)!=null);return result;};DOMUtils.getName=function(node,ignorePrefixes){var result=null;if(isXmlNode(node)){result=node.localName||node.tagName;}else if(typeof(node.style)!="undefined"){result=node.localName||node.nodeName;}
if(result&&ignorePrefixes===true){var idx=result.lastIndexOf(":");if(idx>0){result=result.substring(idx+1,result.length);}}
return result;};DOMUtils.getAttributes=function(node){var results={};if(node.nodeType&&node.nodeType==1){var attribute;var attributes=node.attributes;for(var a=0;a<attributes.length;++a){attribute=attributes.item(a);results[DOMUtils.getName(attribute)]=scrapeText(attribute);}}
return results;};DOMUtils.getAttribute=function(node,attrName){return getNodeAttribute(node,attrName);};DOMUtils.setAttribute=function(node,attrName,value){setNodeAttribute(node,attrName,value);};DOMUtils.toString=function(node){if(node&&isXmlNode(node)){return serializeNode(node);}else{return"error : node is not an xml node";}};DOMUtils.outerHTML=function(node){var result="";if(typeof(node.appendChild)!="undefined"){if(typeof(node.outerHTML)=="undefined"){var tagName=DOMUtils.getName(node,true).toLowerCase();result="<"+tagName;var attr;for(i=0;i<node.attributes.length;i++){attr=node.attributes[i];if(attr.specified){result+=" "+attr.nodeName+"='"+attr.nodeValue+"'"}}
result+=">"+(node.innerHTML||"")+"</"+tagName+">";}else{result=node.outerHTML;}}else if(typeof(node.push)!="undefined"){for(var i=0;i<node.length;++i){result+=DOMUtils.outerHTML(node[i]);}}
return result;};namespace("userSmarts.util");$namespace.DragHandler=Class.create();$prototype.initialize=function(properties){properties=setdefault(properties,{lockX:false,lockY:false,constrainToParent:false,cursor:"move"});setdefault(this,properties);this.move=null;this.down=null;this.offset=null;this.target=null;this.listener=null;this.listeners=[];};$prototype.connect=function(listener,listenerFunc){if(listenerFunc){this.listeners.push(connect(this,"modified",listener,listenerFunc));}else{this.listeners.push(connect(this,"modified",listener));}};$prototype.init=function(elem,hook){this.target=elem;var el=(hook)?hook:elem;if(el){el.style.cursor=this.cursor;this.listener=connect(el,'onmousedown',this,this.start);}};$prototype.dispose=function(){if(this.listener){disconnect(this.listener);}
for(var l=0;l<this.listeners.length;++l){disconnect(this.listeners[l]);}};$prototype.start=function(e){e.stop();if(!this.target)return;if(this.move)return;var pos=elementPosition(this.target);this.offset=this.diff(e.mouse().page,pos);this.move=connect(document,'onmousemove',this,this.drag);this.down=connect(document,'onmouseup',this,this.stop);};$prototype.drag=function(e){e.stop();if(this.target&&this.move){var pos=this.diff(e.mouse().page,this.offset);if(this.constrainToParent){var parent=this.target.parentNode;var ppos=elementPosition(parent);var w=parseInt(parent.style.width);var h=parseInt(parent.style.height);pos=this.diff(pos,ppos);pos.x=Math.min(pos.x,w-parseInt(this.target.style.width));pos.x=Math.max(pos.x,0);pos.y=Math.min(pos.y,h-parseInt(this.target.style.height));pos.y=Math.max(pos.y,0);}
var w=getWindowWidth();var h=getWindowHeight();pos.x=Math.max(pos.x,0);if(pos.x+parseInt(this.target.style.width)>w){pos.x=w-parseInt(this.target.style.width);}
pos.y=Math.max(pos.y,0);if(pos.y+parseInt(this.target.style.height)>h){pos.y=h-parseInt(this.target.style.height);}
this.update(pos);}else{this.stop();}};$prototype.stop=function(e){var top=parseInt(this.target.style.top);var left=parseInt(this.target.style.left);signal(this,"modified",{top:top,left:left});disconnect(this.move);this.move=null;disconnect(this.down);this.down=null;};$prototype.diff=function(lhs,rhs){return{x:lhs.x-rhs.x,y:lhs.y-rhs.y};};$prototype.update=function(pos){var newStyle={};var isUndefNull=MochiKit.Base.isUndefinedOrNull;if(!isUndefNull(pos.x)&&!this.lockX){newStyle['left']=pos.x+"px";}
if(!isUndefNull(pos.y)&&!this.lockY){newStyle['top']=pos.y+"px";}
if(this.target){updateNodeAttributes(this.target,{'style':newStyle});}else{this.stop();}};function getWindowHeight(){var ih=parseInt(window.innerHeight);var ch=parseInt(document.body.clientHeight);var dch=parseInt(document.documentElement.clientHeight);if(ih)return ih;else if(ch)return ch;else{return dch;}}
function getWindowWidth(){var iw=parseInt(window.innerWidth);var cw=parseInt(document.body.clientWidth);var dcw=parseInt(document.documentElement.clientWidth);if(iw)return iw;else if(cw)return cw;else{return dcw;}}
function applyDOMElementStyles(elem,style){var el=(typeof(elem)=="string")?document.createElement(elem):elem;var width=(style.size)?style.size.width:(style.width)?style.width:0;var height=(style.size)?style.size.height:(style.height)?style.height:0;for(var param in style){if(param=="class"){el.className=style['class'];}else if(param=="className"){el.className=style.className;}else if(param=="border"){if(typeof(style.border)=="string"){el.style.border=style.border;var pxi=style.border.indexOf("px");var bval=parseInt(style.border.substring(0,pxi));width-=bval;height-=bval;}else if(typeof(style.border)=="number"){el.style.border=style.border+"px solid #000000";width-=style.border;height-=style.border;}else{var top=(parseInt(style.border.top)||0);var bottom=(parseInt(style.border.bottom)||0);var left=(parseInt(style.border.left)||0);var right=(parseInt(style.border.right)||0);el.style.borderStyle=style.border.style||"none";el.style.borderTopWidth=top+"px";el.style.borderBottomWidth=bottom+"px";el.style.borderLeftWidth=left+"px";el.style.borderRightWidth=right+"px";width-=left-right;height-=top-bottom;}}else if(param=="margin"){if(typeof(style.margin)=="string"){el.style.margin=style.margin;var mval=parseInt(el.style.marginTop);width-=mval;height-=mval;}else if(typeof(style.margin)=="number"){el.style.margin=style.margin+"px";width-=style.margin;height-=style.margin;}else{var top=(parseInt(style.margin.top)||0);var bottom=(parseInt(style.margin.bottom)||0);var left=(parseInt(style.margin.left)||0);var right=(parseInt(style.margin.right)||0);el.style.marginTop=top+"px";el.style.marginBottom=bottom+"px";el.style.marginLeft=left+"px";el.style.marginRight=right+"px";width-=left-right;height-=top-bottom;}}else if(param=="padding"){if(typeof(style.padding)=="string"){el.style.padding=style.padding;var pval=parseInt(el.style.paddingTop);width-=pval;height-=pval;}else if(typeof(style.padding)=="number"){el.style.padding=style.padding+"px";width-=style.padding;height-=style.padding;}else{var top=(parseInt(style.padding.top)||0);var bottom=(parseInt(style.padding.bottom)||0);var left=(parseInt(style.padding.left)||0);var right=(parseInt(style.padding.right)||0);el.style.paddingTop=top+"px";el.style.paddingBottom=bottom+"px";el.style.paddingLeft=left+"px";el.style.paddingRight=right+"px";width-=left-right;height-=top-bottom;}}else if(param=="position"){if(typeof(style.position)=="string"){el.style.position=style.position;if(style.top){el.style.top=parseInt(style.top)+"px";}
if(style.left){el.style.left=parseInt(style.left)+"px";}}else{el.style.position="absolute";el.style.top=parseInt(style.position.top)+"px";el.style.left=parseInt(style.position.left)+"px";}}else if(param=="size"||param=="width"||param=="height"){}else{el.style[param]=style[param];}}
if(style.size){el.style.width=width+"px";el.style.height=height+"px";}
if(style.width){el.style.width=width+"px";}
if(style.height){el.style.height=height+"px";}
return el;}
function determineLabelWidth(label,className){var span=SPAN({'class':(className?className:"")},label);span.style.visibility="hidden";document.body.appendChild(span);var width=parseInt(span.offsetWidth);document.body.removeChild(span);return width;}
namespace("userSmarts.util");$namespace.Logger=Class.create();$prototype.initialize=function(superClass,properties){superClass.call(this,properties);this.infoEnabled=true;this.warnEnabled=true;this.debugEnabled=true;this.errorEnabled=true;};$namespace.Logger.DEBUG=0;$namespace.Logger.INFO=1;$namespace.Logger.WARN=2;$namespace.Logger.ERROR=3;$prototype.log=function(msg,type){type=type||0;if(userSmarts.util.Browser.isIE){if(type==userSmarts.util.Logger.DEBUG){msg="[DEBUG] "+msg;}else if(type==userSmarts.util.Logger.INFO){return;}else if(type==userSmarts.util.Logger.WARN){return;}
else if(type==userSmarts.util.Logger.ERROR){msg="[ERROR] "+msg;}
alert(msg);}else{if(type==userSmarts.util.Logger.DEBUG){logDebug(msg);}else if(type==userSmarts.util.Logger.INFO){log(msg);}else if(type==userSmarts.util.Logger.WARN){logWarning(msg);}else if(type==userSmarts.util.Logger.ERROR){logError(msg);}}};$prototype.logInfo=function(msg){this.log(msg,userSmarts.util.Logger.INFO);};$prototype.logError=function(msg,e){if(e){msg+="\n";for(var k in e){try{msg+="    "+k+": '"+(e[k]||'')+"'\n";}catch(e){}}}
this.log(msg,userSmarts.util.Logger.ERROR);};$prototype.logWarning=function(msg){this.log(msg,userSmarts.util.Logger.WARN);};$prototype.logWarn=function(msg){this.logWarning(msg);};$prototype.logDebug=function(msg){this.log(msg,userSmarts.util.Logger.DEBUG);};$prototype.isInfoEnabled=function(){return this.infoEnabled;};$prototype.isWarnEnabled=function(){return this.warnEnabled;};$prototype.isDebugEnabled=function(){return this.debugEnabled;};$prototype.isErrorEnabled=function(){return this.errorEnabled;};$namespace.logInstance=new $namespace.Logger();function getLogger(){return userSmarts.util.logInstance;};namespace("userSmarts.service");namespace("userSmarts.service");namespace("userSmarts.service");$namespace.ServiceReference=Class.create();$prototype.initialize=function(superClass,properties){setdefault(properties,{types:[],properties:{}});setdefault(this,properties);};$prototype.compareTo=function(reference){return-1;};$prototype.getBundle=function(){return this.bundle;};$prototype.getService=function(){return this.service;};$prototype.getTypes=function(){return this.types;};$prototype.getProperty=function(key){return this.properties[key];};$prototype.setProperties=function(properties){for(var k in properties){this.properties[k]=properties[k];}};$prototype.unregister=function(){var mgr=userSmarts.runtime.Platform.getServiceManager();var types=this.getTypes();for(var i=0;i<types.length;++i){mgr.unregisterService(this.getBundle(),this.getService(),types[i]);}};namespace("userSmarts.service");$namespace.ServiceEvent=Class.create(Bean);$prototype.initialize=function(superClass,properties){superClass.call(this,properties);};$namespace.ServiceEvent.REGISTERED=1;$namespace.ServiceEvent.MODIFIED=2;$namespace.ServiceEvent.UNREGISTERING=3;$prototype.getReference=function(){return this.reference;};$prototype.getType=function(){return this.type;};namespace("userSmarts.service");$namespace.ServiceListener=Class.create(Bean);$prototype.initialize=function(superClass,properties){superClass.call(this,properties);};$prototype.serviceChanged=function(event){};namespace("userSmarts.service");$namespace.ServiceTracker=Class.create(userSmarts.service.ServiceEvent);$prototype.initialize=function(superClass,bundleContext,arg2,filter,customizer){superClass.call(this,{references:[],types:[]});this.context=bundleContext;if(arg2){if(typeof(arg2.push)!="undefined"){for(var i=0;i<arg2.length;++i){if(arg2[i]instanceof userSmarts.service.ServiceReference){this.references.push(arg2[i]);}else if(typeof(arg2[i])=="string"){var refs=this.context.getServiceReferences(arg2[i]);this.references.pushAll(refs);}}}else{if(arg2 instanceof userSmarts.service.ServiceReference){this.references.push(arg2);}else if(typeof(arg2)=="string"){var refs=this.context.getServiceReferences(arg2);this.references.pushAll(refs);}}}
this.filter=filter;this.customizer=customizer;};$prototype.open=function(){this.getBundleContext().addServiceListener(this,this.filter);if(this.references.length>0){this.setProperty("initialized",true);}};$prototype.close=function(){this.getBundleContext().removeServiceListener(this,this.filter);};$prototype.getBundleContext=function(){return this.context;};$prototype.getService=function(reference){return(reference)?reference.getService():this.getServiceReference().getService();;};$prototype.getServiceReference=function(){if(this.references.length>0){return this.references[0];}
return null;};$prototype.getServiceReferences=function(){return this.references;};$prototype.getServices=function(){var result=[];var refs=this.getServiceReferences();for(var i=0;i<refs.length;++i){result.push(refs[i].getService());}
return result;};$prototype.remove=function(reference){for(var i=0;i<this.references.length;++i){if(this.references[i]==reference){this.references.splice(i,1);return reference;}}};$prototype.addingService=function(reference){if(this.customizer){return this.customizer.addingService(reference);}
return null;};$prototype.modifiedService=function(reference,service){if(this.customizer){this.customizer.modifiedService(reference,service);}};$prototype.removedService=function(reference,service){if(this.customizer){this.customizer.removedService(reference,service);}};$prototype.serviceChanged=function(event){if(this.filter&&!this.filter(event))return;var type=event.getType();var reference=event.getReference();if(type==userSmarts.service.ServiceEvent.REGISTERED){this.addingService(reference);}else if(type==userSmarts.service.ServiceEvent.UNREGISTERING){this.removedService(reference,reference.getService());}else if(type==userSmarts.service.ServiceEvent.MODIFIED){this.modifiedService(reference,reference.getService());}
this.setProperty("modified",event);};$prototype.size=function(){return this.getServiceReferences().length;};namespace("userSmarts.service");$namespace.ServiceTrackerCustomizer=Class.create(Bean);$prototype.initialize=function(superClass,properties){superClass.call(this,properties);};$prototype.addingService=function(reference){return null;};$prototype.modifiedService=function(reference,service){};$prototype.removedService=function(reference,service){};namespace("userSmarts.service");$namespace.ServiceManager=Class.create(Bean);$prototype.initialize=function(superClass,properties){superClass.call(this,properties);this.references={};this.listeners=[];};$prototype.registerService=function(bundle,service,type,properties){var types=(typeof(type.push)!="undefined")?type:[type];var reference=new userSmarts.service.ServiceReference({bundle:bundle,service:service,types:types,properties:properties});var t;for(var i=0;i<types.length;++i){t=types[i];if(!this.references[t])this.references[t]=[];var refs=this.references[t];refs.push(reference);}
var event=new userSmarts.service.ServiceEvent({type:userSmarts.service.ServiceEvent.REGISTERED,reference:reference});this.fireEvent(event);return reference;};$prototype.updateService=function(bundle,service,type,properties){if(!this.references[type]){return this.registerService(bundle,service,type,properties);}
var refs=this.references[type];for(var i=0;i<refs.length;++i){if(refs[i].bundle.id==bundle.id&&refs[i].service==service){refs[i].setProperties(properties);this.fireEvent(new userSmarts.service.ServiceEvent({type:userSmarts.service.ServiceEvent.MODIFIED,reference:refs[i]}));return refs[i];}}
return this.registerService(bundle,service,type,properties);};$prototype.unregisterService=function(bundle,service,type){if(this.references[type]){var refs=this.references[type];for(var i=0;i<refs.length;++i){if(refs[i].service==service){refs.splice(i,1);return;}}}};$prototype.fireEvent=function(event){for(var i=0;i<this.listeners.length;++i){this.listeners[i].listener.serviceChanged(event);}};$prototype.getServices=function(arg){if(arg){return this.references[arg]||[];}else{var result=[];for(var k in this.references){if(this.references[k]instanceof userSmarts.service.ServiceReference){result.pushAll(this.references[k]||[]);}}
return result;}};$prototype.addServiceListener=function(listener){this.addServiceListener(listener,null);};$prototype.addServiceListener=function(listener,filter){var index=this.getListenerIndex(listener);if(index<0){this.listeners.push({listener:listener,filter:filter});}else{this.listeners[index].listener=listener;this.listeners[index].filter=filter;}};$prototype.removeServiceListener=function(listener){var index=this.getListenerIndex(listener);if(index>=0&&index<this.listeners.length){this.listeners.splice(index,1);}};$prototype.getListenerIndex=function(listener){for(var i=0;i<this.listeners.length;++i){if(this.listeners[i].listener==listener){return i;}}
return-1;};$prototype.dispose=function(){this.listeners=[];for(var k in this.references){this.references[k]=null;}
this.references={};};namespace("userSmarts.event");namespace("userSmarts.event");namespace("userSmarts.event");$namespace.Event=Class.create();$prototype.initialize=function(superClass,topic,properties){this.topic=topic;this.properties=properties||{};};$prototype.equals=function(arg){if(arg instanceof userSmarts.event.Event){if(arg.getTopic()==this.getTopic()){return true;}}
return false;};$prototype.getProperty=function(name){return this.properties[name];};$prototype.getProperties=function(){return this.properties;};$prototype.getTopic=function(){return this.topic;};$prototype.matches=function(filter){return false;};$prototype.dispose=function(){delete this.topic;for(var k in this.properties){this.properties[k]=null;delete this.properties[k];}
delete this.properties;};namespace("userSmarts.event");$namespace.EventAdmin=Class.create();$prototype.initialize=function(superClass,properties){superClass.call(this,properties);};$prototype.postEvent=function(event){var eventTopic=event.getTopic();var mgr=userSmarts.runtime.Platform.getServiceManager();var handlerRefs=mgr.getServices("userSmarts.event.EventHandler");for(var i=0;i<handlerRefs.length;++i){var ref=handlerRefs[i];var topics=ref.getProperty("topics");if(typeof(topics.push)!="undefined"){for(var t=0;t<topics.length;++t){var topic=topics[t];if(topic==eventTopic){ref.getService().handleEvent(event);return;}else if(typeof(topic.test)=="function"&&topic.test(eventTopic)){ref.getService().handleEvent(event);return;}}}else if(topics){if(topics==eventTopic){ref.getService().handleEvent(event);return;}else if(typeof(topic.test)=="function"&&topics.test(eventTopic)){ref.getService().handleEvent(event);return;}}}};$prototype.sendEvent=function(event){var eventTopic=event.getTopic();var mgr=userSmarts.runtime.Platform.getServiceManager();var handlerRefs=mgr.getServices("userSmarts.event.EventHandler");for(var i=0;i<handlerRefs.length;++i){var ref=handlerRefs[i];var topics=ref.getProperty("topics");if(typeof(topics.push)!="undefined"){for(var t=0;t<topics.length;++t){var topic=topics[t];if(topic==eventTopic){ref.getService().handleEvent(event);}else if(typeof(topic.test)=="function"&&topic.test(eventTopic)){ref.getService().handleEvent(event);}}}else if(topics){if(topics==eventTopic){ref.getService().handleEvent(event);}else if(typeof(topic.test)=="function"&&topics.test(eventTopic)){ref.getService().handleEvent(event);}}}
event.dispose();};namespace("userSmarts.event");$namespace.EventHandler=Class.create();$prototype.initialize=function(superClass,properties){superClass.call(this,properties);};$prototype.handleEvent=function(event){};namespace("userSmarts.runtime");namespace("userSmarts.runtime");namespace("userSmarts.runtime");userSmarts.runtime.PluginRegistry=function(){this.plugins=[];this.pluginMap={};};userSmarts.runtime.PluginRegistry.prototype.getPluginDescriptor=function(pluginId){return this.pluginMap[pluginId];};userSmarts.runtime.PluginRegistry.prototype.addPlugin=function(plugin){var id=plugin.getUniqueIdentifier();this.plugins.push(plugin);this.pluginMap[id]=plugin;if(!this.defaultPlugin){this.defaultPlugin=id;}};userSmarts.runtime.PluginRegistry.prototype.getPlugins=function(){return this.plugins;};userSmarts.runtime.PluginRegistry.prototype.getPluginDescriptors=function(){var result=[];for(var i=0;i<this.plugins.length;++i){var id=this.plugins[i].getUniqueIdentifier();result.push(this.pluginMap[id]);}
return result;};namespace("userSmarts.runtime");userSmarts.runtime.ExtensionRegistry=function(){this.extensions=[];this.extensionMap={};this.extensionPoints={};};userSmarts.runtime.ExtensionRegistry.prototype.findExtensionWithId=function(id){return this.extensionMap[id];};userSmarts.runtime.ExtensionRegistry.prototype.addExtension=function(key,extension){var id=extension.id;this.extensions.push(extension);this.extensionMap[id]=extension;appendp(this.extensionPoints,key,extension);};userSmarts.runtime.ExtensionRegistry.prototype.getExtensions=function(point){var result;if(point){result=this.extensionPoints[point];}
if(!result){result=[];}
return result;};namespace("userSmarts.runtime");userSmarts.runtime.PropertyService=Class.create(Bean);$prototype.initialize=function(properties){Bean.call(this,properties);this.namespaces={};};$prototype.onPropertyChange=function(event){try{signal(this,event.propertyName,event);}catch(e){logError("Error signaling listeners for "+event.propertyName);}
try{signal(this,"*",event);}catch(e){logError("Error signaling listeners for all properties");}};$prototype.setProvider=function(namespaceId,provider){var namespace=this.getNamespace(namespaceId);if(namespace.handle){disconnect(namespace.handle);}
namespace.handle=connect(provider,"*",namespace,this.onPropertyChange);namespace.provider=provider;};$prototype.setController=function(namespaceId,controller){this.setProvider(namespaceId,controller);}
$prototype.connect=function(namespaceId,propertyName,thisPtrOrFunc,func){if(!propertyName||!namespaceId){return;}
var namespace=this.getNamespace(namespaceId);var value=this.getProperty(namespaceId,propertyName);var event={source:namespace.provider,oldValue:null,newValue:value};try{if(func){func.call(thisPtrOrFunc,event);}else{thisPtrOrFunc.apply(event);}}catch(e){logError("Error signaling listener upon connect, "+e);}
return connect(namespace,propertyName,thisPtrOrFunc,func);};$prototype.disconnect=function(handle){disconnect(handle);};$prototype.getProperty=function(namespaceId,propertyName,fallback){var namespace=this.getNamespace(namespaceId);var provider=namespace.provider;return getp(provider,propertyName,fallback);};$prototype.setProperty=function(namespaceId,propertyName,value){var namespace=this.getNamespace(namespaceId);var provider=namespace.provider;if(!provider){provider={};this.setProvider(namespaceId,provider);}
setp(provider,propertyName,value,true);};$prototype.getNamespace=function(namespaceId){var namespace=this.namespaces[namespaceId];if(!namespace){namespace={id:namespaceId};this.namespaces[namespaceId]=namespace;}
return namespace;};namespace("userSmarts.runtime");namespace("userSmarts.runtime");$namespace.Workspace=Class.create(Bean);$prototype.initialize=function(superClass,properties){this.link={rel:"alternate",href:"workspace.xml",title:"Default Workspace",summary:""};this.links=[this.link];superClass.call(this,properties);};$prototype.getLink=function(rel){var result=this.link;if(rel){var links=this.links;var len=links.length;for(var i=0;i<len;++i){var link=links[i];if(link&&link.rel==rel){result=link;break;}}}
return result;};$prototype.addResourceChangeListener=function(listener){};namespace("userSmarts.runtime");namespace("userSmarts.runtime");$namespace.Platform={pluginRegistry:new $namespace.PluginRegistry(),pluginDir:"plugins/",extensionRegistry:new $namespace.ExtensionRegistry(),propertyService:new $namespace.PropertyService(),workspace:new $namespace.Workspace(),serviceManager:new userSmarts.service.ServiceManager()};$class=$namespace.Platform;$class.propertyService.setProvider("workspace",$namespace.Platform.workspace);$class.getPluginRegistry=function(){return userSmarts.runtime.Platform.pluginRegistry;};$class.getExtensionRegistry=function(){return userSmarts.runtime.Platform.extensionRegistry;};$class.getPropertyService=function(){return userSmarts.runtime.Platform.propertyService;};$class.getTheme=function(){return this.currentTheme;};$class.getWorkspace=function(){return userSmarts.runtime.Platform.workspace;};$class.registerPluginJSON=function(jsonDesc){var desc=new userSmarts.runtime.PluginDescriptor(jsonDesc);userSmarts.runtime.Platform.getPluginRegistry().addPlugin(desc);};$class.getPluginDescriptor=function(pluginId){return userSmarts.runtime.Platform.getPluginRegistry().getPluginDescriptor(pluginId);};$class.getBundles=function(){return userSmarts.runtime.Platform.getPluginRegistry().getPluginDescriptors();};$class.getServiceManager=function(){return this.serviceManager;};$class.find=function(pluginId,path){var desc=this.getPluginDescriptor(pluginId);if(!desc){getLogger().logError("Plugin not loaded: "+pluginId);}else{var url=desc.find(path);return url;}
return null;};$class.getApplicationId=function(){return userSmarts.runtime.Platform.applicationId;};$class.runApplication=function(applicationId){var currentAppId=this.getApplicationId();if(currentAppId){this.shutdownApplication(currentAppId);}
var appDesc=this.getExtensionRegistry().findExtensionWithId(applicationId);if(appDesc){var application=null;try{application=appDesc.application=newInstance(appDesc["class"]);}catch(e){if(e instanceof ClassNotFoundException){getLogger().logError("Unable to initialize application '"+applicationId+"', cause: "+e.message);}else{getLogger().logError("Unable to initialize application '"+applicationId+"', cause: ",e);}
return;}
var pluginId=appDesc.pluginId;this.startPlugin(pluginId);this.loadTheme();if(application){application.run();userSmarts.runtime.Platform.applicationId=applicationId;}else{getLogger().logError("Could not run application with id '"+applicationId+"', associated plugin with id '"+pluginId+"' not found");}}else{getLogger().logError("Could not run application with id '"+applicationId+"', associated plugin with id '"+pluginId+"' not found");}};$class.shutdownApplication=function(applicationId){var appDesc=this.getExtensionRegistry().findExtensionWithId(applicationId);if(appDesc){var application=appDesc.application;var pluginId=appDesc.pluginId;this.stopPlugin(pluginId);if(application){application.shutdown();userSmarts.runtime.Platform.applicationId=null;this.getServiceManager().dispose();}else{getLogger().logError("Could not shutdown application with id '"+applicationId+"', associated plugin with id '"+pluginId+"' not found");}}else{getLogger().logError("Could not shutdown application with id '"+applicationId+"', application description not found.");}};$class.startPlugin=function(pluginId){var desc=this.getPluginDescriptor(pluginId);if(!desc){getLogger().logError("Unable to load plugin: "+pluginId);return;}
if(desc.isPluginActive())return;var prereqs=desc.getPluginPrerequisites();for(var i=0;i<prereqs.length;++i){this.startPlugin(prereqs[i]);}
var plugin=desc.getPlugin();if(plugin&&typeof(plugin.start)=='function'){var context=new userSmarts.runtime.BundleContext({bundle:desc});desc.setBundleContext(context);plugin.bundle=desc;plugin.start(context);}
desc.active=true;};$class.stopPlugin=function(pluginId){var desc=this.getPluginDescriptor(pluginId);if(!desc.isPluginActive())return;var plugin=desc.getPlugin();if(plugin&&typeof(plugin.start)=='function'){var context=desc.getBundleContext();plugin.stop(context);desc.setBundleContext(null);}
desc.active=false;var prereqs=desc.getPluginPrerequisites();for(var i=prereqs.length-1;i>=0;--i){this.stopPlugin(prereqs[i]);}};$class.loadTheme=function(){var thMgr=userSmarts.ui.WorkbenchPlugin.getDefault().getThemeManager();var themeDesc=thMgr.getCurrentTheme();this.currentTheme=thMgr.loadTheme(themeDesc);};namespace("userSmarts.runtime");namespace("userSmarts.runtime");$namespace.PluginDescriptor=Class.create(Bean);$prototype.initialize=function(superClass,properties){properties=setdefault(properties,{prerequisites:[],libraries:[],extensionPoints:[]});this.expressionFactory=new ExpressionFactory();this.applyExpressions(properties);Bean.call(this,properties);var context=properties;var exreg=userSmarts.runtime.Platform.getExtensionRegistry();for(var key in this.extensionPoints){var pnt=this.extensionPoints[key];var desc=null;for(var i=0;i<pnt.extensions.length;++i){var values=this.applyExpressions(pnt.extensions[i]);if(key==="userSmarts.ui.views"){var desc=new userSmarts.ui.ViewDescriptor(values);userSmarts.ui.WorkbenchPlugin.getDefault().getViewRegistry().addView(desc);}else if(key==="userSmarts.ui.perspectives"){var desc=new userSmarts.ui.PerspectiveDescriptor(values);userSmarts.ui.WorkbenchPlugin.getDefault().getPerspectiveRegistry().addPerspective(desc);}else if(key==="userSmarts.ui.editors"){var desc=new userSmarts.ui.EditorDescriptor(values);userSmarts.ui.WorkbenchPlugin.getDefault().getEditorRegistry().addEditor(desc);}else{desc=new userSmarts.runtime.ExtensionDescriptor(values);}
desc.pluginId=this.id;exreg.addExtension(key,desc);}}};$prototype.getExtensionPoint=function(extensionPointId){return this.extensionPoints[extensionPointId];};$prototype.getLabel=function(){return this.label;};$prototype.getPluginPrerequisites=function(){return this.prerequisites;};$prototype.getRuntimeLibraries=function(){return this.libraries;};$prototype.getProviderName=function(){return this.providerName;};$prototype.getUniqueIdentifier=function(){return this.id;};$prototype.isPluginActive=function(){return this.active;};$prototype.getPlugin=function(){if(!this.plugin&&(typeof this.pluginClass=="string")&&this.pluginClass!=""){try{this.plugin=newInstance(this.pluginClass);}catch(e){logWarning("Plugin class not found:"+this.pluginClass);}}
return this.plugin;};$prototype.getInstallURL=function(){return this.installURL;};$prototype.find=function(path){return this.getInstallURL()+"/"+path;};$prototype.applyExpressions=function(obj){for(var key in obj){var value=obj[key];if(typeof value=="string"){value=this.expressionFactory.createValueExpression(value).getValue();obj[key]=value;}}
return obj;};$prototype.setBundleContext=function(context){this.bundleContext=context;};$prototype.getBundleContext=function(){return this.bundleContext;};namespace("userSmarts.runtime");userSmarts.runtime.ExtensionDescriptor=Class.create(Bean);$prototype.initialize=function(superClass,properties){properties=setdefault(properties,{label:""});superClass.call(this,properties);};$prototype.getId=function(){return this.id;};userSmarts.runtime.ExtensionDescriptor.prototype.getLabel=function(){return this.name||this.label;};$prototype.getDescription=function(){return this.description;};$prototype.getImage=function(){return this.icon||this.image;};$prototype.getInstance=function(){if(!this.instance&&this["class"]){this.instance=newInstance(this["class"],this);this.instance.descriptor=this;}
return this.instance;};namespace("userSmarts.runtime");$namespace.BundleContext=Class.create(Bean);$prototype.initialize=function(superClass,properties){superClass.call(this,properties);this.listeners};$prototype.addServiceListener=function(listener){var mgr=userSmarts.runtime.Platform.getServiceManager();mgr.addServiceListener(listener);};$prototype.addServiceListener=function(listener,filter){var mgr=userSmarts.runtime.Platform.getServiceManager();mgr.addServiceListener(listener,filter);};$prototype.removeServiceListener=function(listener){var mgr=userSmarts.runtime.Platform.getServiceManager();mgr.removeServiceListener(listener);};$prototype.getBundle=function(){return this.bundle;};$prototype.getBundles=function(){return userSmarts.runtime.Platform.getBundles();};$prototype.getURI=function(filename){return userSmarts.runtime.Platform.find(this.bundle.id,filename);};$prototype.getProperty=function(key){return null;};$prototype.getService=function(reference){return reference.getService();};$prototype.getServiceReference=function(type){var mgr=userSmarts.runtime.Platform.getServiceManager();var arr=mgr.getServices(type);if(arr&&arr.length>0){return arr[0];}
return null;};$prototype.getServiceReferences=function(type,filter){var result=[];var mgr=userSmarts.runtime.Platform.getServiceManager();var arr=mgr.getServices(type);if(arr){if(typeof(filter)=="function"){for(var i=0;i<arr.length;++i){if(filter(this.getService(arr[i]))){result.push(arr[i]);}}}else{result=arr;}}
return result;};$prototype.getAllServiceReferences=function(type,filter){var mgr=userSmarts.runtime.Platform.getServiceManager();return mgr.getServices();};$prototype.registerService=function(types,service,properties){var mgr=userSmarts.runtime.Platform.getServiceManager();var ref=mgr.registerService(this.getBundle(),service,types,properties);return ref;};$prototype.updateService=function(types,service,properties){var mgr=userSmarts.runtime.Platform.getServiceManager();var ref=mgr.updateService(this.getBundle(),service,types,properties);return ref;};namespace("userSmarts.runtime");namespace("userSmarts.runtime");$namespace.Activator=Class.create(Bean);$prototype.initialize=function(superClass,properties){superClass.call(this,properties);};$prototype.getBundle=function(){return this.bundle;};$prototype.getBundleContext=function(){return this.getBundle().getBundleContext();};$prototype.start=function(bundleContext){};$prototype.stop=function(bundleContext){};$prototype.getURI=function(path){return this.getBundleContext().getURI(path);};$prototype.sendEvent=function(event,serviceId){serviceId=serviceId||"userSmarts.event.EventAdmin";var context=this.getBundleContext();var ref=context.getServiceReference(serviceId);var eventService=ref.getService();eventService.sendEvent(event);};namespace("userSmarts.runtime");$namespace.Plugin=Class.create($namespace.Activator);$prototype.initialize=function(superClass,properties){superClass.call(this,properties);userSmarts.runtime.Plugin.instance=this;};$namespace.Plugin.getDefault=function(){return userSmarts.runtime.Plugin.instance;};$prototype.start=function(context){var admin=new userSmarts.event.EventAdmin();this.adminRef=context.registerService("userSmarts.event.EventAdmin",admin,{});};$prototype.stop=function(context){this.adminRef.unregister();};namespace("userSmarts.theme");namespace("userSmarts.theme");namespace("userSmarts.theme");$namespace.Theme=Class.create(Bean);$prototype.initialize=function(superClass,properties){superClass.call(this,{name:properties.name||"Untitled Theme",id:properties.id});this.styles=[];this.sprites=[];};$prototype.getDescriptor=function(){return this.descriptor;};$prototype.getName=function(){return this.name;};$prototype.get=function(id){return this.styles[id];};$prototype.getImage=function(id,fallback){var val=val=this.get(id);if(val){return IMG({src:val});}
val=this.sprites[id];if(val){var img=IMG({src:this.get("image.spacer")});img.style.width="16px";img.style.height="16px";img.style.background="url("+val.src+") "+val.x+"px "+val.y+"px no-repeat";return img;}
return fallback;};$prototype.set=function(id,style){this.styles[id]=style;};$prototype.setSpriteImage=function(id,src,xoffset,yoffset){this.sprites[id]={src:src,x:xoffset,y:yoffset};};namespace("userSmarts.theme");$namespace.ThemeDescriptor=Class.create(userSmarts.runtime.ExtensionDescriptor);$prototype.initialize=function(superClass,properties){superClass.call(this,properties);};$prototype.getTheme=function(){if(!this.theme&&this["class"]){this.theme=newInstance(this["class"],{name:this.name,id:this.id,descriptor:this});}
return this.theme;};$prototype.includeStyleSheet=function(parent){if(this['extends']&&typeof(this['extends'])=="string"){var superClass=this['extends'];var extReg=userSmarts.runtime.Platform.getExtensionRegistry();var thDesc=extReg.findExtensionWithId(superClass);if(thDesc){thDesc.includeStyleSheet(parent);}}
var sheet=this.style;if(sheet&&!sheet.endsWith(".css")){sheet+=".css";}
sheet=userSmarts.runtime.Platform.find(this.pluginId,sheet);var link=document.createElement("LINK");link.href=sheet;link.rel="stylesheet";parent.appendChild(link);};namespace("userSmarts.theme");$namespace.ThemeManager=Class.create();$prototype.initialize=function(){this.themes=[];this.themeMap=[];};$prototype.EXTENSION_POINT_ID="userSmarts.ui.themes";$prototype.addTheme=function(thDesc){if(this.themes.length==0||typeof(thDesc['default'])!="undefined"){this.defaultTheme=thDesc;}
this.themeMap[thDesc.id]=thDesc;this.themes.push(thDesc);};$prototype.getThemeById=function(id){var themes=userSmarts.runtime.Platform.getExtensionRegistry().getExtensions(this.EXTENSION_POINT_ID);var theme=themes[id];if(!theme){for(var c=0;c<themes.length;++c){if(themes[c].id==id){theme=themes[c];this.themeMap[themes[c].id]=themes[c];break;}else{if(!this.themeMap[themes[c].id]){this.themeMap[themes[c].id]=themes[c];}}}}
return theme;};$prototype.getThemes=function(){var registry=userSmarts.runtime.Platform.getExtensionRegistry();var themes=registry.getExtensions(this.EXTENSION_POINT_ID);return themes;};$prototype.getDefaultTheme=function(){if(!this.defaultTheme){var themes=this.getThemes();if(themes.length>0){this.defaultTheme=themes[0];}}
return this.defaultTheme;};$prototype.getCurrentTheme=function(){if(!this.currentTheme){this.setCurrentTheme(this.getDefaultTheme());}
return this.currentTheme;};$prototype.setCurrentTheme=function(arg){this.currentTheme=this.resolveThemeDescriptor(arg);};$prototype.resolveThemeDescriptor=function(arg){if(typeof(arg)=="string"){return this.getThemeById(arg);}else if(arg instanceof userSmarts.runtime.ExtensionDescriptor){return arg;}else if(arg instanceof userSmarts.theme.Theme){return arg.getDescriptor();}
return null;};$prototype.initializeTheme=function(){};$prototype.loadTheme=function(arg){var result=null;var thDesc=this.resolveThemeDescriptor(arg);if(thDesc){result=thDesc.getInstance();var head=document.getElementsByTagName('head').item(0);this.includeStyleSheet(thDesc,head);}
return result;};$prototype.includeStyleSheet=function(themeDesc,parent){if(themeDesc['extends']&&typeof(themeDesc['extends'])=="string"){var superClass=themeDesc['extends'];var extReg=userSmarts.runtime.Platform.getExtensionRegistry();var thDesc=extReg.findExtensionWithId(superClass);if(thDesc){this.includeStyleSheet(thDesc,parent);}}
var sheet=themeDesc.style;if(sheet&&!sheet.endsWith(".css")){sheet+=".css";}
sheet=userSmarts.runtime.Platform.find(themeDesc.pluginId,sheet);var link=document.createElement("LINK");link.href=sheet;link.rel="stylesheet";parent.appendChild(link);};