You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by mu...@apache.org on 2007/03/03 06:49:21 UTC

svn commit: r514083 [5/49] - in /struts/struts2/trunk/plugins/dojo: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/struts2/ src/main/java/org/apache/struts2/components/ src/main/java/org/apache/st...

Added: struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/dojo.js
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/dojo.js?view=auto&rev=514083
==============================================================================
--- struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/dojo.js (added)
+++ struts/struts2/trunk/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/dojo.js Fri Mar  2 21:48:54 2007
@@ -0,0 +1,11190 @@
+/*
+	Copyright (c) 2004-2006, The Dojo Foundation
+	All Rights Reserved.
+
+	Licensed under the Academic Free License version 2.1 or above OR the
+	modified BSD license. For more information on Dojo licensing, see:
+
+		http://dojotoolkit.org/community/licensing.shtml
+*/
+
+/*
+	This is a compiled version of Dojo, built for deployment and not for
+	development. To get an editable version, please visit:
+
+		http://dojotoolkit.org
+
+	for documentation and information on getting the source.
+*/
+
+if(typeof dojo=="undefined"){
+var dj_global=this;
+var dj_currentContext=this;
+function dj_undef(_1,_2){
+return (typeof (_2||dj_currentContext)[_1]=="undefined");
+}
+if(dj_undef("djConfig",this)){
+var djConfig={};
+}
+if(dj_undef("dojo",this)){
+var dojo={};
+}
+dojo.global=function(){
+return dj_currentContext;
+};
+dojo.locale=djConfig.locale;
+dojo.version={major:0,minor:4,patch:0,flag:"",revision:Number("$Rev: 6258 $".match(/[0-9]+/)[0]),toString:function(){
+with(dojo.version){
+return major+"."+minor+"."+patch+flag+" ("+revision+")";
+}
+}};
+dojo.evalProp=function(_3,_4,_5){
+if((!_4)||(!_3)){
+return undefined;
+}
+if(!dj_undef(_3,_4)){
+return _4[_3];
+}
+return (_5?(_4[_3]={}):undefined);
+};
+dojo.parseObjPath=function(_6,_7,_8){
+var _9=(_7||dojo.global());
+var _a=_6.split(".");
+var _b=_a.pop();
+for(var i=0,l=_a.length;i<l&&_9;i++){
+_9=dojo.evalProp(_a[i],_9,_8);
+}
+return {obj:_9,prop:_b};
+};
+dojo.evalObjPath=function(_e,_f){
+if(typeof _e!="string"){
+return dojo.global();
+}
+if(_e.indexOf(".")==-1){
+return dojo.evalProp(_e,dojo.global(),_f);
+}
+var ref=dojo.parseObjPath(_e,dojo.global(),_f);
+if(ref){
+return dojo.evalProp(ref.prop,ref.obj,_f);
+}
+return null;
+};
+dojo.errorToString=function(_11){
+if(!dj_undef("message",_11)){
+return _11.message;
+}else{
+if(!dj_undef("description",_11)){
+return _11.description;
+}else{
+return _11;
+}
+}
+};
+dojo.raise=function(_12,_13){
+if(_13){
+_12=_12+": "+dojo.errorToString(_13);
+}
+try{
+if(djConfig.isDebug){
+dojo.hostenv.println("FATAL exception raised: "+_12);
+}
+}
+catch(e){
+}
+throw _13||Error(_12);
+};
+dojo.debug=function(){
+};
+dojo.debugShallow=function(obj){
+};
+dojo.profile={start:function(){
+},end:function(){
+},stop:function(){
+},dump:function(){
+}};
+function dj_eval(_15){
+return dj_global.eval?dj_global.eval(_15):eval(_15);
+}
+dojo.unimplemented=function(_16,_17){
+var _18="'"+_16+"' not implemented";
+if(_17!=null){
+_18+=" "+_17;
+}
+dojo.raise(_18);
+};
+dojo.deprecated=function(_19,_1a,_1b){
+var _1c="DEPRECATED: "+_19;
+if(_1a){
+_1c+=" "+_1a;
+}
+if(_1b){
+_1c+=" -- will be removed in version: "+_1b;
+}
+dojo.debug(_1c);
+};
+dojo.render=(function(){
+function vscaffold(_1d,_1e){
+var tmp={capable:false,support:{builtin:false,plugin:false},prefixes:_1d};
+for(var i=0;i<_1e.length;i++){
+tmp[_1e[i]]=false;
+}
+return tmp;
+}
+return {name:"",ver:dojo.version,os:{win:false,linux:false,osx:false},html:vscaffold(["html"],["ie","opera","khtml","safari","moz"]),svg:vscaffold(["svg"],["corel","adobe","batik"]),vml:vscaffold(["vml"],["ie"]),swf:vscaffold(["Swf","Flash","Mm"],["mm"]),swt:vscaffold(["Swt"],["ibm"])};
+})();
+dojo.hostenv=(function(){
+var _21={isDebug:false,allowQueryConfig:false,baseScriptUri:"",baseRelativePath:"",libraryScriptUri:"",iePreventClobber:false,ieClobberMinimal:true,preventBackButtonFix:true,delayMozLoadingFix:false,searchIds:[],parseWidgets:true};
+if(typeof djConfig=="undefined"){
+djConfig=_21;
+}else{
+for(var _22 in _21){
+if(typeof djConfig[_22]=="undefined"){
+djConfig[_22]=_21[_22];
+}
+}
+}
+return {name_:"(unset)",version_:"(unset)",getName:function(){
+return this.name_;
+},getVersion:function(){
+return this.version_;
+},getText:function(uri){
+dojo.unimplemented("getText","uri="+uri);
+}};
+})();
+dojo.hostenv.getBaseScriptUri=function(){
+if(djConfig.baseScriptUri.length){
+return djConfig.baseScriptUri;
+}
+var uri=new String(djConfig.libraryScriptUri||djConfig.baseRelativePath);
+if(!uri){
+dojo.raise("Nothing returned by getLibraryScriptUri(): "+uri);
+}
+var _25=uri.lastIndexOf("/");
+djConfig.baseScriptUri=djConfig.baseRelativePath;
+return djConfig.baseScriptUri;
+};
+(function(){
+var _26={pkgFileName:"__package__",loading_modules_:{},loaded_modules_:{},addedToLoadingCount:[],removedFromLoadingCount:[],inFlightCount:0,modulePrefixes_:{dojo:{name:"dojo",value:"src"}},setModulePrefix:function(_27,_28){
+this.modulePrefixes_[_27]={name:_27,value:_28};
+},moduleHasPrefix:function(_29){
+var mp=this.modulePrefixes_;
+return Boolean(mp[_29]&&mp[_29].value);
+},getModulePrefix:function(_2b){
+if(this.moduleHasPrefix(_2b)){
+return this.modulePrefixes_[_2b].value;
+}
+return _2b;
+},getTextStack:[],loadUriStack:[],loadedUris:[],post_load_:false,modulesLoadedListeners:[],unloadListeners:[],loadNotifying:false};
+for(var _2c in _26){
+dojo.hostenv[_2c]=_26[_2c];
+}
+})();
+dojo.hostenv.loadPath=function(_2d,_2e,cb){
+var uri;
+if(_2d.charAt(0)=="/"||_2d.match(/^\w+:/)){
+uri=_2d;
+}else{
+uri=this.getBaseScriptUri()+_2d;
+}
+if(djConfig.cacheBust&&dojo.render.html.capable){
+uri+="?"+String(djConfig.cacheBust).replace(/\W+/g,"");
+}
+try{
+return !_2e?this.loadUri(uri,cb):this.loadUriAndCheck(uri,_2e,cb);
+}
+catch(e){
+dojo.debug(e);
+return false;
+}
+};
+dojo.hostenv.loadUri=function(uri,cb){
+if(this.loadedUris[uri]){
+return true;
+}
+var _33=this.getText(uri,null,true);
+if(!_33){
+return false;
+}
+this.loadedUris[uri]=true;
+if(cb){
+_33="("+_33+")";
+}
+var _34=dj_eval(_33);
+if(cb){
+cb(_34);
+}
+return true;
+};
+dojo.hostenv.loadUriAndCheck=function(uri,_36,cb){
+var ok=true;
+try{
+ok=this.loadUri(uri,cb);
+}
+catch(e){
+dojo.debug("failed loading ",uri," with error: ",e);
+}
+return Boolean(ok&&this.findModule(_36,false));
+};
+dojo.loaded=function(){
+};
+dojo.unloaded=function(){
+};
+dojo.hostenv.loaded=function(){
+this.loadNotifying=true;
+this.post_load_=true;
+var mll=this.modulesLoadedListeners;
+for(var x=0;x<mll.length;x++){
+mll[x]();
+}
+this.modulesLoadedListeners=[];
+this.loadNotifying=false;
+dojo.loaded();
+};
+dojo.hostenv.unloaded=function(){
+var mll=this.unloadListeners;
+while(mll.length){
+(mll.pop())();
+}
+dojo.unloaded();
+};
+dojo.addOnLoad=function(obj,_3d){
+var dh=dojo.hostenv;
+if(arguments.length==1){
+dh.modulesLoadedListeners.push(obj);
+}else{
+if(arguments.length>1){
+dh.modulesLoadedListeners.push(function(){
+obj[_3d]();
+});
+}
+}
+if(dh.post_load_&&dh.inFlightCount==0&&!dh.loadNotifying){
+dh.callLoaded();
+}
+};
+dojo.addOnUnload=function(obj,_40){
+var dh=dojo.hostenv;
+if(arguments.length==1){
+dh.unloadListeners.push(obj);
+}else{
+if(arguments.length>1){
+dh.unloadListeners.push(function(){
+obj[_40]();
+});
+}
+}
+};
+dojo.hostenv.modulesLoaded=function(){
+if(this.post_load_){
+return;
+}
+if(this.loadUriStack.length==0&&this.getTextStack.length==0){
+if(this.inFlightCount>0){
+dojo.debug("files still in flight!");
+return;
+}
+dojo.hostenv.callLoaded();
+}
+};
+dojo.hostenv.callLoaded=function(){
+if(typeof setTimeout=="object"){
+setTimeout("dojo.hostenv.loaded();",0);
+}else{
+dojo.hostenv.loaded();
+}
+};
+dojo.hostenv.getModuleSymbols=function(_42){
+var _43=_42.split(".");
+for(var i=_43.length;i>0;i--){
+var _45=_43.slice(0,i).join(".");
+if((i==1)&&!this.moduleHasPrefix(_45)){
+_43[0]="../"+_43[0];
+}else{
+var _46=this.getModulePrefix(_45);
+if(_46!=_45){
+_43.splice(0,i,_46);
+break;
+}
+}
+}
+return _43;
+};
+dojo.hostenv._global_omit_module_check=false;
+dojo.hostenv.loadModule=function(_47,_48,_49){
+if(!_47){
+return;
+}
+_49=this._global_omit_module_check||_49;
+var _4a=this.findModule(_47,false);
+if(_4a){
+return _4a;
+}
+if(dj_undef(_47,this.loading_modules_)){
+this.addedToLoadingCount.push(_47);
+}
+this.loading_modules_[_47]=1;
+var _4b=_47.replace(/\./g,"/")+".js";
+var _4c=_47.split(".");
+var _4d=this.getModuleSymbols(_47);
+var _4e=((_4d[0].charAt(0)!="/")&&!_4d[0].match(/^\w+:/));
+var _4f=_4d[_4d.length-1];
+var ok;
+if(_4f=="*"){
+_47=_4c.slice(0,-1).join(".");
+while(_4d.length){
+_4d.pop();
+_4d.push(this.pkgFileName);
+_4b=_4d.join("/")+".js";
+if(_4e&&_4b.charAt(0)=="/"){
+_4b=_4b.slice(1);
+}
+ok=this.loadPath(_4b,!_49?_47:null);
+if(ok){
+break;
+}
+_4d.pop();
+}
+}else{
+_4b=_4d.join("/")+".js";
+_47=_4c.join(".");
+var _51=!_49?_47:null;
+ok=this.loadPath(_4b,_51);
+if(!ok&&!_48){
+_4d.pop();
+while(_4d.length){
+_4b=_4d.join("/")+".js";
+ok=this.loadPath(_4b,_51);
+if(ok){
+break;
+}
+_4d.pop();
+_4b=_4d.join("/")+"/"+this.pkgFileName+".js";
+if(_4e&&_4b.charAt(0)=="/"){
+_4b=_4b.slice(1);
+}
+ok=this.loadPath(_4b,_51);
+if(ok){
+break;
+}
+}
+}
+if(!ok&&!_49){
+dojo.raise("Could not load '"+_47+"'; last tried '"+_4b+"'");
+}
+}
+if(!_49&&!this["isXDomain"]){
+_4a=this.findModule(_47,false);
+if(!_4a){
+dojo.raise("symbol '"+_47+"' is not defined after loading '"+_4b+"'");
+}
+}
+return _4a;
+};
+dojo.hostenv.startPackage=function(_52){
+var _53=String(_52);
+var _54=_53;
+var _55=_52.split(/\./);
+if(_55[_55.length-1]=="*"){
+_55.pop();
+_54=_55.join(".");
+}
+var _56=dojo.evalObjPath(_54,true);
+this.loaded_modules_[_53]=_56;
+this.loaded_modules_[_54]=_56;
+return _56;
+};
+dojo.hostenv.findModule=function(_57,_58){
+var lmn=String(_57);
+if(this.loaded_modules_[lmn]){
+return this.loaded_modules_[lmn];
+}
+if(_58){
+dojo.raise("no loaded module named '"+_57+"'");
+}
+return null;
+};
+dojo.kwCompoundRequire=function(_5a){
+var _5b=_5a["common"]||[];
+var _5c=_5a[dojo.hostenv.name_]?_5b.concat(_5a[dojo.hostenv.name_]||[]):_5b.concat(_5a["default"]||[]);
+for(var x=0;x<_5c.length;x++){
+var _5e=_5c[x];
+if(_5e.constructor==Array){
+dojo.hostenv.loadModule.apply(dojo.hostenv,_5e);
+}else{
+dojo.hostenv.loadModule(_5e);
+}
+}
+};
+dojo.require=function(_5f){
+dojo.hostenv.loadModule.apply(dojo.hostenv,arguments);
+};
+dojo.requireIf=function(_60,_61){
+var _62=arguments[0];
+if((_62===true)||(_62=="common")||(_62&&dojo.render[_62].capable)){
+var _63=[];
+for(var i=1;i<arguments.length;i++){
+_63.push(arguments[i]);
+}
+dojo.require.apply(dojo,_63);
+}
+};
+dojo.requireAfterIf=dojo.requireIf;
+dojo.provide=function(_65){
+return dojo.hostenv.startPackage.apply(dojo.hostenv,arguments);
+};
+dojo.registerModulePath=function(_66,_67){
+return dojo.hostenv.setModulePrefix(_66,_67);
+};
+dojo.setModulePrefix=function(_68,_69){
+dojo.deprecated("dojo.setModulePrefix(\""+_68+"\", \""+_69+"\")","replaced by dojo.registerModulePath","0.5");
+return dojo.registerModulePath(_68,_69);
+};
+dojo.exists=function(obj,_6b){
+var p=_6b.split(".");
+for(var i=0;i<p.length;i++){
+if(!obj[p[i]]){
+return false;
+}
+obj=obj[p[i]];
+}
+return true;
+};
+dojo.hostenv.normalizeLocale=function(_6e){
+return _6e?_6e.toLowerCase():dojo.locale;
+};
+dojo.hostenv.searchLocalePath=function(_6f,_70,_71){
+_6f=dojo.hostenv.normalizeLocale(_6f);
+var _72=_6f.split("-");
+var _73=[];
+for(var i=_72.length;i>0;i--){
+_73.push(_72.slice(0,i).join("-"));
+}
+_73.push(false);
+if(_70){
+_73.reverse();
+}
+for(var j=_73.length-1;j>=0;j--){
+var loc=_73[j]||"ROOT";
+var _77=_71(loc);
+if(_77){
+break;
+}
+}
+};
+dojo.hostenv.localesGenerated;
+dojo.hostenv.registerNlsPrefix=function(){
+dojo.registerModulePath("nls","nls");
+};
+dojo.hostenv.preloadLocalizations=function(){
+if(dojo.hostenv.localesGenerated){
+dojo.hostenv.registerNlsPrefix();
+function preload(_78){
+_78=dojo.hostenv.normalizeLocale(_78);
+dojo.hostenv.searchLocalePath(_78,true,function(loc){
+for(var i=0;i<dojo.hostenv.localesGenerated.length;i++){
+if(dojo.hostenv.localesGenerated[i]==loc){
+dojo["require"]("nls.dojo_"+loc);
+return true;
+}
+}
+return false;
+});
+}
+preload();
+var _7b=djConfig.extraLocale||[];
+for(var i=0;i<_7b.length;i++){
+preload(_7b[i]);
+}
+}
+dojo.hostenv.preloadLocalizations=function(){
+};
+};
+dojo.requireLocalization=function(_7d,_7e,_7f){
+dojo.hostenv.preloadLocalizations();
+var _80=[_7d,"nls",_7e].join(".");
+var _81=dojo.hostenv.findModule(_80);
+if(_81){
+if(djConfig.localizationComplete&&_81._built){
+return;
+}
+var _82=dojo.hostenv.normalizeLocale(_7f).replace("-","_");
+var _83=_80+"."+_82;
+if(dojo.hostenv.findModule(_83)){
+return;
+}
+}
+_81=dojo.hostenv.startPackage(_80);
+var _84=dojo.hostenv.getModuleSymbols(_7d);
+var _85=_84.concat("nls").join("/");
+var _86;
+dojo.hostenv.searchLocalePath(_7f,false,function(loc){
+var _88=loc.replace("-","_");
+var _89=_80+"."+_88;
+var _8a=false;
+if(!dojo.hostenv.findModule(_89)){
+dojo.hostenv.startPackage(_89);
+var _8b=[_85];
+if(loc!="ROOT"){
+_8b.push(loc);
+}
+_8b.push(_7e);
+var _8c=_8b.join("/")+".js";
+_8a=dojo.hostenv.loadPath(_8c,null,function(_8d){
+var _8e=function(){
+};
+_8e.prototype=_86;
+_81[_88]=new _8e();
+for(var j in _8d){
+_81[_88][j]=_8d[j];
+}
+});
+}else{
+_8a=true;
+}
+if(_8a&&_81[_88]){
+_86=_81[_88];
+}else{
+_81[_88]=_86;
+}
+});
+};
+(function(){
+var _90=djConfig.extraLocale;
+if(_90){
+if(!_90 instanceof Array){
+_90=[_90];
+}
+var req=dojo.requireLocalization;
+dojo.requireLocalization=function(m,b,_94){
+req(m,b,_94);
+if(_94){
+return;
+}
+for(var i=0;i<_90.length;i++){
+req(m,b,_90[i]);
+}
+};
+}
+})();
+}
+if(typeof window!="undefined"){
+(function(){
+if(djConfig.allowQueryConfig){
+var _96=document.location.toString();
+var _97=_96.split("?",2);
+if(_97.length>1){
+var _98=_97[1];
+var _99=_98.split("&");
+for(var x in _99){
+var sp=_99[x].split("=");
+if((sp[0].length>9)&&(sp[0].substr(0,9)=="djConfig.")){
+var opt=sp[0].substr(9);
+try{
+djConfig[opt]=eval(sp[1]);
+}
+catch(e){
+djConfig[opt]=sp[1];
+}
+}
+}
+}
+}
+if(((djConfig["baseScriptUri"]=="")||(djConfig["baseRelativePath"]==""))&&(document&&document.getElementsByTagName)){
+var _9d=document.getElementsByTagName("script");
+var _9e=/(__package__|dojo|bootstrap1)\.js([\?\.]|$)/i;
+for(var i=0;i<_9d.length;i++){
+var src=_9d[i].getAttribute("src");
+if(!src){
+continue;
+}
+var m=src.match(_9e);
+if(m){
+var _a2=src.substring(0,m.index);
+if(src.indexOf("bootstrap1")>-1){
+_a2+="../";
+}
+if(!this["djConfig"]){
+djConfig={};
+}
+if(djConfig["baseScriptUri"]==""){
+djConfig["baseScriptUri"]=_a2;
+}
+if(djConfig["baseRelativePath"]==""){
+djConfig["baseRelativePath"]=_a2;
+}
+break;
+}
+}
+}
+var dr=dojo.render;
+var drh=dojo.render.html;
+var drs=dojo.render.svg;
+var dua=(drh.UA=navigator.userAgent);
+var dav=(drh.AV=navigator.appVersion);
+var t=true;
+var f=false;
+drh.capable=t;
+drh.support.builtin=t;
+dr.ver=parseFloat(drh.AV);
+dr.os.mac=dav.indexOf("Macintosh")>=0;
+dr.os.win=dav.indexOf("Windows")>=0;
+dr.os.linux=dav.indexOf("X11")>=0;
+drh.opera=dua.indexOf("Opera")>=0;
+drh.khtml=(dav.indexOf("Konqueror")>=0)||(dav.indexOf("Safari")>=0);
+drh.safari=dav.indexOf("Safari")>=0;
+var _aa=dua.indexOf("Gecko");
+drh.mozilla=drh.moz=(_aa>=0)&&(!drh.khtml);
+if(drh.mozilla){
+drh.geckoVersion=dua.substring(_aa+6,_aa+14);
+}
+drh.ie=(document.all)&&(!drh.opera);
+drh.ie50=drh.ie&&dav.indexOf("MSIE 5.0")>=0;
+drh.ie55=drh.ie&&dav.indexOf("MSIE 5.5")>=0;
+drh.ie60=drh.ie&&dav.indexOf("MSIE 6.0")>=0;
+drh.ie70=drh.ie&&dav.indexOf("MSIE 7.0")>=0;
+var cm=document["compatMode"];
+drh.quirks=(cm=="BackCompat")||(cm=="QuirksMode")||drh.ie55||drh.ie50;
+dojo.locale=dojo.locale||(drh.ie?navigator.userLanguage:navigator.language).toLowerCase();
+dr.vml.capable=drh.ie;
+drs.capable=f;
+drs.support.plugin=f;
+drs.support.builtin=f;
+var _ac=window["document"];
+var tdi=_ac["implementation"];
+if((tdi)&&(tdi["hasFeature"])&&(tdi.hasFeature("org.w3c.dom.svg","1.0"))){
+drs.capable=t;
+drs.support.builtin=t;
+drs.support.plugin=f;
+}
+if(drh.safari){
+var tmp=dua.split("AppleWebKit/")[1];
+var ver=parseFloat(tmp.split(" ")[0]);
+if(ver>=420){
+drs.capable=t;
+drs.support.builtin=t;
+drs.support.plugin=f;
+}
+}
+})();
+dojo.hostenv.startPackage("dojo.hostenv");
+dojo.render.name=dojo.hostenv.name_="browser";
+dojo.hostenv.searchIds=[];
+dojo.hostenv._XMLHTTP_PROGIDS=["Msxml2.XMLHTTP","Microsoft.XMLHTTP","Msxml2.XMLHTTP.4.0"];
+dojo.hostenv.getXmlhttpObject=function(){
+var _b0=null;
+var _b1=null;
+try{
+_b0=new XMLHttpRequest();
+}
+catch(e){
+}
+if(!_b0){
+for(var i=0;i<3;++i){
+var _b3=dojo.hostenv._XMLHTTP_PROGIDS[i];
+try{
+_b0=new ActiveXObject(_b3);
+}
+catch(e){
+_b1=e;
+}
+if(_b0){
+dojo.hostenv._XMLHTTP_PROGIDS=[_b3];
+break;
+}
+}
+}
+if(!_b0){
+return dojo.raise("XMLHTTP not available",_b1);
+}
+return _b0;
+};
+dojo.hostenv._blockAsync=false;
+dojo.hostenv.getText=function(uri,_b5,_b6){
+if(!_b5){
+this._blockAsync=true;
+}
+var _b7=this.getXmlhttpObject();
+function isDocumentOk(_b8){
+var _b9=_b8["status"];
+return Boolean((!_b9)||((200<=_b9)&&(300>_b9))||(_b9==304));
+}
+if(_b5){
+var _ba=this,_bb=null,gbl=dojo.global();
+var xhr=dojo.evalObjPath("dojo.io.XMLHTTPTransport");
+_b7.onreadystatechange=function(){
+if(_bb){
+gbl.clearTimeout(_bb);
+_bb=null;
+}
+if(_ba._blockAsync||(xhr&&xhr._blockAsync)){
+_bb=gbl.setTimeout(function(){
+_b7.onreadystatechange.apply(this);
+},10);
+}else{
+if(4==_b7.readyState){
+if(isDocumentOk(_b7)){
+_b5(_b7.responseText);
+}
+}
+}
+};
+}
+_b7.open("GET",uri,_b5?true:false);
+try{
+_b7.send(null);
+if(_b5){
+return null;
+}
+if(!isDocumentOk(_b7)){
+var err=Error("Unable to load "+uri+" status:"+_b7.status);
+err.status=_b7.status;
+err.responseText=_b7.responseText;
+throw err;
+}
+}
+catch(e){
+this._blockAsync=false;
+if((_b6)&&(!_b5)){
+return null;
+}else{
+throw e;
+}
+}
+this._blockAsync=false;
+return _b7.responseText;
+};
+dojo.hostenv.defaultDebugContainerId="dojoDebug";
+dojo.hostenv._println_buffer=[];
+dojo.hostenv._println_safe=false;
+dojo.hostenv.println=function(_bf){
+if(!dojo.hostenv._println_safe){
+dojo.hostenv._println_buffer.push(_bf);
+}else{
+try{
+var _c0=document.getElementById(djConfig.debugContainerId?djConfig.debugContainerId:dojo.hostenv.defaultDebugContainerId);
+if(!_c0){
+_c0=dojo.body();
+}
+var div=document.createElement("div");
+div.appendChild(document.createTextNode(_bf));
+_c0.appendChild(div);
+}
+catch(e){
+try{
+document.write("<div>"+_bf+"</div>");
+}
+catch(e2){
+window.status=_bf;
+}
+}
+}
+};
+dojo.addOnLoad(function(){
+dojo.hostenv._println_safe=true;
+while(dojo.hostenv._println_buffer.length>0){
+dojo.hostenv.println(dojo.hostenv._println_buffer.shift());
+}
+});
+function dj_addNodeEvtHdlr(_c2,_c3,fp,_c5){
+var _c6=_c2["on"+_c3]||function(){
+};
+_c2["on"+_c3]=function(){
+fp.apply(_c2,arguments);
+_c6.apply(_c2,arguments);
+};
+return true;
+}
+function dj_load_init(e){
+var _c8=(e&&e.type)?e.type.toLowerCase():"load";
+if(arguments.callee.initialized||(_c8!="domcontentloaded"&&_c8!="load")){
+return;
+}
+arguments.callee.initialized=true;
+if(typeof (_timer)!="undefined"){
+clearInterval(_timer);
+delete _timer;
+}
+var _c9=function(){
+if(dojo.render.html.ie){
+dojo.hostenv.makeWidgets();
+}
+};
+if(dojo.hostenv.inFlightCount==0){
+_c9();
+dojo.hostenv.modulesLoaded();
+}else{
+dojo.addOnLoad(_c9);
+}
+}
+if(document.addEventListener){
+if(dojo.render.html.opera||(dojo.render.html.moz&&!djConfig.delayMozLoadingFix)){
+document.addEventListener("DOMContentLoaded",dj_load_init,null);
+}
+window.addEventListener("load",dj_load_init,null);
+}
+if(dojo.render.html.ie&&dojo.render.os.win){
+document.attachEvent("onreadystatechange",function(e){
+if(document.readyState=="complete"){
+dj_load_init();
+}
+});
+}
+if(/(WebKit|khtml)/i.test(navigator.userAgent)){
+var _timer=setInterval(function(){
+if(/loaded|complete/.test(document.readyState)){
+dj_load_init();
+}
+},10);
+}
+if(dojo.render.html.ie){
+dj_addNodeEvtHdlr(window,"beforeunload",function(){
+dojo.hostenv._unloading=true;
+window.setTimeout(function(){
+dojo.hostenv._unloading=false;
+},0);
+});
+}
+dj_addNodeEvtHdlr(window,"unload",function(){
+dojo.hostenv.unloaded();
+if((!dojo.render.html.ie)||(dojo.render.html.ie&&dojo.hostenv._unloading)){
+dojo.hostenv.unloaded();
+}
+});
+dojo.hostenv.makeWidgets=function(){
+var _cb=[];
+if(djConfig.searchIds&&djConfig.searchIds.length>0){
+_cb=_cb.concat(djConfig.searchIds);
+}
+if(dojo.hostenv.searchIds&&dojo.hostenv.searchIds.length>0){
+_cb=_cb.concat(dojo.hostenv.searchIds);
+}
+if((djConfig.parseWidgets)||(_cb.length>0)){
+if(dojo.evalObjPath("dojo.widget.Parse")){
+var _cc=new dojo.xml.Parse();
+if(_cb.length>0){
+for(var x=0;x<_cb.length;x++){
+var _ce=document.getElementById(_cb[x]);
+if(!_ce){
+continue;
+}
+var _cf=_cc.parseElement(_ce,null,true);
+dojo.widget.getParser().createComponents(_cf);
+}
+}else{
+if(djConfig.parseWidgets){
+var _cf=_cc.parseElement(dojo.body(),null,true);
+dojo.widget.getParser().createComponents(_cf);
+}
+}
+}
+}
+};
+dojo.addOnLoad(function(){
+if(!dojo.render.html.ie){
+dojo.hostenv.makeWidgets();
+}
+});
+try{
+if(dojo.render.html.ie){
+document.namespaces.add("v","urn:schemas-microsoft-com:vml");
+document.createStyleSheet().addRule("v\\:*","behavior:url(#default#VML)");
+}
+}
+catch(e){
+}
+dojo.hostenv.writeIncludes=function(){
+};
+if(!dj_undef("document",this)){
+dj_currentDocument=this.document;
+}
+dojo.doc=function(){
+return dj_currentDocument;
+};
+dojo.body=function(){
+return dojo.doc().body||dojo.doc().getElementsByTagName("body")[0];
+};
+dojo.byId=function(id,doc){
+if((id)&&((typeof id=="string")||(id instanceof String))){
+if(!doc){
+doc=dj_currentDocument;
+}
+var ele=doc.getElementById(id);
+if(ele&&(ele.id!=id)&&doc.all){
+ele=null;
+eles=doc.all[id];
+if(eles){
+if(eles.length){
+for(var i=0;i<eles.length;i++){
+if(eles[i].id==id){
+ele=eles[i];
+break;
+}
+}
+}else{
+ele=eles;
+}
+}
+}
+return ele;
+}
+return id;
+};
+dojo.setContext=function(_d4,_d5){
+dj_currentContext=_d4;
+dj_currentDocument=_d5;
+};
+dojo._fireCallback=function(_d6,_d7,_d8){
+if((_d7)&&((typeof _d6=="string")||(_d6 instanceof String))){
+_d6=_d7[_d6];
+}
+return (_d7?_d6.apply(_d7,_d8||[]):_d6());
+};
+dojo.withGlobal=function(_d9,_da,_db,_dc){
+var _dd;
+var _de=dj_currentContext;
+var _df=dj_currentDocument;
+try{
+dojo.setContext(_d9,_d9.document);
+_dd=dojo._fireCallback(_da,_db,_dc);
+}
+finally{
+dojo.setContext(_de,_df);
+}
+return _dd;
+};
+dojo.withDoc=function(_e0,_e1,_e2,_e3){
+var _e4;
+var _e5=dj_currentDocument;
+try{
+dj_currentDocument=_e0;
+_e4=dojo._fireCallback(_e1,_e2,_e3);
+}
+finally{
+dj_currentDocument=_e5;
+}
+return _e4;
+};
+}
+(function(){
+if(typeof dj_usingBootstrap!="undefined"){
+return;
+}
+var _e6=false;
+var _e7=false;
+var _e8=false;
+if((typeof this["load"]=="function")&&((typeof this["Packages"]=="function")||(typeof this["Packages"]=="object"))){
+_e6=true;
+}else{
+if(typeof this["load"]=="function"){
+_e7=true;
+}else{
+if(window.widget){
+_e8=true;
+}
+}
+}
+var _e9=[];
+if((this["djConfig"])&&((djConfig["isDebug"])||(djConfig["debugAtAllCosts"]))){
+_e9.push("debug.js");
+}
+if((this["djConfig"])&&(djConfig["debugAtAllCosts"])&&(!_e6)&&(!_e8)){
+_e9.push("browser_debug.js");
+}
+var _ea=djConfig["baseScriptUri"];
+if((this["djConfig"])&&(djConfig["baseLoaderUri"])){
+_ea=djConfig["baseLoaderUri"];
+}
+for(var x=0;x<_e9.length;x++){
+var _ec=_ea+"src/"+_e9[x];
+if(_e6||_e7){
+load(_ec);
+}else{
+try{
+document.write("<scr"+"ipt type='text/javascript' src='"+_ec+"'></scr"+"ipt>");
+}
+catch(e){
+var _ed=document.createElement("script");
+_ed.src=_ec;
+document.getElementsByTagName("head")[0].appendChild(_ed);
+}
+}
+}
+})();
+dojo.provide("dojo.lang.common");
+dojo.lang.inherits=function(_ee,_ef){
+if(typeof _ef!="function"){
+dojo.raise("dojo.inherits: superclass argument ["+_ef+"] must be a function (subclass: ["+_ee+"']");
+}
+_ee.prototype=new _ef();
+_ee.prototype.constructor=_ee;
+_ee.superclass=_ef.prototype;
+_ee["super"]=_ef.prototype;
+};
+dojo.lang._mixin=function(obj,_f1){
+var _f2={};
+for(var x in _f1){
+if((typeof _f2[x]=="undefined")||(_f2[x]!=_f1[x])){
+obj[x]=_f1[x];
+}
+}
+if(dojo.render.html.ie&&(typeof (_f1["toString"])=="function")&&(_f1["toString"]!=obj["toString"])&&(_f1["toString"]!=_f2["toString"])){
+obj.toString=_f1.toString;
+}
+return obj;
+};
+dojo.lang.mixin=function(obj,_f5){
+for(var i=1,l=arguments.length;i<l;i++){
+dojo.lang._mixin(obj,arguments[i]);
+}
+return obj;
+};
+dojo.lang.extend=function(_f8,_f9){
+for(var i=1,l=arguments.length;i<l;i++){
+dojo.lang._mixin(_f8.prototype,arguments[i]);
+}
+return _f8;
+};
+dojo.inherits=dojo.lang.inherits;
+dojo.mixin=dojo.lang.mixin;
+dojo.extend=dojo.lang.extend;
+dojo.lang.find=function(_fc,_fd,_fe,_ff){
+if(!dojo.lang.isArrayLike(_fc)&&dojo.lang.isArrayLike(_fd)){
+dojo.deprecated("dojo.lang.find(value, array)","use dojo.lang.find(array, value) instead","0.5");
+var temp=_fc;
+_fc=_fd;
+_fd=temp;
+}
+var _101=dojo.lang.isString(_fc);
+if(_101){
+_fc=_fc.split("");
+}
+if(_ff){
+var step=-1;
+var i=_fc.length-1;
+var end=-1;
+}else{
+var step=1;
+var i=0;
+var end=_fc.length;
+}
+if(_fe){
+while(i!=end){
+if(_fc[i]===_fd){
+return i;
+}
+i+=step;
+}
+}else{
+while(i!=end){
+if(_fc[i]==_fd){
+return i;
+}
+i+=step;
+}
+}
+return -1;
+};
+dojo.lang.indexOf=dojo.lang.find;
+dojo.lang.findLast=function(_105,_106,_107){
+return dojo.lang.find(_105,_106,_107,true);
+};
+dojo.lang.lastIndexOf=dojo.lang.findLast;
+dojo.lang.inArray=function(_108,_109){
+return dojo.lang.find(_108,_109)>-1;
+};
+dojo.lang.isObject=function(it){
+if(typeof it=="undefined"){
+return false;
+}
+return (typeof it=="object"||it===null||dojo.lang.isArray(it)||dojo.lang.isFunction(it));
+};
+dojo.lang.isArray=function(it){
+return (it&&it instanceof Array||typeof it=="array");
+};
+dojo.lang.isArrayLike=function(it){
+if((!it)||(dojo.lang.isUndefined(it))){
+return false;
+}
+if(dojo.lang.isString(it)){
+return false;
+}
+if(dojo.lang.isFunction(it)){
+return false;
+}
+if(dojo.lang.isArray(it)){
+return true;
+}
+if((it.tagName)&&(it.tagName.toLowerCase()=="form")){
+return false;
+}
+if(dojo.lang.isNumber(it.length)&&isFinite(it.length)){
+return true;
+}
+return false;
+};
+dojo.lang.isFunction=function(it){
+if(!it){
+return false;
+}
+if((typeof (it)=="function")&&(it=="[object NodeList]")){
+return false;
+}
+return (it instanceof Function||typeof it=="function");
+};
+dojo.lang.isString=function(it){
+return (typeof it=="string"||it instanceof String);
+};
+dojo.lang.isAlien=function(it){
+if(!it){
+return false;
+}
+return !dojo.lang.isFunction()&&/\{\s*\[native code\]\s*\}/.test(String(it));
+};
+dojo.lang.isBoolean=function(it){
+return (it instanceof Boolean||typeof it=="boolean");
+};
+dojo.lang.isNumber=function(it){
+return (it instanceof Number||typeof it=="number");
+};
+dojo.lang.isUndefined=function(it){
+return ((typeof (it)=="undefined")&&(it==undefined));
+};
+dojo.provide("dojo.lang");
+dojo.deprecated("dojo.lang","replaced by dojo.lang.common","0.5");
+dojo.provide("dojo.dom");
+dojo.dom.ELEMENT_NODE=1;
+dojo.dom.ATTRIBUTE_NODE=2;
+dojo.dom.TEXT_NODE=3;
+dojo.dom.CDATA_SECTION_NODE=4;
+dojo.dom.ENTITY_REFERENCE_NODE=5;
+dojo.dom.ENTITY_NODE=6;
+dojo.dom.PROCESSING_INSTRUCTION_NODE=7;
+dojo.dom.COMMENT_NODE=8;
+dojo.dom.DOCUMENT_NODE=9;
+dojo.dom.DOCUMENT_TYPE_NODE=10;
+dojo.dom.DOCUMENT_FRAGMENT_NODE=11;
+dojo.dom.NOTATION_NODE=12;
+dojo.dom.dojoml="http://www.dojotoolkit.org/2004/dojoml";
+dojo.dom.xmlns={svg:"http://www.w3.org/2000/svg",smil:"http://www.w3.org/2001/SMIL20/",mml:"http://www.w3.org/1998/Math/MathML",cml:"http://www.xml-cml.org",xlink:"http://www.w3.org/1999/xlink",xhtml:"http://www.w3.org/1999/xhtml",xul:"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",xbl:"http://www.mozilla.org/xbl",fo:"http://www.w3.org/1999/XSL/Format",xsl:"http://www.w3.org/1999/XSL/Transform",xslt:"http://www.w3.org/1999/XSL/Transform",xi:"http://www.w3.org/2001/XInclude",xforms:"http://www.w3.org/2002/01/xforms",saxon:"http://icl.com/saxon",xalan:"http://xml.apache.org/xslt",xsd:"http://www.w3.org/2001/XMLSchema",dt:"http://www.w3.org/2001/XMLSchema-datatypes",xsi:"http://www.w3.org/2001/XMLSchema-instance",rdf:"http://www.w3.org/1999/02/22-rdf-syntax-ns#",rdfs:"http://www.w3.org/2000/01/rdf-schema#",dc:"http://purl.org/dc/elements/1.1/",dcq:"http://purl.org/dc/qualifiers/1.0","soap-env":"http://schemas.xmlsoap.org/soap/envelope/",wsdl:"http://schemas.xmls
 oap.org/wsdl/",AdobeExtensions:"http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"};
+dojo.dom.isNode=function(wh){
+if(typeof Element=="function"){
+try{
+return wh instanceof Element;
+}
+catch(E){
+}
+}else{
+return wh&&!isNaN(wh.nodeType);
+}
+};
+dojo.dom.getUniqueId=function(){
+var _114=dojo.doc();
+do{
+var id="dj_unique_"+(++arguments.callee._idIncrement);
+}while(_114.getElementById(id));
+return id;
+};
+dojo.dom.getUniqueId._idIncrement=0;
+dojo.dom.firstElement=dojo.dom.getFirstChildElement=function(_116,_117){
+var node=_116.firstChild;
+while(node&&node.nodeType!=dojo.dom.ELEMENT_NODE){
+node=node.nextSibling;
+}
+if(_117&&node&&node.tagName&&node.tagName.toLowerCase()!=_117.toLowerCase()){
+node=dojo.dom.nextElement(node,_117);
+}
+return node;
+};
+dojo.dom.lastElement=dojo.dom.getLastChildElement=function(_119,_11a){
+var node=_119.lastChild;
+while(node&&node.nodeType!=dojo.dom.ELEMENT_NODE){
+node=node.previousSibling;
+}
+if(_11a&&node&&node.tagName&&node.tagName.toLowerCase()!=_11a.toLowerCase()){
+node=dojo.dom.prevElement(node,_11a);
+}
+return node;
+};
+dojo.dom.nextElement=dojo.dom.getNextSiblingElement=function(node,_11d){
+if(!node){
+return null;
+}
+do{
+node=node.nextSibling;
+}while(node&&node.nodeType!=dojo.dom.ELEMENT_NODE);
+if(node&&_11d&&_11d.toLowerCase()!=node.tagName.toLowerCase()){
+return dojo.dom.nextElement(node,_11d);
+}
+return node;
+};
+dojo.dom.prevElement=dojo.dom.getPreviousSiblingElement=function(node,_11f){
+if(!node){
+return null;
+}
+if(_11f){
+_11f=_11f.toLowerCase();
+}
+do{
+node=node.previousSibling;
+}while(node&&node.nodeType!=dojo.dom.ELEMENT_NODE);
+if(node&&_11f&&_11f.toLowerCase()!=node.tagName.toLowerCase()){
+return dojo.dom.prevElement(node,_11f);
+}
+return node;
+};
+dojo.dom.moveChildren=function(_120,_121,trim){
+var _123=0;
+if(trim){
+while(_120.hasChildNodes()&&_120.firstChild.nodeType==dojo.dom.TEXT_NODE){
+_120.removeChild(_120.firstChild);
+}
+while(_120.hasChildNodes()&&_120.lastChild.nodeType==dojo.dom.TEXT_NODE){
+_120.removeChild(_120.lastChild);
+}
+}
+while(_120.hasChildNodes()){
+_121.appendChild(_120.firstChild);
+_123++;
+}
+return _123;
+};
+dojo.dom.copyChildren=function(_124,_125,trim){
+var _127=_124.cloneNode(true);
+return this.moveChildren(_127,_125,trim);
+};
+dojo.dom.removeChildren=function(node){
+var _129=node.childNodes.length;
+while(node.hasChildNodes()){
+node.removeChild(node.firstChild);
+}
+return _129;
+};
+dojo.dom.replaceChildren=function(node,_12b){
+dojo.dom.removeChildren(node);
+node.appendChild(_12b);
+};
+dojo.dom.removeNode=function(node){
+if(node&&node.parentNode){
+return node.parentNode.removeChild(node);
+}
+};
+dojo.dom.getAncestors=function(node,_12e,_12f){
+var _130=[];
+var _131=(_12e&&(_12e instanceof Function||typeof _12e=="function"));
+while(node){
+if(!_131||_12e(node)){
+_130.push(node);
+}
+if(_12f&&_130.length>0){
+return _130[0];
+}
+node=node.parentNode;
+}
+if(_12f){
+return null;
+}
+return _130;
+};
+dojo.dom.getAncestorsByTag=function(node,tag,_134){
+tag=tag.toLowerCase();
+return dojo.dom.getAncestors(node,function(el){
+return ((el.tagName)&&(el.tagName.toLowerCase()==tag));
+},_134);
+};
+dojo.dom.getFirstAncestorByTag=function(node,tag){
+return dojo.dom.getAncestorsByTag(node,tag,true);
+};
+dojo.dom.isDescendantOf=function(node,_139,_13a){
+if(_13a&&node){
+node=node.parentNode;
+}
+while(node){
+if(node==_139){
+return true;
+}
+node=node.parentNode;
+}
+return false;
+};
+dojo.dom.innerXML=function(node){
+if(node.innerXML){
+return node.innerXML;
+}else{
+if(node.xml){
+return node.xml;
+}else{
+if(typeof XMLSerializer!="undefined"){
+return (new XMLSerializer()).serializeToString(node);
+}
+}
+}
+};
+dojo.dom.createDocument=function(){
+var doc=null;
+var _13d=dojo.doc();
+if(!dj_undef("ActiveXObject")){
+var _13e=["MSXML2","Microsoft","MSXML","MSXML3"];
+for(var i=0;i<_13e.length;i++){
+try{
+doc=new ActiveXObject(_13e[i]+".XMLDOM");
+}
+catch(e){
+}
+if(doc){
+break;
+}
+}
+}else{
+if((_13d.implementation)&&(_13d.implementation.createDocument)){
+doc=_13d.implementation.createDocument("","",null);
+}
+}
+return doc;
+};
+dojo.dom.createDocumentFromText=function(str,_141){
+if(!_141){
+_141="text/xml";
+}
+if(!dj_undef("DOMParser")){
+var _142=new DOMParser();
+return _142.parseFromString(str,_141);
+}else{
+if(!dj_undef("ActiveXObject")){
+var _143=dojo.dom.createDocument();
+if(_143){
+_143.async=false;
+_143.loadXML(str);
+return _143;
+}else{
+dojo.debug("toXml didn't work?");
+}
+}else{
+var _144=dojo.doc();
+if(_144.createElement){
+var tmp=_144.createElement("xml");
+tmp.innerHTML=str;
+if(_144.implementation&&_144.implementation.createDocument){
+var _146=_144.implementation.createDocument("foo","",null);
+for(var i=0;i<tmp.childNodes.length;i++){
+_146.importNode(tmp.childNodes.item(i),true);
+}
+return _146;
+}
+return ((tmp.document)&&(tmp.document.firstChild?tmp.document.firstChild:tmp));
+}
+}
+}
+return null;
+};
+dojo.dom.prependChild=function(node,_149){
+if(_149.firstChild){
+_149.insertBefore(node,_149.firstChild);
+}else{
+_149.appendChild(node);
+}
+return true;
+};
+dojo.dom.insertBefore=function(node,ref,_14c){
+if(_14c!=true&&(node===ref||node.nextSibling===ref)){
+return false;
+}
+var _14d=ref.parentNode;
+_14d.insertBefore(node,ref);
+return true;
+};
+dojo.dom.insertAfter=function(node,ref,_150){
+var pn=ref.parentNode;
+if(ref==pn.lastChild){
+if((_150!=true)&&(node===ref)){
+return false;
+}
+pn.appendChild(node);
+}else{
+return this.insertBefore(node,ref.nextSibling,_150);
+}
+return true;
+};
+dojo.dom.insertAtPosition=function(node,ref,_154){
+if((!node)||(!ref)||(!_154)){
+return false;
+}
+switch(_154.toLowerCase()){
+case "before":
+return dojo.dom.insertBefore(node,ref);
+case "after":
+return dojo.dom.insertAfter(node,ref);
+case "first":
+if(ref.firstChild){
+return dojo.dom.insertBefore(node,ref.firstChild);
+}else{
+ref.appendChild(node);
+return true;
+}
+break;
+default:
+ref.appendChild(node);
+return true;
+}
+};
+dojo.dom.insertAtIndex=function(node,_156,_157){
+var _158=_156.childNodes;
+if(!_158.length){
+_156.appendChild(node);
+return true;
+}
+var _159=null;
+for(var i=0;i<_158.length;i++){
+var _15b=_158.item(i)["getAttribute"]?parseInt(_158.item(i).getAttribute("dojoinsertionindex")):-1;
+if(_15b<_157){
+_159=_158.item(i);
+}
+}
+if(_159){
+return dojo.dom.insertAfter(node,_159);
+}else{
+return dojo.dom.insertBefore(node,_158.item(0));
+}
+};
+dojo.dom.textContent=function(node,text){
+if(arguments.length>1){
+var _15e=dojo.doc();
+dojo.dom.replaceChildren(node,_15e.createTextNode(text));
+return text;
+}else{
+if(node.textContent!=undefined){
+return node.textContent;
+}
+var _15f="";
+if(node==null){
+return _15f;
+}
+for(var i=0;i<node.childNodes.length;i++){
+switch(node.childNodes[i].nodeType){
+case 1:
+case 5:
+_15f+=dojo.dom.textContent(node.childNodes[i]);
+break;
+case 3:
+case 2:
+case 4:
+_15f+=node.childNodes[i].nodeValue;
+break;
+default:
+break;
+}
+}
+return _15f;
+}
+};
+dojo.dom.hasParent=function(node){
+return node&&node.parentNode&&dojo.dom.isNode(node.parentNode);
+};
+dojo.dom.isTag=function(node){
+if(node&&node.tagName){
+for(var i=1;i<arguments.length;i++){
+if(node.tagName==String(arguments[i])){
+return String(arguments[i]);
+}
+}
+}
+return "";
+};
+dojo.dom.setAttributeNS=function(elem,_165,_166,_167){
+if(elem==null||((elem==undefined)&&(typeof elem=="undefined"))){
+dojo.raise("No element given to dojo.dom.setAttributeNS");
+}
+if(!((elem.setAttributeNS==undefined)&&(typeof elem.setAttributeNS=="undefined"))){
+elem.setAttributeNS(_165,_166,_167);
+}else{
+var _168=elem.ownerDocument;
+var _169=_168.createNode(2,_166,_165);
+_169.nodeValue=_167;
+elem.setAttributeNode(_169);
+}
+};
+dojo.provide("dojo.html.common");
+dojo.lang.mixin(dojo.html,dojo.dom);
+dojo.html.body=function(){
+dojo.deprecated("dojo.html.body() moved to dojo.body()","0.5");
+return dojo.body();
+};
+dojo.html.getEventTarget=function(evt){
+if(!evt){
+evt=dojo.global().event||{};
+}
+var t=(evt.srcElement?evt.srcElement:(evt.target?evt.target:null));
+while((t)&&(t.nodeType!=1)){
+t=t.parentNode;
+}
+return t;
+};
+dojo.html.getViewport=function(){
+var _16c=dojo.global();
+var _16d=dojo.doc();
+var w=0;
+var h=0;
+if(dojo.render.html.mozilla){
+w=_16d.documentElement.clientWidth;
+h=_16c.innerHeight;
+}else{
+if(!dojo.render.html.opera&&_16c.innerWidth){
+w=_16c.innerWidth;
+h=_16c.innerHeight;
+}else{
+if(!dojo.render.html.opera&&dojo.exists(_16d,"documentElement.clientWidth")){
+var w2=_16d.documentElement.clientWidth;
+if(!w||w2&&w2<w){
+w=w2;
+}
+h=_16d.documentElement.clientHeight;
+}else{
+if(dojo.body().clientWidth){
+w=dojo.body().clientWidth;
+h=dojo.body().clientHeight;
+}
+}
+}
+}
+return {width:w,height:h};
+};
+dojo.html.getScroll=function(){
+var _171=dojo.global();
+var _172=dojo.doc();
+var top=_171.pageYOffset||_172.documentElement.scrollTop||dojo.body().scrollTop||0;
+var left=_171.pageXOffset||_172.documentElement.scrollLeft||dojo.body().scrollLeft||0;
+return {top:top,left:left,offset:{x:left,y:top}};
+};
+dojo.html.getParentByType=function(node,type){
+var _177=dojo.doc();
+var _178=dojo.byId(node);
+type=type.toLowerCase();
+while((_178)&&(_178.nodeName.toLowerCase()!=type)){
+if(_178==(_177["body"]||_177["documentElement"])){
+return null;
+}
+_178=_178.parentNode;
+}
+return _178;
+};
+dojo.html.getAttribute=function(node,attr){
+node=dojo.byId(node);
+if((!node)||(!node.getAttribute)){
+return null;
+}
+var ta=typeof attr=="string"?attr:new String(attr);
+var v=node.getAttribute(ta.toUpperCase());
+if((v)&&(typeof v=="string")&&(v!="")){
+return v;
+}
+if(v&&v.value){
+return v.value;
+}
+if((node.getAttributeNode)&&(node.getAttributeNode(ta))){
+return (node.getAttributeNode(ta)).value;
+}else{
+if(node.getAttribute(ta)){
+return node.getAttribute(ta);
+}else{
+if(node.getAttribute(ta.toLowerCase())){
+return node.getAttribute(ta.toLowerCase());
+}
+}
+}
+return null;
+};
+dojo.html.hasAttribute=function(node,attr){
+return dojo.html.getAttribute(dojo.byId(node),attr)?true:false;
+};
+dojo.html.getCursorPosition=function(e){
+e=e||dojo.global().event;
+var _180={x:0,y:0};
+if(e.pageX||e.pageY){
+_180.x=e.pageX;
+_180.y=e.pageY;
+}else{
+var de=dojo.doc().documentElement;
+var db=dojo.body();
+_180.x=e.clientX+((de||db)["scrollLeft"])-((de||db)["clientLeft"]);
+_180.y=e.clientY+((de||db)["scrollTop"])-((de||db)["clientTop"]);
+}
+return _180;
+};
+dojo.html.isTag=function(node){
+node=dojo.byId(node);
+if(node&&node.tagName){
+for(var i=1;i<arguments.length;i++){
+if(node.tagName.toLowerCase()==String(arguments[i]).toLowerCase()){
+return String(arguments[i]).toLowerCase();
+}
+}
+}
+return "";
+};
+if(dojo.render.html.ie&&!dojo.render.html.ie70){
+if(window.location.href.substr(0,6).toLowerCase()!="https:"){
+(function(){
+var _185=dojo.doc().createElement("script");
+_185.src="javascript:'dojo.html.createExternalElement=function(doc, tag){ return doc.createElement(tag); }'";
+dojo.doc().getElementsByTagName("head")[0].appendChild(_185);
+})();
+}
+}else{
+dojo.html.createExternalElement=function(doc,tag){
+return doc.createElement(tag);
+};
+}
+dojo.html._callDeprecated=function(_188,_189,args,_18b,_18c){
+dojo.deprecated("dojo.html."+_188,"replaced by dojo.html."+_189+"("+(_18b?"node, {"+_18b+": "+_18b+"}":"")+")"+(_18c?"."+_18c:""),"0.5");
+var _18d=[];
+if(_18b){
+var _18e={};
+_18e[_18b]=args[1];
+_18d.push(args[0]);
+_18d.push(_18e);
+}else{
+_18d=args;
+}
+var ret=dojo.html[_189].apply(dojo.html,args);
+if(_18c){
+return ret[_18c];
+}else{
+return ret;
+}
+};
+dojo.html.getViewportWidth=function(){
+return dojo.html._callDeprecated("getViewportWidth","getViewport",arguments,null,"width");
+};
+dojo.html.getViewportHeight=function(){
+return dojo.html._callDeprecated("getViewportHeight","getViewport",arguments,null,"height");
+};
+dojo.html.getViewportSize=function(){
+return dojo.html._callDeprecated("getViewportSize","getViewport",arguments);
+};
+dojo.html.getScrollTop=function(){
+return dojo.html._callDeprecated("getScrollTop","getScroll",arguments,null,"top");
+};
+dojo.html.getScrollLeft=function(){
+return dojo.html._callDeprecated("getScrollLeft","getScroll",arguments,null,"left");
+};
+dojo.html.getScrollOffset=function(){
+return dojo.html._callDeprecated("getScrollOffset","getScroll",arguments,null,"offset");
+};
+dojo.provide("dojo.uri.Uri");
+dojo.uri=new function(){
+this.dojoUri=function(uri){
+return new dojo.uri.Uri(dojo.hostenv.getBaseScriptUri(),uri);
+};
+this.moduleUri=function(_191,uri){
+var loc=dojo.hostenv.getModulePrefix(_191);
+if(!loc){
+return null;
+}
+if(loc.lastIndexOf("/")!=loc.length-1){
+loc+="/";
+}
+return new dojo.uri.Uri(dojo.hostenv.getBaseScriptUri()+loc,uri);
+};
+this.Uri=function(){
+var uri=arguments[0];
+for(var i=1;i<arguments.length;i++){
+if(!arguments[i]){
+continue;
+}
+var _196=new dojo.uri.Uri(arguments[i].toString());
+var _197=new dojo.uri.Uri(uri.toString());
+if((_196.path=="")&&(_196.scheme==null)&&(_196.authority==null)&&(_196.query==null)){
+if(_196.fragment!=null){
+_197.fragment=_196.fragment;
+}
+_196=_197;
+}else{
+if(_196.scheme==null){
+_196.scheme=_197.scheme;
+if(_196.authority==null){
+_196.authority=_197.authority;
+if(_196.path.charAt(0)!="/"){
+var path=_197.path.substring(0,_197.path.lastIndexOf("/")+1)+_196.path;
+var segs=path.split("/");
+for(var j=0;j<segs.length;j++){
+if(segs[j]=="."){
+if(j==segs.length-1){
+segs[j]="";
+}else{
+segs.splice(j,1);
+j--;
+}
+}else{
+if(j>0&&!(j==1&&segs[0]=="")&&segs[j]==".."&&segs[j-1]!=".."){
+if(j==segs.length-1){
+segs.splice(j,1);
+segs[j-1]="";
+}else{
+segs.splice(j-1,2);
+j-=2;
+}
+}
+}
+}
+_196.path=segs.join("/");
+}
+}
+}
+}
+uri="";
+if(_196.scheme!=null){
+uri+=_196.scheme+":";
+}
+if(_196.authority!=null){
+uri+="//"+_196.authority;
+}
+uri+=_196.path;
+if(_196.query!=null){
+uri+="?"+_196.query;
+}
+if(_196.fragment!=null){
+uri+="#"+_196.fragment;
+}
+}
+this.uri=uri.toString();
+var _19b="^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?$";
+var r=this.uri.match(new RegExp(_19b));
+this.scheme=r[2]||(r[1]?"":null);
+this.authority=r[4]||(r[3]?"":null);
+this.path=r[5];
+this.query=r[7]||(r[6]?"":null);
+this.fragment=r[9]||(r[8]?"":null);
+if(this.authority!=null){
+_19b="^((([^:]+:)?([^@]+))@)?([^:]*)(:([0-9]+))?$";
+r=this.authority.match(new RegExp(_19b));
+this.user=r[3]||null;
+this.password=r[4]||null;
+this.host=r[5];
+this.port=r[7]||null;
+}
+this.toString=function(){
+return this.uri;
+};
+};
+};
+dojo.provide("dojo.html.style");
+dojo.html.getClass=function(node){
+node=dojo.byId(node);
+if(!node){
+return "";
+}
+var cs="";
+if(node.className){
+cs=node.className;
+}else{
+if(dojo.html.hasAttribute(node,"class")){
+cs=dojo.html.getAttribute(node,"class");
+}
+}
+return cs.replace(/^\s+|\s+$/g,"");
+};
+dojo.html.getClasses=function(node){
+var c=dojo.html.getClass(node);
+return (c=="")?[]:c.split(/\s+/g);
+};
+dojo.html.hasClass=function(node,_1a2){
+return (new RegExp("(^|\\s+)"+_1a2+"(\\s+|$)")).test(dojo.html.getClass(node));
+};
+dojo.html.prependClass=function(node,_1a4){
+_1a4+=" "+dojo.html.getClass(node);
+return dojo.html.setClass(node,_1a4);
+};
+dojo.html.addClass=function(node,_1a6){
+if(dojo.html.hasClass(node,_1a6)){
+return false;
+}
+_1a6=(dojo.html.getClass(node)+" "+_1a6).replace(/^\s+|\s+$/g,"");
+return dojo.html.setClass(node,_1a6);
+};
+dojo.html.setClass=function(node,_1a8){
+node=dojo.byId(node);
+var cs=new String(_1a8);
+try{
+if(typeof node.className=="string"){
+node.className=cs;
+}else{
+if(node.setAttribute){
+node.setAttribute("class",_1a8);
+node.className=cs;
+}else{
+return false;
+}
+}
+}
+catch(e){
+dojo.debug("dojo.html.setClass() failed",e);
+}
+return true;
+};
+dojo.html.removeClass=function(node,_1ab,_1ac){
+try{
+if(!_1ac){
+var _1ad=dojo.html.getClass(node).replace(new RegExp("(^|\\s+)"+_1ab+"(\\s+|$)"),"$1$2");
+}else{
+var _1ad=dojo.html.getClass(node).replace(_1ab,"");
+}
+dojo.html.setClass(node,_1ad);
+}
+catch(e){
+dojo.debug("dojo.html.removeClass() failed",e);
+}
+return true;
+};
+dojo.html.replaceClass=function(node,_1af,_1b0){
+dojo.html.removeClass(node,_1b0);
+dojo.html.addClass(node,_1af);
+};
+dojo.html.classMatchType={ContainsAll:0,ContainsAny:1,IsOnly:2};
+dojo.html.getElementsByClass=function(_1b1,_1b2,_1b3,_1b4,_1b5){
+_1b5=false;
+var _1b6=dojo.doc();
+_1b2=dojo.byId(_1b2)||_1b6;
+var _1b7=_1b1.split(/\s+/g);
+var _1b8=[];
+if(_1b4!=1&&_1b4!=2){
+_1b4=0;
+}
+var _1b9=new RegExp("(\\s|^)(("+_1b7.join(")|(")+"))(\\s|$)");
+var _1ba=_1b7.join(" ").length;
+var _1bb=[];
+if(!_1b5&&_1b6.evaluate){
+var _1bc=".//"+(_1b3||"*")+"[contains(";
+if(_1b4!=dojo.html.classMatchType.ContainsAny){
+_1bc+="concat(' ',@class,' '), ' "+_1b7.join(" ') and contains(concat(' ',@class,' '), ' ")+" ')";
+if(_1b4==2){
+_1bc+=" and string-length(@class)="+_1ba+"]";
+}else{
+_1bc+="]";
+}
+}else{
+_1bc+="concat(' ',@class,' '), ' "+_1b7.join(" ') or contains(concat(' ',@class,' '), ' ")+" ')]";
+}
+var _1bd=_1b6.evaluate(_1bc,_1b2,null,XPathResult.ANY_TYPE,null);
+var _1be=_1bd.iterateNext();
+while(_1be){
+try{
+_1bb.push(_1be);
+_1be=_1bd.iterateNext();
+}
+catch(e){
+break;
+}
+}
+return _1bb;
+}else{
+if(!_1b3){
+_1b3="*";
+}
+_1bb=_1b2.getElementsByTagName(_1b3);
+var node,i=0;
+outer:
+while(node=_1bb[i++]){
+var _1c1=dojo.html.getClasses(node);
+if(_1c1.length==0){
+continue outer;
+}
+var _1c2=0;
+for(var j=0;j<_1c1.length;j++){
+if(_1b9.test(_1c1[j])){
+if(_1b4==dojo.html.classMatchType.ContainsAny){
+_1b8.push(node);
+continue outer;
+}else{
+_1c2++;
+}
+}else{
+if(_1b4==dojo.html.classMatchType.IsOnly){
+continue outer;
+}
+}
+}
+if(_1c2==_1b7.length){
+if((_1b4==dojo.html.classMatchType.IsOnly)&&(_1c2==_1c1.length)){
+_1b8.push(node);
+}else{
+if(_1b4==dojo.html.classMatchType.ContainsAll){
+_1b8.push(node);
+}
+}
+}
+}
+return _1b8;
+}
+};
+dojo.html.getElementsByClassName=dojo.html.getElementsByClass;
+dojo.html.toCamelCase=function(_1c4){
+var arr=_1c4.split("-"),cc=arr[0];
+for(var i=1;i<arr.length;i++){
+cc+=arr[i].charAt(0).toUpperCase()+arr[i].substring(1);
+}
+return cc;
+};
+dojo.html.toSelectorCase=function(_1c8){
+return _1c8.replace(/([A-Z])/g,"-$1").toLowerCase();
+};
+dojo.html.getComputedStyle=function(node,_1ca,_1cb){
+node=dojo.byId(node);
+var _1ca=dojo.html.toSelectorCase(_1ca);
+var _1cc=dojo.html.toCamelCase(_1ca);
+if(!node||!node.style){
+return _1cb;
+}else{
+if(document.defaultView&&dojo.html.isDescendantOf(node,node.ownerDocument)){
+try{
+var cs=document.defaultView.getComputedStyle(node,"");
+if(cs){
+return cs.getPropertyValue(_1ca);
+}
+}
+catch(e){
+if(node.style.getPropertyValue){
+return node.style.getPropertyValue(_1ca);
+}else{
+return _1cb;
+}
+}
+}else{
+if(node.currentStyle){
+return node.currentStyle[_1cc];
+}
+}
+}
+if(node.style.getPropertyValue){
+return node.style.getPropertyValue(_1ca);
+}else{
+return _1cb;
+}
+};
+dojo.html.getStyleProperty=function(node,_1cf){
+node=dojo.byId(node);
+return (node&&node.style?node.style[dojo.html.toCamelCase(_1cf)]:undefined);
+};
+dojo.html.getStyle=function(node,_1d1){
+var _1d2=dojo.html.getStyleProperty(node,_1d1);
+return (_1d2?_1d2:dojo.html.getComputedStyle(node,_1d1));
+};
+dojo.html.setStyle=function(node,_1d4,_1d5){
+node=dojo.byId(node);
+if(node&&node.style){
+var _1d6=dojo.html.toCamelCase(_1d4);
+node.style[_1d6]=_1d5;
+}
+};
+dojo.html.setStyleText=function(_1d7,text){
+try{
+_1d7.style.cssText=text;
+}
+catch(e){
+_1d7.setAttribute("style",text);
+}
+};
+dojo.html.copyStyle=function(_1d9,_1da){
+if(!_1da.style.cssText){
+_1d9.setAttribute("style",_1da.getAttribute("style"));
+}else{
+_1d9.style.cssText=_1da.style.cssText;
+}
+dojo.html.addClass(_1d9,dojo.html.getClass(_1da));
+};
+dojo.html.getUnitValue=function(node,_1dc,_1dd){
+var s=dojo.html.getComputedStyle(node,_1dc);
+if((!s)||((s=="auto")&&(_1dd))){
+return {value:0,units:"px"};
+}
+var _1df=s.match(/(\-?[\d.]+)([a-z%]*)/i);
+if(!_1df){
+return dojo.html.getUnitValue.bad;
+}
+return {value:Number(_1df[1]),units:_1df[2].toLowerCase()};
+};
+dojo.html.getUnitValue.bad={value:NaN,units:""};
+dojo.html.getPixelValue=function(node,_1e1,_1e2){
+var _1e3=dojo.html.getUnitValue(node,_1e1,_1e2);
+if(isNaN(_1e3.value)){
+return 0;
+}
+if((_1e3.value)&&(_1e3.units!="px")){
+return NaN;
+}
+return _1e3.value;
+};
+dojo.html.setPositivePixelValue=function(node,_1e5,_1e6){
+if(isNaN(_1e6)){
+return false;
+}
+node.style[_1e5]=Math.max(0,_1e6)+"px";
+return true;
+};
+dojo.html.styleSheet=null;
+dojo.html.insertCssRule=function(_1e7,_1e8,_1e9){
+if(!dojo.html.styleSheet){
+if(document.createStyleSheet){
+dojo.html.styleSheet=document.createStyleSheet();
+}else{
+if(document.styleSheets[0]){
+dojo.html.styleSheet=document.styleSheets[0];
+}else{
+return null;
+}
+}
+}
+if(arguments.length<3){
+if(dojo.html.styleSheet.cssRules){
+_1e9=dojo.html.styleSheet.cssRules.length;
+}else{
+if(dojo.html.styleSheet.rules){
+_1e9=dojo.html.styleSheet.rules.length;
+}else{
+return null;
+}
+}
+}
+if(dojo.html.styleSheet.insertRule){
+var rule=_1e7+" { "+_1e8+" }";
+return dojo.html.styleSheet.insertRule(rule,_1e9);
+}else{
+if(dojo.html.styleSheet.addRule){
+return dojo.html.styleSheet.addRule(_1e7,_1e8,_1e9);
+}else{
+return null;
+}
+}
+};
+dojo.html.removeCssRule=function(_1eb){
+if(!dojo.html.styleSheet){
+dojo.debug("no stylesheet defined for removing rules");
+return false;
+}
+if(dojo.render.html.ie){
+if(!_1eb){
+_1eb=dojo.html.styleSheet.rules.length;
+dojo.html.styleSheet.removeRule(_1eb);
+}
+}else{
+if(document.styleSheets[0]){
+if(!_1eb){
+_1eb=dojo.html.styleSheet.cssRules.length;
+}
+dojo.html.styleSheet.deleteRule(_1eb);
+}
+}
+return true;
+};
+dojo.html._insertedCssFiles=[];
+dojo.html.insertCssFile=function(URI,doc,_1ee,_1ef){
+if(!URI){
+return;
+}
+if(!doc){
+doc=document;
+}
+var _1f0=dojo.hostenv.getText(URI,false,_1ef);
+if(_1f0===null){
+return;
+}
+_1f0=dojo.html.fixPathsInCssText(_1f0,URI);
+if(_1ee){
+var idx=-1,node,ent=dojo.html._insertedCssFiles;
+for(var i=0;i<ent.length;i++){
+if((ent[i].doc==doc)&&(ent[i].cssText==_1f0)){
+idx=i;
+node=ent[i].nodeRef;
+break;
+}
+}
+if(node){
+var _1f5=doc.getElementsByTagName("style");
+for(var i=0;i<_1f5.length;i++){
+if(_1f5[i]==node){
+return;
+}
+}
+dojo.html._insertedCssFiles.shift(idx,1);
+}
+}
+var _1f6=dojo.html.insertCssText(_1f0);
+dojo.html._insertedCssFiles.push({"doc":doc,"cssText":_1f0,"nodeRef":_1f6});
+if(_1f6&&djConfig.isDebug){
+_1f6.setAttribute("dbgHref",URI);
+}
+return _1f6;
+};
+dojo.html.insertCssText=function(_1f7,doc,URI){
+if(!_1f7){
+return;
+}
+if(!doc){
+doc=document;
+}
+if(URI){
+_1f7=dojo.html.fixPathsInCssText(_1f7,URI);
+}
+var _1fa=doc.createElement("style");
+_1fa.setAttribute("type","text/css");
+var head=doc.getElementsByTagName("head")[0];
+if(!head){
+dojo.debug("No head tag in document, aborting styles");
+return;
+}else{
+head.appendChild(_1fa);
+}
+if(_1fa.styleSheet){
+_1fa.styleSheet.cssText=_1f7;
+}else{
+var _1fc=doc.createTextNode(_1f7);
+_1fa.appendChild(_1fc);
+}
+return _1fa;
+};
+dojo.html.fixPathsInCssText=function(_1fd,URI){
+function iefixPathsInCssText(){
+var _1ff=/AlphaImageLoader\(src\=['"]([\t\s\w()\/.\\'"-:#=&?~]*)['"]/;
+while(_200=_1ff.exec(_1fd)){
+url=_200[1].replace(_202,"$2");
+if(!_203.exec(url)){
+url=(new dojo.uri.Uri(URI,url).toString());
+}
+str+=_1fd.substring(0,_200.index)+"AlphaImageLoader(src='"+url+"'";
+_1fd=_1fd.substr(_200.index+_200[0].length);
+}
+return str+_1fd;
+}
+if(!_1fd||!URI){
+return;
+}
+var _200,str="",url="";
+var _205=/url\(\s*([\t\s\w()\/.\\'"-:#=&?]+)\s*\)/;
+var _203=/(file|https?|ftps?):\/\//;
+var _202=/^[\s]*(['"]?)([\w()\/.\\'"-:#=&?]*)\1[\s]*?$/;
+if(dojo.render.html.ie55||dojo.render.html.ie60){
+_1fd=iefixPathsInCssText();
+}
+while(_200=_205.exec(_1fd)){
+url=_200[1].replace(_202,"$2");
+if(!_203.exec(url)){
+url=(new dojo.uri.Uri(URI,url).toString());
+}
+str+=_1fd.substring(0,_200.index)+"url("+url+")";
+_1fd=_1fd.substr(_200.index+_200[0].length);
+}
+return str+_1fd;
+};
+dojo.html.setActiveStyleSheet=function(_206){
+var i=0,a,els=dojo.doc().getElementsByTagName("link");
+while(a=els[i++]){
+if(a.getAttribute("rel").indexOf("style")!=-1&&a.getAttribute("title")){
+a.disabled=true;
+if(a.getAttribute("title")==_206){
+a.disabled=false;
+}
+}
+}
+};
+dojo.html.getActiveStyleSheet=function(){
+var i=0,a,els=dojo.doc().getElementsByTagName("link");
+while(a=els[i++]){
+if(a.getAttribute("rel").indexOf("style")!=-1&&a.getAttribute("title")&&!a.disabled){
+return a.getAttribute("title");
+}
+}
+return null;
+};
+dojo.html.getPreferredStyleSheet=function(){
+var i=0,a,els=dojo.doc().getElementsByTagName("link");
+while(a=els[i++]){
+if(a.getAttribute("rel").indexOf("style")!=-1&&a.getAttribute("rel").indexOf("alt")==-1&&a.getAttribute("title")){
+return a.getAttribute("title");
+}
+}
+return null;
+};
+dojo.html.applyBrowserClass=function(node){
+var drh=dojo.render.html;
+var _212={dj_ie:drh.ie,dj_ie55:drh.ie55,dj_ie6:drh.ie60,dj_ie7:drh.ie70,dj_iequirks:drh.ie&&drh.quirks,dj_opera:drh.opera,dj_opera8:drh.opera&&(Math.floor(dojo.render.version)==8),dj_opera9:drh.opera&&(Math.floor(dojo.render.version)==9),dj_khtml:drh.khtml,dj_safari:drh.safari,dj_gecko:drh.mozilla};
+for(var p in _212){
+if(_212[p]){
+dojo.html.addClass(node,p);
+}
+}
+};
+dojo.provide("dojo.html.*");
+dojo.provide("dojo.html.display");
+dojo.html._toggle=function(node,_215,_216){
+node=dojo.byId(node);
+_216(node,!_215(node));
+return _215(node);
+};
+dojo.html.show=function(node){
+node=dojo.byId(node);
+if(dojo.html.getStyleProperty(node,"display")=="none"){
+dojo.html.setStyle(node,"display",(node.dojoDisplayCache||""));
+node.dojoDisplayCache=undefined;
+}
+};
+dojo.html.hide=function(node){
+node=dojo.byId(node);
+if(typeof node["dojoDisplayCache"]=="undefined"){
+var d=dojo.html.getStyleProperty(node,"display");
+if(d!="none"){
+node.dojoDisplayCache=d;
+}
+}
+dojo.html.setStyle(node,"display","none");
+};
+dojo.html.setShowing=function(node,_21b){
+dojo.html[(_21b?"show":"hide")](node);
+};
+dojo.html.isShowing=function(node){
+return (dojo.html.getStyleProperty(node,"display")!="none");
+};
+dojo.html.toggleShowing=function(node){
+return dojo.html._toggle(node,dojo.html.isShowing,dojo.html.setShowing);
+};
+dojo.html.displayMap={tr:"",td:"",th:"",img:"inline",span:"inline",input:"inline",button:"inline"};
+dojo.html.suggestDisplayByTagName=function(node){
+node=dojo.byId(node);
+if(node&&node.tagName){
+var tag=node.tagName.toLowerCase();
+return (tag in dojo.html.displayMap?dojo.html.displayMap[tag]:"block");
+}
+};
+dojo.html.setDisplay=function(node,_221){
+dojo.html.setStyle(node,"display",((_221 instanceof String||typeof _221=="string")?_221:(_221?dojo.html.suggestDisplayByTagName(node):"none")));
+};
+dojo.html.isDisplayed=function(node){
+return (dojo.html.getComputedStyle(node,"display")!="none");
+};
+dojo.html.toggleDisplay=function(node){
+return dojo.html._toggle(node,dojo.html.isDisplayed,dojo.html.setDisplay);
+};
+dojo.html.setVisibility=function(node,_225){
+dojo.html.setStyle(node,"visibility",((_225 instanceof String||typeof _225=="string")?_225:(_225?"visible":"hidden")));
+};
+dojo.html.isVisible=function(node){
+return (dojo.html.getComputedStyle(node,"visibility")!="hidden");
+};
+dojo.html.toggleVisibility=function(node){
+return dojo.html._toggle(node,dojo.html.isVisible,dojo.html.setVisibility);
+};
+dojo.html.setOpacity=function(node,_229,_22a){
+node=dojo.byId(node);
+var h=dojo.render.html;
+if(!_22a){
+if(_229>=1){
+if(h.ie){
+dojo.html.clearOpacity(node);
+return;
+}else{
+_229=0.999999;
+}
+}else{
+if(_229<0){
+_229=0;
+}
+}
+}
+if(h.ie){
+if(node.nodeName.toLowerCase()=="tr"){
+var tds=node.getElementsByTagName("td");
+for(var x=0;x<tds.length;x++){
+tds[x].style.filter="Alpha(Opacity="+_229*100+")";
+}
+}
+node.style.filter="Alpha(Opacity="+_229*100+")";
+}else{
+if(h.moz){
+node.style.opacity=_229;
+node.style.MozOpacity=_229;
+}else{
+if(h.safari){
+node.style.opacity=_229;
+node.style.KhtmlOpacity=_229;
+}else{
+node.style.opacity=_229;
+}
+}
+}
+};
+dojo.html.clearOpacity=function(node){
+node=dojo.byId(node);
+var ns=node.style;
+var h=dojo.render.html;
+if(h.ie){
+try{
+if(node.filters&&node.filters.alpha){
+ns.filter="";
+}
+}
+catch(e){
+}
+}else{
+if(h.moz){
+ns.opacity=1;
+ns.MozOpacity=1;
+}else{
+if(h.safari){
+ns.opacity=1;
+ns.KhtmlOpacity=1;
+}else{
+ns.opacity=1;
+}
+}
+}
+};
+dojo.html.getOpacity=function(node){
+node=dojo.byId(node);
+var h=dojo.render.html;
+if(h.ie){
+var opac=(node.filters&&node.filters.alpha&&typeof node.filters.alpha.opacity=="number"?node.filters.alpha.opacity:100)/100;
+}else{
+var opac=node.style.opacity||node.style.MozOpacity||node.style.KhtmlOpacity||1;
+}
+return opac>=0.999999?1:Number(opac);
+};
+dojo.provide("dojo.html.layout");
+dojo.html.sumAncestorProperties=function(node,prop){
+node=dojo.byId(node);
+if(!node){
+return 0;
+}
+var _236=0;
+while(node){
+if(dojo.html.getComputedStyle(node,"position")=="fixed"){
+return 0;
+}
+var val=node[prop];
+if(val){
+_236+=val-0;
+if(node==dojo.body()){
+break;
+}
+}
+node=node.parentNode;
+}
+return _236;
+};
+dojo.html.setStyleAttributes=function(node,_239){
+node=dojo.byId(node);
+var _23a=_239.replace(/(;)?\s*$/,"").split(";");
+for(var i=0;i<_23a.length;i++){
+var _23c=_23a[i].split(":");
+var name=_23c[0].replace(/\s*$/,"").replace(/^\s*/,"").toLowerCase();
+var _23e=_23c[1].replace(/\s*$/,"").replace(/^\s*/,"");
+switch(name){
+case "opacity":
+dojo.html.setOpacity(node,_23e);
+break;
+case "content-height":
+dojo.html.setContentBox(node,{height:_23e});
+break;
+case "content-width":
+dojo.html.setContentBox(node,{width:_23e});
+break;
+case "outer-height":
+dojo.html.setMarginBox(node,{height:_23e});
+break;
+case "outer-width":
+dojo.html.setMarginBox(node,{width:_23e});
+break;
+default:
+node.style[dojo.html.toCamelCase(name)]=_23e;
+}
+}
+};
+dojo.html.boxSizing={MARGIN_BOX:"margin-box",BORDER_BOX:"border-box",PADDING_BOX:"padding-box",CONTENT_BOX:"content-box"};
+dojo.html.getAbsolutePosition=dojo.html.abs=function(node,_240,_241){
+node=dojo.byId(node,node.ownerDocument);
+var ret={x:0,y:0};
+var bs=dojo.html.boxSizing;
+if(!_241){
+_241=bs.CONTENT_BOX;
+}
+var _244=2;
+var _245;
+switch(_241){
+case bs.MARGIN_BOX:
+_245=3;
+break;
+case bs.BORDER_BOX:
+_245=2;
+break;
+case bs.PADDING_BOX:
+default:
+_245=1;
+break;
+case bs.CONTENT_BOX:
+_245=0;
+break;
+}
+var h=dojo.render.html;
+var db=document["body"]||document["documentElement"];
+if(h.ie){
+with(node.getBoundingClientRect()){
+ret.x=left-2;
+ret.y=top-2;
+}
+}else{
+if(document.getBoxObjectFor){
+_244=1;
+try{
+var bo=document.getBoxObjectFor(node);
+ret.x=bo.x-dojo.html.sumAncestorProperties(node,"scrollLeft");
+ret.y=bo.y-dojo.html.sumAncestorProperties(node,"scrollTop");
+}
+catch(e){
+}
+}else{
+if(node["offsetParent"]){
+var _249;
+if((h.safari)&&(node.style.getPropertyValue("position")=="absolute")&&(node.parentNode==db)){
+_249=db;
+}else{
+_249=db.parentNode;
+}
+if(node.parentNode!=db){
+var nd=node;
+if(dojo.render.html.opera){
+nd=db;
+}
+ret.x-=dojo.html.sumAncestorProperties(nd,"scrollLeft");
+ret.y-=dojo.html.sumAncestorProperties(nd,"scrollTop");
+}
+var _24b=node;
+do{
+var n=_24b["offsetLeft"];
+if(!h.opera||n>0){
+ret.x+=isNaN(n)?0:n;
+}
+var m=_24b["offsetTop"];
+ret.y+=isNaN(m)?0:m;
+_24b=_24b.offsetParent;
+}while((_24b!=_249)&&(_24b!=null));
+}else{
+if(node["x"]&&node["y"]){
+ret.x+=isNaN(node.x)?0:node.x;
+ret.y+=isNaN(node.y)?0:node.y;
+}
+}
+}
+}
+if(_240){
+var _24e=dojo.html.getScroll();
+ret.y+=_24e.top;
+ret.x+=_24e.left;
+}
+var _24f=[dojo.html.getPaddingExtent,dojo.html.getBorderExtent,dojo.html.getMarginExtent];
+if(_244>_245){
+for(var i=_245;i<_244;++i){
+ret.y+=_24f[i](node,"top");
+ret.x+=_24f[i](node,"left");
+}
+}else{
+if(_244<_245){
+for(var i=_245;i>_244;--i){
+ret.y-=_24f[i-1](node,"top");
+ret.x-=_24f[i-1](node,"left");
+}
+}
+}
+ret.top=ret.y;
+ret.left=ret.x;
+return ret;
+};
+dojo.html.isPositionAbsolute=function(node){
+return (dojo.html.getComputedStyle(node,"position")=="absolute");
+};
+dojo.html._sumPixelValues=function(node,_253,_254){
+var _255=0;
+for(var x=0;x<_253.length;x++){
+_255+=dojo.html.getPixelValue(node,_253[x],_254);
+}
+return _255;
+};
+dojo.html.getMargin=function(node){
+return {width:dojo.html._sumPixelValues(node,["margin-left","margin-right"],(dojo.html.getComputedStyle(node,"position")=="absolute")),height:dojo.html._sumPixelValues(node,["margin-top","margin-bottom"],(dojo.html.getComputedStyle(node,"position")=="absolute"))};
+};
+dojo.html.getBorder=function(node){
+return {width:dojo.html.getBorderExtent(node,"left")+dojo.html.getBorderExtent(node,"right"),height:dojo.html.getBorderExtent(node,"top")+dojo.html.getBorderExtent(node,"bottom")};
+};
+dojo.html.getBorderExtent=function(node,side){
+return (dojo.html.getStyle(node,"border-"+side+"-style")=="none"?0:dojo.html.getPixelValue(node,"border-"+side+"-width"));
+};
+dojo.html.getMarginExtent=function(node,side){
+return dojo.html._sumPixelValues(node,["margin-"+side],dojo.html.isPositionAbsolute(node));
+};
+dojo.html.getPaddingExtent=function(node,side){
+return dojo.html._sumPixelValues(node,["padding-"+side],true);
+};
+dojo.html.getPadding=function(node){
+return {width:dojo.html._sumPixelValues(node,["padding-left","padding-right"],true),height:dojo.html._sumPixelValues(node,["padding-top","padding-bottom"],true)};
+};
+dojo.html.getPadBorder=function(node){
+var pad=dojo.html.getPadding(node);
+var _262=dojo.html.getBorder(node);
+return {width:pad.width+_262.width,height:pad.height+_262.height};
+};
+dojo.html.getBoxSizing=function(node){
+var h=dojo.render.html;
+var bs=dojo.html.boxSizing;
+if((h.ie)||(h.opera)){
+var cm=document["compatMode"];
+if((cm=="BackCompat")||(cm=="QuirksMode")){
+return bs.BORDER_BOX;
+}else{
+return bs.CONTENT_BOX;
+}
+}else{
+if(arguments.length==0){
+node=document.documentElement;
+}
+var _267=dojo.html.getStyle(node,"-moz-box-sizing");
+if(!_267){
+_267=dojo.html.getStyle(node,"box-sizing");
+}
+return (_267?_267:bs.CONTENT_BOX);
+}
+};
+dojo.html.isBorderBox=function(node){
+return (dojo.html.getBoxSizing(node)==dojo.html.boxSizing.BORDER_BOX);
+};
+dojo.html.getBorderBox=function(node){
+node=dojo.byId(node);
+return {width:node.offsetWidth,height:node.offsetHeight};
+};
+dojo.html.getPaddingBox=function(node){
+var box=dojo.html.getBorderBox(node);
+var _26c=dojo.html.getBorder(node);
+return {width:box.width-_26c.width,height:box.height-_26c.height};
+};
+dojo.html.getContentBox=function(node){
+node=dojo.byId(node);
+var _26e=dojo.html.getPadBorder(node);
+return {width:node.offsetWidth-_26e.width,height:node.offsetHeight-_26e.height};
+};
+dojo.html.setContentBox=function(node,args){
+node=dojo.byId(node);
+var _271=0;
+var _272=0;
+var isbb=dojo.html.isBorderBox(node);
+var _274=(isbb?dojo.html.getPadBorder(node):{width:0,height:0});
+var ret={};
+if(typeof args.width!="undefined"){
+_271=args.width+_274.width;
+ret.width=dojo.html.setPositivePixelValue(node,"width",_271);
+}
+if(typeof args.height!="undefined"){
+_272=args.height+_274.height;
+ret.height=dojo.html.setPositivePixelValue(node,"height",_272);
+}
+return ret;
+};
+dojo.html.getMarginBox=function(node){
+var _277=dojo.html.getBorderBox(node);
+var _278=dojo.html.getMargin(node);
+return {width:_277.width+_278.width,height:_277.height+_278.height};
+};
+dojo.html.setMarginBox=function(node,args){
+node=dojo.byId(node);
+var _27b=0;
+var _27c=0;
+var isbb=dojo.html.isBorderBox(node);
+var _27e=(!isbb?dojo.html.getPadBorder(node):{width:0,height:0});
+var _27f=dojo.html.getMargin(node);
+var ret={};
+if(typeof args.width!="undefined"){
+_27b=args.width-_27e.width;
+_27b-=_27f.width;
+ret.width=dojo.html.setPositivePixelValue(node,"width",_27b);
+}
+if(typeof args.height!="undefined"){
+_27c=args.height-_27e.height;
+_27c-=_27f.height;
+ret.height=dojo.html.setPositivePixelValue(node,"height",_27c);
+}
+return ret;
+};
+dojo.html.getElementBox=function(node,type){
+var bs=dojo.html.boxSizing;
+switch(type){
+case bs.MARGIN_BOX:
+return dojo.html.getMarginBox(node);
+case bs.BORDER_BOX:
+return dojo.html.getBorderBox(node);
+case bs.PADDING_BOX:
+return dojo.html.getPaddingBox(node);
+case bs.CONTENT_BOX:
+default:
+return dojo.html.getContentBox(node);
+}
+};
+dojo.html.toCoordinateObject=dojo.html.toCoordinateArray=function(_284,_285,_286){
+if(_284 instanceof Array||typeof _284=="array"){
+dojo.deprecated("dojo.html.toCoordinateArray","use dojo.html.toCoordinateObject({left: , top: , width: , height: }) instead","0.5");
+while(_284.length<4){
+_284.push(0);
+}
+while(_284.length>4){
+_284.pop();
+}
+var ret={left:_284[0],top:_284[1],width:_284[2],height:_284[3]};
+}else{
+if(!_284.nodeType&&!(_284 instanceof String||typeof _284=="string")&&("width" in _284||"height" in _284||"left" in _284||"x" in _284||"top" in _284||"y" in _284)){
+var ret={left:_284.left||_284.x||0,top:_284.top||_284.y||0,width:_284.width||0,height:_284.height||0};
+}else{
+var node=dojo.byId(_284);
+var pos=dojo.html.abs(node,_285,_286);
+var _28a=dojo.html.getMarginBox(node);
+var ret={left:pos.left,top:pos.top,width:_28a.width,height:_28a.height};
+}
+}
+ret.x=ret.left;
+ret.y=ret.top;
+return ret;
+};
+dojo.html.setMarginBoxWidth=dojo.html.setOuterWidth=function(node,_28c){
+return dojo.html._callDeprecated("setMarginBoxWidth","setMarginBox",arguments,"width");
+};
+dojo.html.setMarginBoxHeight=dojo.html.setOuterHeight=function(){
+return dojo.html._callDeprecated("setMarginBoxHeight","setMarginBox",arguments,"height");
+};
+dojo.html.getMarginBoxWidth=dojo.html.getOuterWidth=function(){
+return dojo.html._callDeprecated("getMarginBoxWidth","getMarginBox",arguments,null,"width");
+};
+dojo.html.getMarginBoxHeight=dojo.html.getOuterHeight=function(){
+return dojo.html._callDeprecated("getMarginBoxHeight","getMarginBox",arguments,null,"height");
+};
+dojo.html.getTotalOffset=function(node,type,_28f){
+return dojo.html._callDeprecated("getTotalOffset","getAbsolutePosition",arguments,null,type);
+};
+dojo.html.getAbsoluteX=function(node,_291){
+return dojo.html._callDeprecated("getAbsoluteX","getAbsolutePosition",arguments,null,"x");
+};
+dojo.html.getAbsoluteY=function(node,_293){
+return dojo.html._callDeprecated("getAbsoluteY","getAbsolutePosition",arguments,null,"y");
+};
+dojo.html.totalOffsetLeft=function(node,_295){
+return dojo.html._callDeprecated("totalOffsetLeft","getAbsolutePosition",arguments,null,"left");
+};
+dojo.html.totalOffsetTop=function(node,_297){
+return dojo.html._callDeprecated("totalOffsetTop","getAbsolutePosition",arguments,null,"top");
+};
+dojo.html.getMarginWidth=function(node){
+return dojo.html._callDeprecated("getMarginWidth","getMargin",arguments,null,"width");
+};
+dojo.html.getMarginHeight=function(node){
+return dojo.html._callDeprecated("getMarginHeight","getMargin",arguments,null,"height");
+};
+dojo.html.getBorderWidth=function(node){
+return dojo.html._callDeprecated("getBorderWidth","getBorder",arguments,null,"width");
+};
+dojo.html.getBorderHeight=function(node){
+return dojo.html._callDeprecated("getBorderHeight","getBorder",arguments,null,"height");
+};
+dojo.html.getPaddingWidth=function(node){
+return dojo.html._callDeprecated("getPaddingWidth","getPadding",arguments,null,"width");
+};
+dojo.html.getPaddingHeight=function(node){
+return dojo.html._callDeprecated("getPaddingHeight","getPadding",arguments,null,"height");
+};
+dojo.html.getPadBorderWidth=function(node){
+return dojo.html._callDeprecated("getPadBorderWidth","getPadBorder",arguments,null,"width");
+};
+dojo.html.getPadBorderHeight=function(node){
+return dojo.html._callDeprecated("getPadBorderHeight","getPadBorder",arguments,null,"height");
+};
+dojo.html.getBorderBoxWidth=dojo.html.getInnerWidth=function(){
+return dojo.html._callDeprecated("getBorderBoxWidth","getBorderBox",arguments,null,"width");
+};
+dojo.html.getBorderBoxHeight=dojo.html.getInnerHeight=function(){
+return dojo.html._callDeprecated("getBorderBoxHeight","getBorderBox",arguments,null,"height");
+};
+dojo.html.getContentBoxWidth=dojo.html.getContentWidth=function(){
+return dojo.html._callDeprecated("getContentBoxWidth","getContentBox",arguments,null,"width");
+};
+dojo.html.getContentBoxHeight=dojo.html.getContentHeight=function(){
+return dojo.html._callDeprecated("getContentBoxHeight","getContentBox",arguments,null,"height");
+};
+dojo.html.setContentBoxWidth=dojo.html.setContentWidth=function(node,_2a1){
+return dojo.html._callDeprecated("setContentBoxWidth","setContentBox",arguments,"width");
+};
+dojo.html.setContentBoxHeight=dojo.html.setContentHeight=function(node,_2a3){
+return dojo.html._callDeprecated("setContentBoxHeight","setContentBox",arguments,"height");
+};
+dojo.provide("dojo.html.util");
+dojo.html.getElementWindow=function(_2a4){
+return dojo.html.getDocumentWindow(_2a4.ownerDocument);
+};
+dojo.html.getDocumentWindow=function(doc){
+if(dojo.render.html.safari&&!doc._parentWindow){
+var fix=function(win){
+win.document._parentWindow=win;
+for(var i=0;i<win.frames.length;i++){
+fix(win.frames[i]);
+}
+};
+fix(window.top);
+}
+if(dojo.render.html.ie&&window!==document.parentWindow&&!doc._parentWindow){
+doc.parentWindow.execScript("document._parentWindow = window;","Javascript");
+var win=doc._parentWindow;
+doc._parentWindow=null;
+return win;
+}
+return doc._parentWindow||doc.parentWindow||doc.defaultView;
+};
+dojo.html.gravity=function(node,e){
+node=dojo.byId(node);
+var _2ac=dojo.html.getCursorPosition(e);
+with(dojo.html){
+var _2ad=getAbsolutePosition(node,true);
+var bb=getBorderBox(node);
+var _2af=_2ad.x+(bb.width/2);
+var _2b0=_2ad.y+(bb.height/2);
+}
+with(dojo.html.gravity){
+return ((_2ac.x<_2af?WEST:EAST)|(_2ac.y<_2b0?NORTH:SOUTH));
+}
+};
+dojo.html.gravity.NORTH=1;
+dojo.html.gravity.SOUTH=1<<1;
+dojo.html.gravity.EAST=1<<2;
+dojo.html.gravity.WEST=1<<3;
+dojo.html.overElement=function(_2b1,e){
+_2b1=dojo.byId(_2b1);
+var _2b3=dojo.html.getCursorPosition(e);
+var bb=dojo.html.getBorderBox(_2b1);
+var _2b5=dojo.html.getAbsolutePosition(_2b1,true,dojo.html.boxSizing.BORDER_BOX);
+var top=_2b5.y;
+var _2b7=top+bb.height;
+var left=_2b5.x;
+var _2b9=left+bb.width;
+return (_2b3.x>=left&&_2b3.x<=_2b9&&_2b3.y>=top&&_2b3.y<=_2b7);
+};
+dojo.html.renderedTextContent=function(node){
+node=dojo.byId(node);
+var _2bb="";
+if(node==null){
+return _2bb;
+}
+for(var i=0;i<node.childNodes.length;i++){
+switch(node.childNodes[i].nodeType){
+case 1:
+case 5:
+var _2bd="unknown";
+try{
+_2bd=dojo.html.getStyle(node.childNodes[i],"display");
+}
+catch(E){
+}
+switch(_2bd){
+case "block":
+case "list-item":
+case "run-in":
+case "table":
+case "table-row-group":
+case "table-header-group":
+case "table-footer-group":
+case "table-row":
+case "table-column-group":
+case "table-column":
+case "table-cell":
+case "table-caption":
+_2bb+="\n";
+_2bb+=dojo.html.renderedTextContent(node.childNodes[i]);
+_2bb+="\n";
+break;
+case "none":
+break;
+default:
+if(node.childNodes[i].tagName&&node.childNodes[i].tagName.toLowerCase()=="br"){
+_2bb+="\n";
+}else{
+_2bb+=dojo.html.renderedTextContent(node.childNodes[i]);
+}
+break;
+}
+break;
+case 3:
+case 2:
+case 4:
+var text=node.childNodes[i].nodeValue;
+var _2bf="unknown";
+try{
+_2bf=dojo.html.getStyle(node,"text-transform");
+}
+catch(E){
+}
+switch(_2bf){
+case "capitalize":
+var _2c0=text.split(" ");
+for(var i=0;i<_2c0.length;i++){
+_2c0[i]=_2c0[i].charAt(0).toUpperCase()+_2c0[i].substring(1);
+}
+text=_2c0.join(" ");
+break;
+case "uppercase":
+text=text.toUpperCase();
+break;
+case "lowercase":
+text=text.toLowerCase();
+break;
+default:
+break;
+}
+switch(_2bf){
+case "nowrap":
+break;
+case "pre-wrap":
+break;
+case "pre-line":
+break;
+case "pre":
+break;
+default:
+text=text.replace(/\s+/," ");
+if(/\s$/.test(_2bb)){
+text.replace(/^\s/,"");
+}
+break;
+}
+_2bb+=text;
+break;
+default:
+break;
+}
+}
+return _2bb;
+};
+dojo.html.createNodesFromText=function(txt,trim){
+if(trim){
+txt=txt.replace(/^\s+|\s+$/g,"");
+}
+var tn=dojo.doc().createElement("div");
+tn.style.visibility="hidden";
+dojo.body().appendChild(tn);
+var _2c4="none";
+if((/^<t[dh][\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table><tbody><tr>"+txt+"</tr></tbody></table>";
+_2c4="cell";
+}else{
+if((/^<tr[\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table><tbody>"+txt+"</tbody></table>";
+_2c4="row";
+}else{
+if((/^<(thead|tbody|tfoot)[\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table>"+txt+"</table>";
+_2c4="section";
+}
+}
+}
+tn.innerHTML=txt;
+if(tn["normalize"]){
+tn.normalize();
+}
+var _2c5=null;
+switch(_2c4){
+case "cell":
+_2c5=tn.getElementsByTagName("tr")[0];
+break;
+case "row":
+_2c5=tn.getElementsByTagName("tbody")[0];
+break;
+case "section":
+_2c5=tn.getElementsByTagName("table")[0];
+break;
+default:
+_2c5=tn;
+break;
+}
+var _2c6=[];
+for(var x=0;x<_2c5.childNodes.length;x++){
+_2c6.push(_2c5.childNodes[x].cloneNode(true));
+}
+tn.style.display="none";
+dojo.body().removeChild(tn);
+return _2c6;
+};
+dojo.html.placeOnScreen=function(node,_2c9,_2ca,_2cb,_2cc,_2cd,_2ce){
+if(_2c9 instanceof Array||typeof _2c9=="array"){
+_2ce=_2cd;
+_2cd=_2cc;
+_2cc=_2cb;
+_2cb=_2ca;
+_2ca=_2c9[1];
+_2c9=_2c9[0];
+}
+if(_2cd instanceof String||typeof _2cd=="string"){
+_2cd=_2cd.split(",");
+}
+if(!isNaN(_2cb)){
+_2cb=[Number(_2cb),Number(_2cb)];
+}else{
+if(!(_2cb instanceof Array||typeof _2cb=="array")){
+_2cb=[0,0];
+}
+}
+var _2cf=dojo.html.getScroll().offset;
+var view=dojo.html.getViewport();
+node=dojo.byId(node);
+var _2d1=node.style.display;
+node.style.display="";
+var bb=dojo.html.getBorderBox(node);
+var w=bb.width;
+var h=bb.height;
+node.style.display=_2d1;
+if(!(_2cd instanceof Array||typeof _2cd=="array")){
+_2cd=["TL"];
+}
+var _2d5,_2d6,_2d7=Infinity,_2d8;
+for(var _2d9=0;_2d9<_2cd.length;++_2d9){
+var _2da=_2cd[_2d9];
+var _2db=true;
+var tryX=_2c9-(_2da.charAt(1)=="L"?0:w)+_2cb[0]*(_2da.charAt(1)=="L"?1:-1);
+var tryY=_2ca-(_2da.charAt(0)=="T"?0:h)+_2cb[1]*(_2da.charAt(0)=="T"?1:-1);
+if(_2cc){
+tryX-=_2cf.x;
+tryY-=_2cf.y;
+}
+if(tryX<0){
+tryX=0;
+_2db=false;
+}
+if(tryY<0){
+tryY=0;
+_2db=false;
+}
+var x=tryX+w;
+if(x>view.width){
+x=view.width-w;
+_2db=false;
+}else{
+x=tryX;
+}
+x=Math.max(_2cb[0],x)+_2cf.x;
+var y=tryY+h;
+if(y>view.height){
+y=view.height-h;
+_2db=false;
+}else{
+y=tryY;
+}
+y=Math.max(_2cb[1],y)+_2cf.y;
+if(_2db){
+_2d5=x;
+_2d6=y;
+_2d7=0;
+_2d8=_2da;
+break;
+}else{
+var dist=Math.pow(x-tryX-_2cf.x,2)+Math.pow(y-tryY-_2cf.y,2);
+if(_2d7>dist){
+_2d7=dist;
+_2d5=x;
+_2d6=y;
+_2d8=_2da;
+}
+}
+}
+if(!_2ce){
+node.style.left=_2d5+"px";
+node.style.top=_2d6+"px";
+}
+return {left:_2d5,top:_2d6,x:_2d5,y:_2d6,dist:_2d7,corner:_2d8};
+};
+dojo.html.placeOnScreenPoint=function(node,_2e2,_2e3,_2e4,_2e5){
+dojo.deprecated("dojo.html.placeOnScreenPoint","use dojo.html.placeOnScreen() instead","0.5");
+return dojo.html.placeOnScreen(node,_2e2,_2e3,_2e4,_2e5,["TL","TR","BL","BR"]);
+};
+dojo.html.placeOnScreenAroundElement=function(node,_2e7,_2e8,_2e9,_2ea,_2eb){
+var best,_2ed=Infinity;
+_2e7=dojo.byId(_2e7);
+var _2ee=_2e7.style.display;
+_2e7.style.display="";
+var mb=dojo.html.getElementBox(_2e7,_2e9);
+var _2f0=mb.width;
+var _2f1=mb.height;
+var _2f2=dojo.html.getAbsolutePosition(_2e7,true,_2e9);
+_2e7.style.display=_2ee;
+for(var _2f3 in _2ea){
+var pos,_2f5,_2f6;
+var _2f7=_2ea[_2f3];
+_2f5=_2f2.x+(_2f3.charAt(1)=="L"?0:_2f0);
+_2f6=_2f2.y+(_2f3.charAt(0)=="T"?0:_2f1);
+pos=dojo.html.placeOnScreen(node,_2f5,_2f6,_2e8,true,_2f7,true);
+if(pos.dist==0){
+best=pos;
+break;
+}else{
+if(_2ed>pos.dist){
+_2ed=pos.dist;
+best=pos;
+}
+}
+}
+if(!_2eb){
+node.style.left=best.left+"px";
+node.style.top=best.top+"px";
+}
+return best;
+};
+dojo.html.scrollIntoView=function(node){
+if(!node){
+return;
+}
+if(dojo.render.html.ie){
+if(dojo.html.getBorderBox(node.parentNode).height<node.parentNode.scrollHeight){
+node.scrollIntoView(false);
+}
+}else{
+if(dojo.render.html.mozilla){
+node.scrollIntoView(false);
+}else{
+var _2f9=node.parentNode;
+var _2fa=_2f9.scrollTop+dojo.html.getBorderBox(_2f9).height;
+var _2fb=node.offsetTop+dojo.html.getMarginBox(node).height;
+if(_2fa<_2fb){
+_2f9.scrollTop+=(_2fb-_2fa);
+}else{
+if(_2f9.scrollTop>node.offsetTop){
+_2f9.scrollTop-=(_2f9.scrollTop-node.offsetTop);
+}
+}
+}
+}
+};
+dojo.provide("dojo.lang.array");
+dojo.lang.has=function(obj,name){
+try{
+return typeof obj[name]!="undefined";
+}
+catch(e){
+return false;
+}
+};
+dojo.lang.isEmpty=function(obj){
+if(dojo.lang.isObject(obj)){
+var tmp={};
+var _300=0;
+for(var x in obj){
+if(obj[x]&&(!tmp[x])){
+_300++;
+break;
+}
+}
+return _300==0;
+}else{
+if(dojo.lang.isArrayLike(obj)||dojo.lang.isString(obj)){
+return obj.length==0;
+}
+}
+};
+dojo.lang.map=function(arr,obj,_304){
+var _305=dojo.lang.isString(arr);
+if(_305){
+arr=arr.split("");
+}
+if(dojo.lang.isFunction(obj)&&(!_304)){
+_304=obj;
+obj=dj_global;
+}else{
+if(dojo.lang.isFunction(obj)&&_304){
+var _306=obj;
+obj=_304;
+_304=_306;
+}
+}
+if(Array.map){
+var _307=Array.map(arr,_304,obj);
+}else{
+var _307=[];
+for(var i=0;i<arr.length;++i){
+_307.push(_304.call(obj,arr[i]));
+}
+}
+if(_305){
+return _307.join("");
+}else{
+return _307;
+}
+};
+dojo.lang.reduce=function(arr,_30a,obj,_30c){
+var _30d=_30a;
+var ob=obj?obj:dj_global;
+dojo.lang.map(arr,function(val){
+_30d=_30c.call(ob,_30d,val);
+});
+return _30d;
+};
+dojo.lang.forEach=function(_310,_311,_312){
+if(dojo.lang.isString(_310)){
+_310=_310.split("");
+}
+if(Array.forEach){
+Array.forEach(_310,_311,_312);
+}else{
+if(!_312){
+_312=dj_global;
+}
+for(var i=0,l=_310.length;i<l;i++){
+_311.call(_312,_310[i],i,_310);
+}
+}
+};
+dojo.lang._everyOrSome=function(_315,arr,_317,_318){
+if(dojo.lang.isString(arr)){
+arr=arr.split("");
+}
+if(Array.every){
+return Array[_315?"every":"some"](arr,_317,_318);
+}else{
+if(!_318){
+_318=dj_global;
+}
+for(var i=0,l=arr.length;i<l;i++){
+var _31b=_317.call(_318,arr[i],i,arr);
+if(_315&&!_31b){
+return false;
+}else{
+if((!_315)&&(_31b)){
+return true;
+}
+}
+}
+return Boolean(_315);
+}
+};
+dojo.lang.every=function(arr,_31d,_31e){
+return this._everyOrSome(true,arr,_31d,_31e);
+};
+dojo.lang.some=function(arr,_320,_321){
+return this._everyOrSome(false,arr,_320,_321);
+};
+dojo.lang.filter=function(arr,_323,_324){
+var _325=dojo.lang.isString(arr);
+if(_325){
+arr=arr.split("");
+}
+var _326;
+if(Array.filter){
+_326=Array.filter(arr,_323,_324);
+}else{
+if(!_324){
+if(arguments.length>=3){
+dojo.raise("thisObject doesn't exist!");
+}
+_324=dj_global;
+}
+_326=[];
+for(var i=0;i<arr.length;i++){
+if(_323.call(_324,arr[i],i,arr)){
+_326.push(arr[i]);
+}
+}
+}
+if(_325){
+return _326.join("");
+}else{
+return _326;
+}
+};
+dojo.lang.unnest=function(){
+var out=[];
+for(var i=0;i<arguments.length;i++){
+if(dojo.lang.isArrayLike(arguments[i])){
+var add=dojo.lang.unnest.apply(this,arguments[i]);
+out=out.concat(add);
+}else{
+out.push(arguments[i]);
+}
+}
+return out;
+};
+dojo.lang.toArray=function(_32b,_32c){
+var _32d=[];
+for(var i=_32c||0;i<_32b.length;i++){
+_32d.push(_32b[i]);
+}
+return _32d;
+};
+dojo.provide("dojo.gfx.color");
+dojo.gfx.color.Color=function(r,g,b,a){
+if(dojo.lang.isArray(r)){
+this.r=r[0];
+this.g=r[1];
+this.b=r[2];
+this.a=r[3]||1;
+}else{
+if(dojo.lang.isString(r)){
+var rgb=dojo.gfx.color.extractRGB(r);
+this.r=rgb[0];
+this.g=rgb[1];
+this.b=rgb[2];
+this.a=g||1;
+}else{
+if(r instanceof dojo.gfx.color.Color){
+this.r=r.r;
+this.b=r.b;
+this.g=r.g;
+this.a=r.a;
+}else{
+this.r=r;
+this.g=g;
+this.b=b;
+this.a=a;
+}
+}
+}
+};
+dojo.gfx.color.Color.fromArray=function(arr){
+return new dojo.gfx.color.Color(arr[0],arr[1],arr[2],arr[3]);
+};
+dojo.extend(dojo.gfx.color.Color,{toRgb:function(_335){
+if(_335){
+return this.toRgba();
+}else{
+return [this.r,this.g,this.b];
+}
+},toRgba:function(){
+return [this.r,this.g,this.b,this.a];
+},toHex:function(){
+return dojo.gfx.color.rgb2hex(this.toRgb());
+},toCss:function(){
+return "rgb("+this.toRgb().join()+")";
+},toString:function(){
+return this.toHex();
+},blend:function(_336,_337){
+var rgb=null;
+if(dojo.lang.isArray(_336)){
+rgb=_336;
+}else{
+if(_336 instanceof dojo.gfx.color.Color){
+rgb=_336.toRgb();
+}else{
+rgb=new dojo.gfx.color.Color(_336).toRgb();
+}
+}
+return dojo.gfx.color.blend(this.toRgb(),rgb,_337);
+}});
+dojo.gfx.color.named={white:[255,255,255],black:[0,0,0],red:[255,0,0],green:[0,255,0],lime:[0,255,0],blue:[0,0,255],navy:[0,0,128],gray:[128,128,128],silver:[192,192,192]};
+dojo.gfx.color.blend=function(a,b,_33b){
+if(typeof a=="string"){
+return dojo.gfx.color.blendHex(a,b,_33b);
+}
+if(!_33b){
+_33b=0;
+}
+_33b=Math.min(Math.max(-1,_33b),1);
+_33b=((_33b+1)/2);
+var c=[];
+for(var x=0;x<3;x++){
+c[x]=parseInt(b[x]+((a[x]-b[x])*_33b));
+}
+return c;
+};
+dojo.gfx.color.blendHex=function(a,b,_340){
+return dojo.gfx.color.rgb2hex(dojo.gfx.color.blend(dojo.gfx.color.hex2rgb(a),dojo.gfx.color.hex2rgb(b),_340));
+};
+dojo.gfx.color.extractRGB=function(_341){
+var hex="0123456789abcdef";
+_341=_341.toLowerCase();
+if(_341.indexOf("rgb")==0){
+var _343=_341.match(/rgba*\((\d+), *(\d+), *(\d+)/i);
+var ret=_343.splice(1,3);
+return ret;
+}else{
+var _345=dojo.gfx.color.hex2rgb(_341);
+if(_345){
+return _345;
+}else{
+return dojo.gfx.color.named[_341]||[255,255,255];
+}
+}
+};
+dojo.gfx.color.hex2rgb=function(hex){
+var _347="0123456789ABCDEF";
+var rgb=new Array(3);
+if(hex.indexOf("#")==0){
+hex=hex.substring(1);
+}
+hex=hex.toUpperCase();
+if(hex.replace(new RegExp("["+_347+"]","g"),"")!=""){
+return null;
+}
+if(hex.length==3){
+rgb[0]=hex.charAt(0)+hex.charAt(0);
+rgb[1]=hex.charAt(1)+hex.charAt(1);
+rgb[2]=hex.charAt(2)+hex.charAt(2);
+}else{
+rgb[0]=hex.substring(0,2);
+rgb[1]=hex.substring(2,4);
+rgb[2]=hex.substring(4);
+}
+for(var i=0;i<rgb.length;i++){
+rgb[i]=_347.indexOf(rgb[i].charAt(0))*16+_347.indexOf(rgb[i].charAt(1));
+}
+return rgb;
+};
+dojo.gfx.color.rgb2hex=function(r,g,b){
+if(dojo.lang.isArray(r)){
+g=r[1]||0;
+b=r[2]||0;
+r=r[0]||0;
+}
+var ret=dojo.lang.map([r,g,b],function(x){
+x=new Number(x);
+var s=x.toString(16);
+while(s.length<2){
+s="0"+s;
+}
+return s;
+});
+ret.unshift("#");
+return ret.join("");
+};
+dojo.provide("dojo.lang.func");
+dojo.lang.hitch=function(_350,_351){
+var fcn=(dojo.lang.isString(_351)?_350[_351]:_351)||function(){
+};
+return function(){
+return fcn.apply(_350,arguments);
+};
+};
+dojo.lang.anonCtr=0;
+dojo.lang.anon={};
+dojo.lang.nameAnonFunc=function(_353,_354,_355){
+var nso=(_354||dojo.lang.anon);
+if((_355)||((dj_global["djConfig"])&&(djConfig["slowAnonFuncLookups"]==true))){
+for(var x in nso){
+try{
+if(nso[x]===_353){
+return x;
+}
+}
+catch(e){
+}
+}
+}
+var ret="__"+dojo.lang.anonCtr++;
+while(typeof nso[ret]!="undefined"){
+ret="__"+dojo.lang.anonCtr++;
+}
+nso[ret]=_353;
+return ret;
+};
+dojo.lang.forward=function(_359){
+return function(){
+return this[_359].apply(this,arguments);
+};
+};
+dojo.lang.curry=function(ns,func){
+var _35c=[];
+ns=ns||dj_global;
+if(dojo.lang.isString(func)){
+func=ns[func];
+}
+for(var x=2;x<arguments.length;x++){
+_35c.push(arguments[x]);
+}
+var _35e=(func["__preJoinArity"]||func.length)-_35c.length;
+function gather(_35f,_360,_361){
+var _362=_361;
+var _363=_360.slice(0);
+for(var x=0;x<_35f.length;x++){
+_363.push(_35f[x]);
+}
+_361=_361-_35f.length;
+if(_361<=0){
+var res=func.apply(ns,_363);
+_361=_362;
+return res;
+}else{
+return function(){
+return gather(arguments,_363,_361);
+};
+}
+}
+return gather([],_35c,_35e);
+};
+dojo.lang.curryArguments=function(ns,func,args,_369){
+var _36a=[];
+var x=_369||0;
+for(x=_369;x<args.length;x++){
+_36a.push(args[x]);
+}
+return dojo.lang.curry.apply(dojo.lang,[ns,func].concat(_36a));
+};
+dojo.lang.tryThese=function(){
+for(var x=0;x<arguments.length;x++){
+try{
+if(typeof arguments[x]=="function"){
+var ret=(arguments[x]());
+if(ret){
+return ret;
+}
+}
+}
+catch(e){
+dojo.debug(e);
+}
+}
+};
+dojo.lang.delayThese=function(farr,cb,_370,_371){
+if(!farr.length){
+if(typeof _371=="function"){
+_371();
+}
+return;
+}
+if((typeof _370=="undefined")&&(typeof cb=="number")){
+_370=cb;
+cb=function(){
+};
+}else{
+if(!cb){
+cb=function(){
+};
+if(!_370){
+_370=0;
+}
+}
+}
+setTimeout(function(){
+(farr.shift())();
+cb();
+dojo.lang.delayThese(farr,cb,_370,_371);
+},_370);
+};
+dojo.provide("dojo.lfx.Animation");
+dojo.lfx.Line=function(_372,end){
+this.start=_372;
+this.end=end;
+if(dojo.lang.isArray(_372)){
+var diff=[];
+dojo.lang.forEach(this.start,function(s,i){
+diff[i]=this.end[i]-s;
+},this);
+this.getValue=function(n){
+var res=[];
+dojo.lang.forEach(this.start,function(s,i){
+res[i]=(diff[i]*n)+s;
+},this);
+return res;
+};
+}else{
+var diff=end-_372;
+this.getValue=function(n){
+return (diff*n)+this.start;
+};
+}
+};
+dojo.lfx.easeDefault=function(n){
+if(dojo.render.html.khtml){
+return (parseFloat("0.5")+((Math.sin((n+parseFloat("1.5"))*Math.PI))/2));
+}else{
+return (0.5+((Math.sin((n+1.5)*Math.PI))/2));
+}
+};
+dojo.lfx.easeIn=function(n){
+return Math.pow(n,3);
+};
+dojo.lfx.easeOut=function(n){
+return (1-Math.pow(1-n,3));
+};
+dojo.lfx.easeInOut=function(n){
+return ((3*Math.pow(n,2))-(2*Math.pow(n,3)));
+};
+dojo.lfx.IAnimation=function(){
+};
+dojo.lang.extend(dojo.lfx.IAnimation,{curve:null,duration:1000,easing:null,repeatCount:0,rate:25,handler:null,beforeBegin:null,onBegin:null,onAnimate:null,onEnd:null,onPlay:null,onPause:null,onStop:null,play:null,pause:null,stop:null,connect:function(evt,_381,_382){
+if(!_382){
+_382=_381;
+_381=this;
+}
+_382=dojo.lang.hitch(_381,_382);
+var _383=this[evt]||function(){
+};
+this[evt]=function(){
+var ret=_383.apply(this,arguments);
+_382.apply(this,arguments);
+return ret;
+};
+return this;
+},fire:function(evt,args){
+if(this[evt]){
+this[evt].apply(this,(args||[]));
+}
+return this;
+},repeat:function(_387){
+this.repeatCount=_387;
+return this;
+},_active:false,_paused:false});
+dojo.lfx.Animation=function(_388,_389,_38a,_38b,_38c,rate){
+dojo.lfx.IAnimation.call(this);
+if(dojo.lang.isNumber(_388)||(!_388&&_389.getValue)){
+rate=_38c;
+_38c=_38b;
+_38b=_38a;
+_38a=_389;
+_389=_388;
+_388=null;
+}else{
+if(_388.getValue||dojo.lang.isArray(_388)){
+rate=_38b;
+_38c=_38a;
+_38b=_389;
+_38a=_388;
+_389=null;
+_388=null;
+}
+}
+if(dojo.lang.isArray(_38a)){
+this.curve=new dojo.lfx.Line(_38a[0],_38a[1]);
+}else{
+this.curve=_38a;
+}
+if(_389!=null&&_389>0){
+this.duration=_389;
+}
+if(_38c){
+this.repeatCount=_38c;
+}
+if(rate){
+this.rate=rate;
+}
+if(_388){
+dojo.lang.forEach(["handler","beforeBegin","onBegin","onEnd","onPlay","onStop","onAnimate"],function(item){
+if(_388[item]){
+this.connect(item,_388[item]);
+}
+},this);
+}
+if(_38b&&dojo.lang.isFunction(_38b)){
+this.easing=_38b;
+}
+};
+dojo.inherits(dojo.lfx.Animation,dojo.lfx.IAnimation);
+dojo.lang.extend(dojo.lfx.Animation,{_startTime:null,_endTime:null,_timer:null,_percent:0,_startRepeatCount:0,play:function(_38f,_390){
+if(_390){
+clearTimeout(this._timer);
+this._active=false;
+this._paused=false;
+this._percent=0;
+}else{
+if(this._active&&!this._paused){
+return this;
+}
+}
+this.fire("handler",["beforeBegin"]);
+this.fire("beforeBegin");
+if(_38f>0){
+setTimeout(dojo.lang.hitch(this,function(){
+this.play(null,_390);
+}),_38f);
+return this;
+}
+this._startTime=new Date().valueOf();
+if(this._paused){
+this._startTime-=(this.duration*this._percent/100);
+}
+this._endTime=this._startTime+this.duration;
+this._active=true;
+this._paused=false;
+var step=this._percent/100;
+var _392=this.curve.getValue(step);
+if(this._percent==0){
+if(!this._startRepeatCount){
+this._startRepeatCount=this.repeatCount;
+}
+this.fire("handler",["begin",_392]);
+this.fire("onBegin",[_392]);
+}
+this.fire("handler",["play",_392]);
+this.fire("onPlay",[_392]);
+this._cycle();
+return this;
+},pause:function(){
+clearTimeout(this._timer);
+if(!this._active){
+return this;
+}
+this._paused=true;
+var _393=this.curve.getValue(this._percent/100);
+this.fire("handler",["pause",_393]);
+this.fire("onPause",[_393]);
+return this;
+},gotoPercent:function(pct,_395){
+clearTimeout(this._timer);
+this._active=true;
+this._paused=true;
+this._percent=pct;
+if(_395){
+this.play();
+}
+return this;
+},stop:function(_396){
+clearTimeout(this._timer);
+var step=this._percent/100;
+if(_396){
+step=1;
+}
+var _398=this.curve.getValue(step);
+this.fire("handler",["stop",_398]);
+this.fire("onStop",[_398]);
+this._active=false;
+this._paused=false;
+return this;
+},status:function(){
+if(this._active){
+return this._paused?"paused":"playing";
+}else{
+return "stopped";
+}
+return this;
+},_cycle:function(){
+clearTimeout(this._timer);
+if(this._active){
+var curr=new Date().valueOf();
+var step=(curr-this._startTime)/(this._endTime-this._startTime);
+if(step>=1){
+step=1;
+this._percent=100;
+}else{
+this._percent=step*100;
+}
+if((this.easing)&&(dojo.lang.isFunction(this.easing))){
+step=this.easing(step);
+}
+var _39b=this.curve.getValue(step);
+this.fire("handler",["animate",_39b]);
+this.fire("onAnimate",[_39b]);
+if(step<1){
+this._timer=setTimeout(dojo.lang.hitch(this,"_cycle"),this.rate);
+}else{
+this._active=false;
+this.fire("handler",["end"]);
+this.fire("onEnd");
+if(this.repeatCount>0){
+this.repeatCount--;
+this.play(null,true);

[... 7519 lines stripped ...]