You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ca...@apache.org on 2007/01/11 23:36:18 UTC

svn commit: r495409 [3/47] - in /myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/dojo/resource: ./ src/ src/animation/ src/cal/ src/charting/ src/charting/svg/ src/charting/vml/ src/collections/ src/crypto/ src/data/ src/data/c...

Added: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/dojo/resource/dojo.js
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/dojo/resource/dojo.js?view=auto&rev=495409
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/dojo/resource/dojo.js (added)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/dojo/resource/dojo.js Thu Jan 11 14:35:53 2007
@@ -0,0 +1,11341 @@
+/*
+	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:1,flag:"",revision:Number("$Rev: 6824 $".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);
+}else{
+_12=dojo.errorToString(_12);
+}
+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){
+var _6f=_6e?_6e.toLowerCase():dojo.locale;
+if(_6f=="root"){
+_6f="ROOT";
+}
+return _6f;
+};
+dojo.hostenv.searchLocalePath=function(_70,_71,_72){
+_70=dojo.hostenv.normalizeLocale(_70);
+var _73=_70.split("-");
+var _74=[];
+for(var i=_73.length;i>0;i--){
+_74.push(_73.slice(0,i).join("-"));
+}
+_74.push(false);
+if(_71){
+_74.reverse();
+}
+for(var j=_74.length-1;j>=0;j--){
+var loc=_74[j]||"ROOT";
+var _78=_72(loc);
+if(_78){
+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(_79){
+_79=dojo.hostenv.normalizeLocale(_79);
+dojo.hostenv.searchLocalePath(_79,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 _7c=djConfig.extraLocale||[];
+for(var i=0;i<_7c.length;i++){
+preload(_7c[i]);
+}
+}
+dojo.hostenv.preloadLocalizations=function(){
+};
+};
+dojo.requireLocalization=function(_7e,_7f,_80,_81){
+dojo.hostenv.preloadLocalizations();
+var _82=dojo.hostenv.normalizeLocale(_80);
+var _83=[_7e,"nls",_7f].join(".");
+var _84="";
+if(_81){
+var _85=_81.split(",");
+for(var i=0;i<_85.length;i++){
+if(_82.indexOf(_85[i])==0){
+if(_85[i].length>_84.length){
+_84=_85[i];
+}
+}
+}
+if(!_84){
+_84="ROOT";
+}
+}
+var _87=_81?_84:_82;
+var _88=dojo.hostenv.findModule(_83);
+var _89=null;
+if(_88){
+if(djConfig.localizationComplete&&_88._built){
+return;
+}
+var _8a=_87.replace("-","_");
+var _8b=_83+"."+_8a;
+_89=dojo.hostenv.findModule(_8b);
+}
+if(!_89){
+_88=dojo.hostenv.startPackage(_83);
+var _8c=dojo.hostenv.getModuleSymbols(_7e);
+var _8d=_8c.concat("nls").join("/");
+var _8e;
+dojo.hostenv.searchLocalePath(_87,_81,function(loc){
+var _90=loc.replace("-","_");
+var _91=_83+"."+_90;
+var _92=false;
+if(!dojo.hostenv.findModule(_91)){
+dojo.hostenv.startPackage(_91);
+var _93=[_8d];
+if(loc!="ROOT"){
+_93.push(loc);
+}
+_93.push(_7f);
+var _94=_93.join("/")+".js";
+_92=dojo.hostenv.loadPath(_94,null,function(_95){
+var _96=function(){
+};
+_96.prototype=_8e;
+_88[_90]=new _96();
+for(var j in _95){
+_88[_90][j]=_95[j];
+}
+});
+}else{
+_92=true;
+}
+if(_92&&_88[_90]){
+_8e=_88[_90];
+}else{
+_88[_90]=_8e;
+}
+if(_81){
+return true;
+}
+});
+}
+if(_81&&_82!=_84){
+_88[_82.replace("-","_")]=_88[_84.replace("-","_")];
+}
+};
+(function(){
+var _98=djConfig.extraLocale;
+if(_98){
+if(!_98 instanceof Array){
+_98=[_98];
+}
+var req=dojo.requireLocalization;
+dojo.requireLocalization=function(m,b,_9c,_9d){
+req(m,b,_9c,_9d);
+if(_9c){
+return;
+}
+for(var i=0;i<_98.length;i++){
+req(m,b,_98[i],_9d);
+}
+};
+}
+})();
+}
+if(typeof window!="undefined"){
+(function(){
+if(djConfig.allowQueryConfig){
+var _9f=document.location.toString();
+var _a0=_9f.split("?",2);
+if(_a0.length>1){
+var _a1=_a0[1];
+var _a2=_a1.split("&");
+for(var x in _a2){
+var sp=_a2[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 _a6=document.getElementsByTagName("script");
+var _a7=/(__package__|dojo|bootstrap1)\.js([\?\.]|$)/i;
+for(var i=0;i<_a6.length;i++){
+var src=_a6[i].getAttribute("src");
+if(!src){
+continue;
+}
+var m=src.match(_a7);
+if(m){
+var _ab=src.substring(0,m.index);
+if(src.indexOf("bootstrap1")>-1){
+_ab+="../";
+}
+if(!this["djConfig"]){
+djConfig={};
+}
+if(djConfig["baseScriptUri"]==""){
+djConfig["baseScriptUri"]=_ab;
+}
+if(djConfig["baseRelativePath"]==""){
+djConfig["baseRelativePath"]=_ab;
+}
+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 _b3=dua.indexOf("Gecko");
+drh.mozilla=drh.moz=(_b3>=0)&&(!drh.khtml);
+if(drh.mozilla){
+drh.geckoVersion=dua.substring(_b3+6,_b3+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 _b5=window["document"];
+var tdi=_b5["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;
+}
+}else{
+}
+})();
+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 _b9=null;
+var _ba=null;
+try{
+_b9=new XMLHttpRequest();
+}
+catch(e){
+}
+if(!_b9){
+for(var i=0;i<3;++i){
+var _bc=dojo.hostenv._XMLHTTP_PROGIDS[i];
+try{
+_b9=new ActiveXObject(_bc);
+}
+catch(e){
+_ba=e;
+}
+if(_b9){
+dojo.hostenv._XMLHTTP_PROGIDS=[_bc];
+break;
+}
+}
+}
+if(!_b9){
+return dojo.raise("XMLHTTP not available",_ba);
+}
+return _b9;
+};
+dojo.hostenv._blockAsync=false;
+dojo.hostenv.getText=function(uri,_be,_bf){
+if(!_be){
+this._blockAsync=true;
+}
+var _c0=this.getXmlhttpObject();
+function isDocumentOk(_c1){
+var _c2=_c1["status"];
+return Boolean((!_c2)||((200<=_c2)&&(300>_c2))||(_c2==304));
+}
+if(_be){
+var _c3=this,_c4=null,gbl=dojo.global();
+var xhr=dojo.evalObjPath("dojo.io.XMLHTTPTransport");
+_c0.onreadystatechange=function(){
+if(_c4){
+gbl.clearTimeout(_c4);
+_c4=null;
+}
+if(_c3._blockAsync||(xhr&&xhr._blockAsync)){
+_c4=gbl.setTimeout(function(){
+_c0.onreadystatechange.apply(this);
+},10);
+}else{
+if(4==_c0.readyState){
+if(isDocumentOk(_c0)){
+_be(_c0.responseText);
+}
+}
+}
+};
+}
+_c0.open("GET",uri,_be?true:false);
+try{
+_c0.send(null);
+if(_be){
+return null;
+}
+if(!isDocumentOk(_c0)){
+var err=Error("Unable to load "+uri+" status:"+_c0.status);
+err.status=_c0.status;
+err.responseText=_c0.responseText;
+throw err;
+}
+}
+catch(e){
+this._blockAsync=false;
+if((_bf)&&(!_be)){
+return null;
+}else{
+throw e;
+}
+}
+this._blockAsync=false;
+return _c0.responseText;
+};
+dojo.hostenv.defaultDebugContainerId="dojoDebug";
+dojo.hostenv._println_buffer=[];
+dojo.hostenv._println_safe=false;
+dojo.hostenv.println=function(_c8){
+if(!dojo.hostenv._println_safe){
+dojo.hostenv._println_buffer.push(_c8);
+}else{
+try{
+var _c9=document.getElementById(djConfig.debugContainerId?djConfig.debugContainerId:dojo.hostenv.defaultDebugContainerId);
+if(!_c9){
+_c9=dojo.body();
+}
+var div=document.createElement("div");
+div.appendChild(document.createTextNode(_c8));
+_c9.appendChild(div);
+}
+catch(e){
+try{
+document.write("<div>"+_c8+"</div>");
+}
+catch(e2){
+window.status=_c8;
+}
+}
+}
+};
+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(_cb,_cc,fp){
+var _ce=_cb["on"+_cc]||function(){
+};
+_cb["on"+_cc]=function(){
+fp.apply(_cb,arguments);
+_ce.apply(_cb,arguments);
+};
+return true;
+}
+function dj_load_init(e){
+var _d0=(e&&e.type)?e.type.toLowerCase():"load";
+if(arguments.callee.initialized||(_d0!="domcontentloaded"&&_d0!="load")){
+return;
+}
+arguments.callee.initialized=true;
+if(typeof (_timer)!="undefined"){
+clearInterval(_timer);
+delete _timer;
+}
+var _d1=function(){
+if(dojo.render.html.ie){
+dojo.hostenv.makeWidgets();
+}
+};
+if(dojo.hostenv.inFlightCount==0){
+_d1();
+dojo.hostenv.modulesLoaded();
+}else{
+dojo.hostenv.modulesLoadedListeners.unshift(_d1);
+}
+}
+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 _d3=[];
+if(djConfig.searchIds&&djConfig.searchIds.length>0){
+_d3=_d3.concat(djConfig.searchIds);
+}
+if(dojo.hostenv.searchIds&&dojo.hostenv.searchIds.length>0){
+_d3=_d3.concat(dojo.hostenv.searchIds);
+}
+if((djConfig.parseWidgets)||(_d3.length>0)){
+if(dojo.evalObjPath("dojo.widget.Parse")){
+var _d4=new dojo.xml.Parse();
+if(_d3.length>0){
+for(var x=0;x<_d3.length;x++){
+var _d6=document.getElementById(_d3[x]);
+if(!_d6){
+continue;
+}
+var _d7=_d4.parseElement(_d6,null,true);
+dojo.widget.getParser().createComponents(_d7);
+}
+}else{
+if(djConfig.parseWidgets){
+var _d7=_d4.parseElement(dojo.body(),null,true);
+dojo.widget.getParser().createComponents(_d7);
+}
+}
+}
+}
+};
+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(_dc,_dd){
+dj_currentContext=_dc;
+dj_currentDocument=_dd;
+};
+dojo._fireCallback=function(_de,_df,_e0){
+if((_df)&&((typeof _de=="string")||(_de instanceof String))){
+_de=_df[_de];
+}
+return (_df?_de.apply(_df,_e0||[]):_de());
+};
+dojo.withGlobal=function(_e1,_e2,_e3,_e4){
+var _e5;
+var _e6=dj_currentContext;
+var _e7=dj_currentDocument;
+try{
+dojo.setContext(_e1,_e1.document);
+_e5=dojo._fireCallback(_e2,_e3,_e4);
+}
+finally{
+dojo.setContext(_e6,_e7);
+}
+return _e5;
+};
+dojo.withDoc=function(_e8,_e9,_ea,_eb){
+var _ec;
+var _ed=dj_currentDocument;
+try{
+dj_currentDocument=_e8;
+_ec=dojo._fireCallback(_e9,_ea,_eb);
+}
+finally{
+dj_currentDocument=_ed;
+}
+return _ec;
+};
+}
+(function(){
+if(typeof dj_usingBootstrap!="undefined"){
+return;
+}
+var _ee=false;
+var _ef=false;
+var _f0=false;
+if((typeof this["load"]=="function")&&((typeof this["Packages"]=="function")||(typeof this["Packages"]=="object"))){
+_ee=true;
+}else{
+if(typeof this["load"]=="function"){
+_ef=true;
+}else{
+if(window.widget){
+_f0=true;
+}
+}
+}
+var _f1=[];
+if((this["djConfig"])&&((djConfig["isDebug"])||(djConfig["debugAtAllCosts"]))){
+_f1.push("debug.js");
+}
+if((this["djConfig"])&&(djConfig["debugAtAllCosts"])&&(!_ee)&&(!_f0)){
+_f1.push("browser_debug.js");
+}
+var _f2=djConfig["baseScriptUri"];
+if((this["djConfig"])&&(djConfig["baseLoaderUri"])){
+_f2=djConfig["baseLoaderUri"];
+}
+for(var x=0;x<_f1.length;x++){
+var _f4=_f2+"src/"+_f1[x];
+if(_ee||_ef){
+load(_f4);
+}else{
+try{
+document.write("<scr"+"ipt type='text/javascript' src='"+_f4+"'></scr"+"ipt>");
+}
+catch(e){
+var _f5=document.createElement("script");
+_f5.src=_f4;
+document.getElementsByTagName("head")[0].appendChild(_f5);
+}
+}
+}
+})();
+dojo.provide("dojo.lang.common");
+dojo.lang.inherits=function(_f6,_f7){
+if(!dojo.lang.isFunction(_f7)){
+dojo.raise("dojo.inherits: superclass argument ["+_f7+"] must be a function (subclass: ["+_f6+"']");
+}
+_f6.prototype=new _f7();
+_f6.prototype.constructor=_f6;
+_f6.superclass=_f7.prototype;
+_f6["super"]=_f7.prototype;
+};
+dojo.lang._mixin=function(obj,_f9){
+var _fa={};
+for(var x in _f9){
+if((typeof _fa[x]=="undefined")||(_fa[x]!=_f9[x])){
+obj[x]=_f9[x];
+}
+}
+if(dojo.render.html.ie&&(typeof (_f9["toString"])=="function")&&(_f9["toString"]!=obj["toString"])&&(_f9["toString"]!=_fa["toString"])){
+obj.toString=_f9.toString;
+}
+return obj;
+};
+dojo.lang.mixin=function(obj,_fd){
+for(var i=1,l=arguments.length;i<l;i++){
+dojo.lang._mixin(obj,arguments[i]);
+}
+return obj;
+};
+dojo.lang.extend=function(_100,_101){
+for(var i=1,l=arguments.length;i<l;i++){
+dojo.lang._mixin(_100.prototype,arguments[i]);
+}
+return _100;
+};
+dojo.inherits=dojo.lang.inherits;
+dojo.mixin=dojo.lang.mixin;
+dojo.extend=dojo.lang.extend;
+dojo.lang.find=function(_104,_105,_106,_107){
+if(!dojo.lang.isArrayLike(_104)&&dojo.lang.isArrayLike(_105)){
+dojo.deprecated("dojo.lang.find(value, array)","use dojo.lang.find(array, value) instead","0.5");
+var temp=_104;
+_104=_105;
+_105=temp;
+}
+var _109=dojo.lang.isString(_104);
+if(_109){
+_104=_104.split("");
+}
+if(_107){
+var step=-1;
+var i=_104.length-1;
+var end=-1;
+}else{
+var step=1;
+var i=0;
+var end=_104.length;
+}
+if(_106){
+while(i!=end){
+if(_104[i]===_105){
+return i;
+}
+i+=step;
+}
+}else{
+while(i!=end){
+if(_104[i]==_105){
+return i;
+}
+i+=step;
+}
+}
+return -1;
+};
+dojo.lang.indexOf=dojo.lang.find;
+dojo.lang.findLast=function(_10d,_10e,_10f){
+return dojo.lang.find(_10d,_10e,_10f,true);
+};
+dojo.lang.lastIndexOf=dojo.lang.findLast;
+dojo.lang.inArray=function(_110,_111){
+return dojo.lang.find(_110,_111)>-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){
+return (it instanceof Function||typeof it=="function");
+};
+(function(){
+if((dojo.render.html.capable)&&(dojo.render.html["safari"])){
+dojo.lang.isFunction=function(it){
+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(it)&&/\{\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 _11d=dojo.doc();
+do{
+var id="dj_unique_"+(++arguments.callee._idIncrement);
+}while(_11d.getElementById(id));
+return id;
+};
+dojo.dom.getUniqueId._idIncrement=0;
+dojo.dom.firstElement=dojo.dom.getFirstChildElement=function(_11f,_120){
+var node=_11f.firstChild;
+while(node&&node.nodeType!=dojo.dom.ELEMENT_NODE){
+node=node.nextSibling;
+}
+if(_120&&node&&node.tagName&&node.tagName.toLowerCase()!=_120.toLowerCase()){
+node=dojo.dom.nextElement(node,_120);
+}
+return node;
+};
+dojo.dom.lastElement=dojo.dom.getLastChildElement=function(_122,_123){
+var node=_122.lastChild;
+while(node&&node.nodeType!=dojo.dom.ELEMENT_NODE){
+node=node.previousSibling;
+}
+if(_123&&node&&node.tagName&&node.tagName.toLowerCase()!=_123.toLowerCase()){
+node=dojo.dom.prevElement(node,_123);
+}
+return node;
+};
+dojo.dom.nextElement=dojo.dom.getNextSiblingElement=function(node,_126){
+if(!node){
+return null;
+}
+do{
+node=node.nextSibling;
+}while(node&&node.nodeType!=dojo.dom.ELEMENT_NODE);
+if(node&&_126&&_126.toLowerCase()!=node.tagName.toLowerCase()){
+return dojo.dom.nextElement(node,_126);
+}
+return node;
+};
+dojo.dom.prevElement=dojo.dom.getPreviousSiblingElement=function(node,_128){
+if(!node){
+return null;
+}
+if(_128){
+_128=_128.toLowerCase();
+}
+do{
+node=node.previousSibling;
+}while(node&&node.nodeType!=dojo.dom.ELEMENT_NODE);
+if(node&&_128&&_128.toLowerCase()!=node.tagName.toLowerCase()){
+return dojo.dom.prevElement(node,_128);
+}
+return node;
+};
+dojo.dom.moveChildren=function(_129,_12a,trim){
+var _12c=0;
+if(trim){
+while(_129.hasChildNodes()&&_129.firstChild.nodeType==dojo.dom.TEXT_NODE){
+_129.removeChild(_129.firstChild);
+}
+while(_129.hasChildNodes()&&_129.lastChild.nodeType==dojo.dom.TEXT_NODE){
+_129.removeChild(_129.lastChild);
+}
+}
+while(_129.hasChildNodes()){
+_12a.appendChild(_129.firstChild);
+_12c++;
+}
+return _12c;
+};
+dojo.dom.copyChildren=function(_12d,_12e,trim){
+var _130=_12d.cloneNode(true);
+return this.moveChildren(_130,_12e,trim);
+};
+dojo.dom.replaceChildren=function(node,_132){
+var _133=[];
+if(dojo.render.html.ie){
+for(var i=0;i<node.childNodes.length;i++){
+_133.push(node.childNodes[i]);
+}
+}
+dojo.dom.removeChildren(node);
+node.appendChild(_132);
+for(var i=0;i<_133.length;i++){
+dojo.dom.destroyNode(_133[i]);
+}
+};
+dojo.dom.removeChildren=function(node){
+var _136=node.childNodes.length;
+while(node.hasChildNodes()){
+dojo.dom.removeNode(node.firstChild);
+}
+return _136;
+};
+dojo.dom.replaceNode=function(node,_138){
+return node.parentNode.replaceChild(_138,node);
+};
+dojo.dom.destroyNode=function(node){
+if(node.parentNode){
+node=dojo.dom.removeNode(node);
+}
+if(node.nodeType!=3){
+if(dojo.evalObjPath("dojo.event.browser.clean",false)){
+dojo.event.browser.clean(node);
+}
+if(dojo.render.html.ie){
+node.outerHTML="";
+}
+}
+};
+dojo.dom.removeNode=function(node){
+if(node&&node.parentNode){
+return node.parentNode.removeChild(node);
+}
+};
+dojo.dom.getAncestors=function(node,_13c,_13d){
+var _13e=[];
+var _13f=(_13c&&(_13c instanceof Function||typeof _13c=="function"));
+while(node){
+if(!_13f||_13c(node)){
+_13e.push(node);
+}
+if(_13d&&_13e.length>0){
+return _13e[0];
+}
+node=node.parentNode;
+}
+if(_13d){
+return null;
+}
+return _13e;
+};
+dojo.dom.getAncestorsByTag=function(node,tag,_142){
+tag=tag.toLowerCase();
+return dojo.dom.getAncestors(node,function(el){
+return ((el.tagName)&&(el.tagName.toLowerCase()==tag));
+},_142);
+};
+dojo.dom.getFirstAncestorByTag=function(node,tag){
+return dojo.dom.getAncestorsByTag(node,tag,true);
+};
+dojo.dom.isDescendantOf=function(node,_147,_148){
+if(_148&&node){
+node=node.parentNode;
+}
+while(node){
+if(node==_147){
+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 _14b=dojo.doc();
+if(!dj_undef("ActiveXObject")){
+var _14c=["MSXML2","Microsoft","MSXML","MSXML3"];
+for(var i=0;i<_14c.length;i++){
+try{
+doc=new ActiveXObject(_14c[i]+".XMLDOM");
+}
+catch(e){
+}
+if(doc){
+break;
+}
+}
+}else{
+if((_14b.implementation)&&(_14b.implementation.createDocument)){
+doc=_14b.implementation.createDocument("","",null);
+}
+}
+return doc;
+};
+dojo.dom.createDocumentFromText=function(str,_14f){
+if(!_14f){
+_14f="text/xml";
+}
+if(!dj_undef("DOMParser")){
+var _150=new DOMParser();
+return _150.parseFromString(str,_14f);
+}else{
+if(!dj_undef("ActiveXObject")){
+var _151=dojo.dom.createDocument();
+if(_151){
+_151.async=false;
+_151.loadXML(str);
+return _151;
+}else{
+dojo.debug("toXml didn't work?");
+}
+}else{
+var _152=dojo.doc();
+if(_152.createElement){
+var tmp=_152.createElement("xml");
+tmp.innerHTML=str;
+if(_152.implementation&&_152.implementation.createDocument){
+var _154=_152.implementation.createDocument("foo","",null);
+for(var i=0;i<tmp.childNodes.length;i++){
+_154.importNode(tmp.childNodes.item(i),true);
+}
+return _154;
+}
+return ((tmp.document)&&(tmp.document.firstChild?tmp.document.firstChild:tmp));
+}
+}
+}
+return null;
+};
+dojo.dom.prependChild=function(node,_157){
+if(_157.firstChild){
+_157.insertBefore(node,_157.firstChild);
+}else{
+_157.appendChild(node);
+}
+return true;
+};
+dojo.dom.insertBefore=function(node,ref,_15a){
+if((_15a!=true)&&(node===ref||node.nextSibling===ref)){
+return false;
+}
+var _15b=ref.parentNode;
+_15b.insertBefore(node,ref);
+return true;
+};
+dojo.dom.insertAfter=function(node,ref,_15e){
+var pn=ref.parentNode;
+if(ref==pn.lastChild){
+if((_15e!=true)&&(node===ref)){
+return false;
+}
+pn.appendChild(node);
+}else{
+return this.insertBefore(node,ref.nextSibling,_15e);
+}
+return true;
+};
+dojo.dom.insertAtPosition=function(node,ref,_162){
+if((!node)||(!ref)||(!_162)){
+return false;
+}
+switch(_162.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,_164,_165){
+var _166=_164.childNodes;
+if(!_166.length||_166.length==_165){
+_164.appendChild(node);
+return true;
+}
+if(_165==0){
+return dojo.dom.prependChild(node,_164);
+}
+return dojo.dom.insertAfter(node,_166[_165-1]);
+};
+dojo.dom.textContent=function(node,text){
+if(arguments.length>1){
+var _169=dojo.doc();
+dojo.dom.replaceChildren(node,_169.createTextNode(text));
+return text;
+}else{
+if(node.textContent!=undefined){
+return node.textContent;
+}
+var _16a="";
+if(node==null){
+return _16a;
+}
+for(var i=0;i<node.childNodes.length;i++){
+switch(node.childNodes[i].nodeType){
+case 1:
+case 5:
+_16a+=dojo.dom.textContent(node.childNodes[i]);
+break;
+case 3:
+case 2:
+case 4:
+_16a+=node.childNodes[i].nodeValue;
+break;
+default:
+break;
+}
+}
+return _16a;
+}
+};
+dojo.dom.hasParent=function(node){
+return Boolean(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,_170,_171,_172){
+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(_170,_171,_172);
+}else{
+var _173=elem.ownerDocument;
+var _174=_173.createNode(2,_171,_170);
+_174.nodeValue=_172;
+elem.setAttributeNode(_174);
+}
+};
+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 _177=dojo.global();
+var _178=dojo.doc();
+var w=0;
+var h=0;
+if(dojo.render.html.mozilla){
+w=_178.documentElement.clientWidth;
+h=_177.innerHeight;
+}else{
+if(!dojo.render.html.opera&&_177.innerWidth){
+w=_177.innerWidth;
+h=_177.innerHeight;
+}else{
+if(!dojo.render.html.opera&&dojo.exists(_178,"documentElement.clientWidth")){
+var w2=_178.documentElement.clientWidth;
+if(!w||w2&&w2<w){
+w=w2;
+}
+h=_178.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 _17c=dojo.global();
+var _17d=dojo.doc();
+var top=_17c.pageYOffset||_17d.documentElement.scrollTop||dojo.body().scrollTop||0;
+var left=_17c.pageXOffset||_17d.documentElement.scrollLeft||dojo.body().scrollLeft||0;
+return {top:top,left:left,offset:{x:left,y:top}};
+};
+dojo.html.getParentByType=function(node,type){
+var _182=dojo.doc();
+var _183=dojo.byId(node);
+type=type.toLowerCase();
+while((_183)&&(_183.nodeName.toLowerCase()!=type)){
+if(_183==(_182["body"]||_182["documentElement"])){
+return null;
+}
+_183=_183.parentNode;
+}
+return _183;
+};
+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 _18b={x:0,y:0};
+if(e.pageX||e.pageY){
+_18b.x=e.pageX;
+_18b.y=e.pageY;
+}else{
+var de=dojo.doc().documentElement;
+var db=dojo.body();
+_18b.x=e.clientX+((de||db)["scrollLeft"])-((de||db)["clientLeft"]);
+_18b.y=e.clientY+((de||db)["scrollTop"])-((de||db)["clientTop"]);
+}
+return _18b;
+};
+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 _190=dojo.doc().createElement("script");
+_190.src="javascript:'dojo.html.createExternalElement=function(doc, tag){ return doc.createElement(tag); }'";
+dojo.doc().getElementsByTagName("head")[0].appendChild(_190);
+})();
+}
+}else{
+dojo.html.createExternalElement=function(doc,tag){
+return doc.createElement(tag);
+};
+}
+dojo.html._callDeprecated=function(_193,_194,args,_196,_197){
+dojo.deprecated("dojo.html."+_193,"replaced by dojo.html."+_194+"("+(_196?"node, {"+_196+": "+_196+"}":"")+")"+(_197?"."+_197:""),"0.5");
+var _198=[];
+if(_196){
+var _199={};
+_199[_196]=args[1];
+_198.push(args[0]);
+_198.push(_199);
+}else{
+_198=args;
+}
+var ret=dojo.html[_194].apply(dojo.html,args);
+if(_197){
+return ret[_197];
+}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(_19c,uri){
+var loc=dojo.hostenv.getModuleSymbols(_19c).join("/");
+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 _1a1=new dojo.uri.Uri(arguments[i].toString());
+var _1a2=new dojo.uri.Uri(uri.toString());
+if((_1a1.path=="")&&(_1a1.scheme==null)&&(_1a1.authority==null)&&(_1a1.query==null)){
+if(_1a1.fragment!=null){
+_1a2.fragment=_1a1.fragment;
+}
+_1a1=_1a2;
+}else{
+if(_1a1.scheme==null){
+_1a1.scheme=_1a2.scheme;
+if(_1a1.authority==null){
+_1a1.authority=_1a2.authority;
+if(_1a1.path.charAt(0)!="/"){
+var path=_1a2.path.substring(0,_1a2.path.lastIndexOf("/")+1)+_1a1.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;
+}
+}
+}
+}
+_1a1.path=segs.join("/");
+}
+}
+}
+}
+uri="";
+if(_1a1.scheme!=null){
+uri+=_1a1.scheme+":";
+}
+if(_1a1.authority!=null){
+uri+="//"+_1a1.authority;
+}
+uri+=_1a1.path;
+if(_1a1.query!=null){
+uri+="?"+_1a1.query;
+}
+if(_1a1.fragment!=null){
+uri+="#"+_1a1.fragment;
+}
+}
+this.uri=uri.toString();
+var _1a6="^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?$";
+var r=this.uri.match(new RegExp(_1a6));
+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){
+_1a6="^((([^:]+:)?([^@]+))@)?([^:]*)(:([0-9]+))?$";
+r=this.authority.match(new RegExp(_1a6));
+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,_1ad){
+return (new RegExp("(^|\\s+)"+_1ad+"(\\s+|$)")).test(dojo.html.getClass(node));
+};
+dojo.html.prependClass=function(node,_1af){
+_1af+=" "+dojo.html.getClass(node);
+return dojo.html.setClass(node,_1af);
+};
+dojo.html.addClass=function(node,_1b1){
+if(dojo.html.hasClass(node,_1b1)){
+return false;
+}
+_1b1=(dojo.html.getClass(node)+" "+_1b1).replace(/^\s+|\s+$/g,"");
+return dojo.html.setClass(node,_1b1);
+};
+dojo.html.setClass=function(node,_1b3){
+node=dojo.byId(node);
+var cs=new String(_1b3);
+try{
+if(typeof node.className=="string"){
+node.className=cs;
+}else{
+if(node.setAttribute){
+node.setAttribute("class",_1b3);
+node.className=cs;
+}else{
+return false;
+}
+}
+}
+catch(e){
+dojo.debug("dojo.html.setClass() failed",e);
+}
+return true;
+};
+dojo.html.removeClass=function(node,_1b6,_1b7){
+try{
+if(!_1b7){
+var _1b8=dojo.html.getClass(node).replace(new RegExp("(^|\\s+)"+_1b6+"(\\s+|$)"),"$1$2");
+}else{
+var _1b8=dojo.html.getClass(node).replace(_1b6,"");
+}
+dojo.html.setClass(node,_1b8);
+}
+catch(e){
+dojo.debug("dojo.html.removeClass() failed",e);
+}
+return true;
+};
+dojo.html.replaceClass=function(node,_1ba,_1bb){
+dojo.html.removeClass(node,_1bb);
+dojo.html.addClass(node,_1ba);
+};
+dojo.html.classMatchType={ContainsAll:0,ContainsAny:1,IsOnly:2};
+dojo.html.getElementsByClass=function(_1bc,_1bd,_1be,_1bf,_1c0){
+_1c0=false;
+var _1c1=dojo.doc();
+_1bd=dojo.byId(_1bd)||_1c1;
+var _1c2=_1bc.split(/\s+/g);
+var _1c3=[];
+if(_1bf!=1&&_1bf!=2){
+_1bf=0;
+}
+var _1c4=new RegExp("(\\s|^)(("+_1c2.join(")|(")+"))(\\s|$)");
+var _1c5=_1c2.join(" ").length;
+var _1c6=[];
+if(!_1c0&&_1c1.evaluate){
+var _1c7=".//"+(_1be||"*")+"[contains(";
+if(_1bf!=dojo.html.classMatchType.ContainsAny){
+_1c7+="concat(' ',@class,' '), ' "+_1c2.join(" ') and contains(concat(' ',@class,' '), ' ")+" ')";
+if(_1bf==2){
+_1c7+=" and string-length(@class)="+_1c5+"]";
+}else{
+_1c7+="]";
+}
+}else{
+_1c7+="concat(' ',@class,' '), ' "+_1c2.join(" ') or contains(concat(' ',@class,' '), ' ")+" ')]";
+}
+var _1c8=_1c1.evaluate(_1c7,_1bd,null,XPathResult.ANY_TYPE,null);
+var _1c9=_1c8.iterateNext();
+while(_1c9){
+try{
+_1c6.push(_1c9);
+_1c9=_1c8.iterateNext();
+}
+catch(e){
+break;
+}
+}
+return _1c6;
+}else{
+if(!_1be){
+_1be="*";
+}
+_1c6=_1bd.getElementsByTagName(_1be);
+var node,i=0;
+outer:
+while(node=_1c6[i++]){
+var _1cc=dojo.html.getClasses(node);
+if(_1cc.length==0){
+continue outer;
+}
+var _1cd=0;
+for(var j=0;j<_1cc.length;j++){
+if(_1c4.test(_1cc[j])){
+if(_1bf==dojo.html.classMatchType.ContainsAny){
+_1c3.push(node);
+continue outer;
+}else{
+_1cd++;
+}
+}else{
+if(_1bf==dojo.html.classMatchType.IsOnly){
+continue outer;
+}
+}
+}
+if(_1cd==_1c2.length){
+if((_1bf==dojo.html.classMatchType.IsOnly)&&(_1cd==_1cc.length)){
+_1c3.push(node);
+}else{
+if(_1bf==dojo.html.classMatchType.ContainsAll){
+_1c3.push(node);
+}
+}
+}
+}
+return _1c3;
+}
+};
+dojo.html.getElementsByClassName=dojo.html.getElementsByClass;
+dojo.html.toCamelCase=function(_1cf){
+var arr=_1cf.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(_1d3){
+return _1d3.replace(/([A-Z])/g,"-$1").toLowerCase();
+};
+dojo.html.getComputedStyle=function(node,_1d5,_1d6){
+node=dojo.byId(node);
+var _1d5=dojo.html.toSelectorCase(_1d5);
+var _1d7=dojo.html.toCamelCase(_1d5);
+if(!node||!node.style){
+return _1d6;
+}else{
+if(document.defaultView&&dojo.html.isDescendantOf(node,node.ownerDocument)){
+try{
+var cs=document.defaultView.getComputedStyle(node,"");
+if(cs){
+return cs.getPropertyValue(_1d5);
+}
+}
+catch(e){
+if(node.style.getPropertyValue){
+return node.style.getPropertyValue(_1d5);
+}else{
+return _1d6;
+}
+}
+}else{
+if(node.currentStyle){
+return node.currentStyle[_1d7];
+}
+}
+}
+if(node.style.getPropertyValue){
+return node.style.getPropertyValue(_1d5);
+}else{
+return _1d6;
+}
+};
+dojo.html.getStyleProperty=function(node,_1da){
+node=dojo.byId(node);
+return (node&&node.style?node.style[dojo.html.toCamelCase(_1da)]:undefined);
+};
+dojo.html.getStyle=function(node,_1dc){
+var _1dd=dojo.html.getStyleProperty(node,_1dc);
+return (_1dd?_1dd:dojo.html.getComputedStyle(node,_1dc));
+};
+dojo.html.setStyle=function(node,_1df,_1e0){
+node=dojo.byId(node);
+if(node&&node.style){
+var _1e1=dojo.html.toCamelCase(_1df);
+node.style[_1e1]=_1e0;
+}
+};
+dojo.html.setStyleText=function(_1e2,text){
+try{
+_1e2.style.cssText=text;
+}
+catch(e){
+_1e2.setAttribute("style",text);
+}
+};
+dojo.html.copyStyle=function(_1e4,_1e5){
+if(!_1e5.style.cssText){
+_1e4.setAttribute("style",_1e5.getAttribute("style"));
+}else{
+_1e4.style.cssText=_1e5.style.cssText;
+}
+dojo.html.addClass(_1e4,dojo.html.getClass(_1e5));
+};
+dojo.html.getUnitValue=function(node,_1e7,_1e8){
+var s=dojo.html.getComputedStyle(node,_1e7);
+if((!s)||((s=="auto")&&(_1e8))){
+return {value:0,units:"px"};
+}
+var _1ea=s.match(/(\-?[\d.]+)([a-z%]*)/i);
+if(!_1ea){
+return dojo.html.getUnitValue.bad;
+}
+return {value:Number(_1ea[1]),units:_1ea[2].toLowerCase()};
+};
+dojo.html.getUnitValue.bad={value:NaN,units:""};
+dojo.html.getPixelValue=function(node,_1ec,_1ed){
+var _1ee=dojo.html.getUnitValue(node,_1ec,_1ed);
+if(isNaN(_1ee.value)){
+return 0;
+}
+if((_1ee.value)&&(_1ee.units!="px")){
+return NaN;
+}
+return _1ee.value;
+};
+dojo.html.setPositivePixelValue=function(node,_1f0,_1f1){
+if(isNaN(_1f1)){
+return false;
+}
+node.style[_1f0]=Math.max(0,_1f1)+"px";
+return true;
+};
+dojo.html.styleSheet=null;
+dojo.html.insertCssRule=function(_1f2,_1f3,_1f4){
+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){
+_1f4=dojo.html.styleSheet.cssRules.length;
+}else{
+if(dojo.html.styleSheet.rules){
+_1f4=dojo.html.styleSheet.rules.length;
+}else{
+return null;
+}
+}
+}
+if(dojo.html.styleSheet.insertRule){
+var rule=_1f2+" { "+_1f3+" }";
+return dojo.html.styleSheet.insertRule(rule,_1f4);
+}else{
+if(dojo.html.styleSheet.addRule){
+return dojo.html.styleSheet.addRule(_1f2,_1f3,_1f4);
+}else{
+return null;
+}
+}
+};
+dojo.html.removeCssRule=function(_1f6){
+if(!dojo.html.styleSheet){
+dojo.debug("no stylesheet defined for removing rules");
+return false;
+}
+if(dojo.render.html.ie){
+if(!_1f6){
+_1f6=dojo.html.styleSheet.rules.length;
+dojo.html.styleSheet.removeRule(_1f6);
+}
+}else{
+if(document.styleSheets[0]){
+if(!_1f6){
+_1f6=dojo.html.styleSheet.cssRules.length;
+}
+dojo.html.styleSheet.deleteRule(_1f6);
+}
+}
+return true;
+};
+dojo.html._insertedCssFiles=[];
+dojo.html.insertCssFile=function(URI,doc,_1f9,_1fa){
+if(!URI){
+return;
+}
+if(!doc){
+doc=document;
+}
+var _1fb=dojo.hostenv.getText(URI,false,_1fa);
+if(_1fb===null){
+return;
+}
+_1fb=dojo.html.fixPathsInCssText(_1fb,URI);
+if(_1f9){
+var idx=-1,node,ent=dojo.html._insertedCssFiles;
+for(var i=0;i<ent.length;i++){
+if((ent[i].doc==doc)&&(ent[i].cssText==_1fb)){
+idx=i;
+node=ent[i].nodeRef;
+break;
+}
+}
+if(node){
+var _200=doc.getElementsByTagName("style");
+for(var i=0;i<_200.length;i++){
+if(_200[i]==node){
+return;
+}
+}
+dojo.html._insertedCssFiles.shift(idx,1);
+}
+}
+var _201=dojo.html.insertCssText(_1fb,doc);
+dojo.html._insertedCssFiles.push({"doc":doc,"cssText":_1fb,"nodeRef":_201});
+if(_201&&djConfig.isDebug){
+_201.setAttribute("dbgHref",URI);
+}
+return _201;
+};
+dojo.html.insertCssText=function(_202,doc,URI){
+if(!_202){
+return;
+}
+if(!doc){
+doc=document;
+}
+if(URI){
+_202=dojo.html.fixPathsInCssText(_202,URI);
+}
+var _205=doc.createElement("style");
+_205.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(_205);
+}
+if(_205.styleSheet){
+var _207=function(){
+try{
+_205.styleSheet.cssText=_202;
+}
+catch(e){
+dojo.debug(e);
+}
+};
+if(_205.styleSheet.disabled){
+setTimeout(_207,10);
+}else{
+_207();
+}
+}else{
+var _208=doc.createTextNode(_202);
+_205.appendChild(_208);
+}
+return _205;
+};
+dojo.html.fixPathsInCssText=function(_209,URI){
+if(!_209||!URI){
+return;
+}
+var _20b,str="",url="",_20e="[\\t\\s\\w\\(\\)\\/\\.\\\\'\"-:#=&?~]+";
+var _20f=new RegExp("url\\(\\s*("+_20e+")\\s*\\)");
+var _210=/(file|https?|ftps?):\/\//;
+regexTrim=new RegExp("^[\\s]*(['\"]?)("+_20e+")\\1[\\s]*?$");
+if(dojo.render.html.ie55||dojo.render.html.ie60){
+var _211=new RegExp("AlphaImageLoader\\((.*)src=['\"]("+_20e+")['\"]");
+while(_20b=_211.exec(_209)){
+url=_20b[2].replace(regexTrim,"$2");
+if(!_210.exec(url)){
+url=(new dojo.uri.Uri(URI,url).toString());
+}
+str+=_209.substring(0,_20b.index)+"AlphaImageLoader("+_20b[1]+"src='"+url+"'";
+_209=_209.substr(_20b.index+_20b[0].length);
+}
+_209=str+_209;
+str="";
+}
+while(_20b=_20f.exec(_209)){
+url=_20b[1].replace(regexTrim,"$2");
+if(!_210.exec(url)){
+url=(new dojo.uri.Uri(URI,url).toString());
+}
+str+=_209.substring(0,_20b.index)+"url("+url+")";
+_209=_209.substr(_20b.index+_20b[0].length);
+}
+return str+_209;
+};
+dojo.html.setActiveStyleSheet=function(_212){
+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")==_212){
+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 _21e={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 _21e){
+if(_21e[p]){
+dojo.html.addClass(node,p);
+}
+}
+};
+dojo.provide("dojo.html.*");
+dojo.provide("dojo.html.display");
+dojo.html._toggle=function(node,_221,_222){
+node=dojo.byId(node);
+_222(node,!_221(node));
+return _221(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,_227){
+dojo.html[(_227?"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,_22d){
+dojo.html.setStyle(node,"display",((_22d instanceof String||typeof _22d=="string")?_22d:(_22d?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,_231){
+dojo.html.setStyle(node,"visibility",((_231 instanceof String||typeof _231=="string")?_231:(_231?"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,_235,_236){
+node=dojo.byId(node);
+var h=dojo.render.html;
+if(!_236){
+if(_235>=1){
+if(h.ie){
+dojo.html.clearOpacity(node);
+return;
+}else{
+_235=0.999999;
+}
+}else{
+if(_235<0){
+_235=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="+_235*100+")";
+}
+}
+node.style.filter="Alpha(Opacity="+_235*100+")";
+}else{
+if(h.moz){
+node.style.opacity=_235;
+node.style.MozOpacity=_235;
+}else{
+if(h.safari){
+node.style.opacity=_235;
+node.style.KhtmlOpacity=_235;
+}else{
+node.style.opacity=_235;
+}
+}
+}
+};
+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 _242=0;
+while(node){
+if(dojo.html.getComputedStyle(node,"position")=="fixed"){
+return 0;
+}
+var val=node[prop];
+if(val){
+_242+=val-0;
+if(node==dojo.body()){
+break;
+}
+}
+node=node.parentNode;
+}
+return _242;
+};
+dojo.html.setStyleAttributes=function(node,_245){
+node=dojo.byId(node);
+var _246=_245.replace(/(;)?\s*$/,"").split(";");
+for(var i=0;i<_246.length;i++){
+var _248=_246[i].split(":");
+var name=_248[0].replace(/\s*$/,"").replace(/^\s*/,"").toLowerCase();
+var _24a=_248[1].replace(/\s*$/,"").replace(/^\s*/,"");
+switch(name){
+case "opacity":
+dojo.html.setOpacity(node,_24a);
+break;
+case "content-height":
+dojo.html.setContentBox(node,{height:_24a});
+break;
+case "content-width":
+dojo.html.setContentBox(node,{width:_24a});
+break;
+case "outer-height":
+dojo.html.setMarginBox(node,{height:_24a});
+break;
+case "outer-width":
+dojo.html.setMarginBox(node,{width:_24a});
+break;
+default:
+node.style[dojo.html.toCamelCase(name)]=_24a;
+}
+}
+};
+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,_24c,_24d){
+node=dojo.byId(node,node.ownerDocument);
+var ret={x:0,y:0};
+var bs=dojo.html.boxSizing;
+if(!_24d){
+_24d=bs.CONTENT_BOX;
+}
+var _250=2;
+var _251;
+switch(_24d){
+case bs.MARGIN_BOX:
+_251=3;
+break;
+case bs.BORDER_BOX:
+_251=2;
+break;
+case bs.PADDING_BOX:
+default:
+_251=1;
+break;
+case bs.CONTENT_BOX:
+_251=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){
+_250=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 _255;
+if((h.safari)&&(node.style.getPropertyValue("position")=="absolute")&&(node.parentNode==db)){
+_255=db;
+}else{
+_255=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 _257=node;
+do{
+var n=_257["offsetLeft"];
+if(!h.opera||n>0){
+ret.x+=isNaN(n)?0:n;
+}
+var m=_257["offsetTop"];
+ret.y+=isNaN(m)?0:m;
+_257=_257.offsetParent;
+}while((_257!=_255)&&(_257!=null));
+}else{
+if(node["x"]&&node["y"]){
+ret.x+=isNaN(node.x)?0:node.x;
+ret.y+=isNaN(node.y)?0:node.y;
+}
+}
+}
+}
+if(_24c){
+var _25a=dojo.html.getScroll();
+ret.y+=_25a.top;
+ret.x+=_25a.left;
+}
+var _25b=[dojo.html.getPaddingExtent,dojo.html.getBorderExtent,dojo.html.getMarginExtent];
+if(_250>_251){
+for(var i=_251;i<_250;++i){
+ret.y+=_25b[i](node,"top");
+ret.x+=_25b[i](node,"left");
+}
+}else{
+if(_250<_251){
+for(var i=_251;i>_250;--i){
+ret.y-=_25b[i-1](node,"top");
+ret.x-=_25b[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,_25f,_260){
+var _261=0;
+for(var x=0;x<_25f.length;x++){
+_261+=dojo.html.getPixelValue(node,_25f[x],_260);
+}
+return _261;
+};
+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 _26e=dojo.html.getBorder(node);
+return {width:pad.width+_26e.width,height:pad.height+_26e.height};
+};
+dojo.html.getBoxSizing=function(node){
+var h=dojo.render.html;
+var bs=dojo.html.boxSizing;
+if(((h.ie)||(h.opera))&&node.nodeName!="IMG"){
+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 _273=dojo.html.getStyle(node,"-moz-box-sizing");
+if(!_273){
+_273=dojo.html.getStyle(node,"box-sizing");
+}
+return (_273?_273: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 _278=dojo.html.getBorder(node);
+return {width:box.width-_278.width,height:box.height-_278.height};
+};
+dojo.html.getContentBox=function(node){
+node=dojo.byId(node);
+var _27a=dojo.html.getPadBorder(node);
+return {width:node.offsetWidth-_27a.width,height:node.offsetHeight-_27a.height};
+};
+dojo.html.setContentBox=function(node,args){
+node=dojo.byId(node);
+var _27d=0;
+var _27e=0;
+var isbb=dojo.html.isBorderBox(node);
+var _280=(isbb?dojo.html.getPadBorder(node):{width:0,height:0});
+var ret={};
+if(typeof args.width!="undefined"){
+_27d=args.width+_280.width;
+ret.width=dojo.html.setPositivePixelValue(node,"width",_27d);
+}
+if(typeof args.height!="undefined"){
+_27e=args.height+_280.height;
+ret.height=dojo.html.setPositivePixelValue(node,"height",_27e);
+}
+return ret;
+};
+dojo.html.getMarginBox=function(node){
+var _283=dojo.html.getBorderBox(node);
+var _284=dojo.html.getMargin(node);
+return {width:_283.width+_284.width,height:_283.height+_284.height};
+};
+dojo.html.setMarginBox=function(node,args){
+node=dojo.byId(node);
+var _287=0;
+var _288=0;
+var isbb=dojo.html.isBorderBox(node);
+var _28a=(!isbb?dojo.html.getPadBorder(node):{width:0,height:0});
+var _28b=dojo.html.getMargin(node);
+var ret={};
+if(typeof args.width!="undefined"){
+_287=args.width-_28a.width;
+_287-=_28b.width;
+ret.width=dojo.html.setPositivePixelValue(node,"width",_287);
+}
+if(typeof args.height!="undefined"){
+_288=args.height-_28a.height;
+_288-=_28b.height;
+ret.height=dojo.html.setPositivePixelValue(node,"height",_288);
+}
+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(_290,_291,_292){
+if(_290 instanceof Array||typeof _290=="array"){
+dojo.deprecated("dojo.html.toCoordinateArray","use dojo.html.toCoordinateObject({left: , top: , width: , height: }) instead","0.5");
+while(_290.length<4){
+_290.push(0);
+}
+while(_290.length>4){
+_290.pop();
+}
+var ret={left:_290[0],top:_290[1],width:_290[2],height:_290[3]};
+}else{
+if(!_290.nodeType&&!(_290 instanceof String||typeof _290=="string")&&("width" in _290||"height" in _290||"left" in _290||"x" in _290||"top" in _290||"y" in _290)){
+var ret={left:_290.left||_290.x||0,top:_290.top||_290.y||0,width:_290.width||0,height:_290.height||0};
+}else{
+var node=dojo.byId(_290);
+var pos=dojo.html.abs(node,_291,_292);
+var _296=dojo.html.getMarginBox(node);
+var ret={left:pos.left,top:pos.top,width:_296.width,height:_296.height};
+}
+}
+ret.x=ret.left;
+ret.y=ret.top;
+return ret;
+};
+dojo.html.setMarginBoxWidth=dojo.html.setOuterWidth=function(node,_298){
+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,_29b){
+return dojo.html._callDeprecated("getTotalOffset","getAbsolutePosition",arguments,null,type);
+};
+dojo.html.getAbsoluteX=function(node,_29d){
+return dojo.html._callDeprecated("getAbsoluteX","getAbsolutePosition",arguments,null,"x");
+};
+dojo.html.getAbsoluteY=function(node,_29f){
+return dojo.html._callDeprecated("getAbsoluteY","getAbsolutePosition",arguments,null,"y");
+};
+dojo.html.totalOffsetLeft=function(node,_2a1){
+return dojo.html._callDeprecated("totalOffsetLeft","getAbsolutePosition",arguments,null,"left");
+};
+dojo.html.totalOffsetTop=function(node,_2a3){
+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,_2ad){
+return dojo.html._callDeprecated("setContentBoxWidth","setContentBox",arguments,"width");
+};
+dojo.html.setContentBoxHeight=dojo.html.setContentHeight=function(node,_2af){
+return dojo.html._callDeprecated("setContentBoxHeight","setContentBox",arguments,"height");
+};
+dojo.provide("dojo.html.util");
+dojo.html.getElementWindow=function(_2b0){
+return dojo.html.getDocumentWindow(_2b0.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 _2b8=dojo.html.getCursorPosition(e);
+with(dojo.html){
+var _2b9=getAbsolutePosition(node,true);
+var bb=getBorderBox(node);
+var _2bb=_2b9.x+(bb.width/2);
+var _2bc=_2b9.y+(bb.height/2);
+}
+with(dojo.html.gravity){
+return ((_2b8.x<_2bb?WEST:EAST)|(_2b8.y<_2bc?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(_2bd,e){
+_2bd=dojo.byId(_2bd);
+var _2bf=dojo.html.getCursorPosition(e);
+var bb=dojo.html.getBorderBox(_2bd);
+var _2c1=dojo.html.getAbsolutePosition(_2bd,true,dojo.html.boxSizing.BORDER_BOX);
+var top=_2c1.y;
+var _2c3=top+bb.height;
+var left=_2c1.x;
+var _2c5=left+bb.width;
+return (_2bf.x>=left&&_2bf.x<=_2c5&&_2bf.y>=top&&_2bf.y<=_2c3);
+};
+dojo.html.renderedTextContent=function(node){
+node=dojo.byId(node);
+var _2c7="";
+if(node==null){
+return _2c7;
+}
+for(var i=0;i<node.childNodes.length;i++){
+switch(node.childNodes[i].nodeType){
+case 1:
+case 5:
+var _2c9="unknown";
+try{
+_2c9=dojo.html.getStyle(node.childNodes[i],"display");
+}
+catch(E){
+}
+switch(_2c9){
+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":
+_2c7+="\n";
+_2c7+=dojo.html.renderedTextContent(node.childNodes[i]);
+_2c7+="\n";
+break;
+case "none":
+break;
+default:
+if(node.childNodes[i].tagName&&node.childNodes[i].tagName.toLowerCase()=="br"){
+_2c7+="\n";
+}else{
+_2c7+=dojo.html.renderedTextContent(node.childNodes[i]);
+}
+break;
+}
+break;
+case 3:
+case 2:
+case 4:
+var text=node.childNodes[i].nodeValue;
+var _2cb="unknown";
+try{
+_2cb=dojo.html.getStyle(node,"text-transform");
+}
+catch(E){
+}
+switch(_2cb){
+case "capitalize":
+var _2cc=text.split(" ");
+for(var i=0;i<_2cc.length;i++){
+_2cc[i]=_2cc[i].charAt(0).toUpperCase()+_2cc[i].substring(1);
+}
+text=_2cc.join(" ");
+break;
+case "uppercase":
+text=text.toUpperCase();
+break;
+case "lowercase":
+text=text.toLowerCase();
+break;
+default:
+break;
+}
+switch(_2cb){
+case "nowrap":
+break;
+case "pre-wrap":
+break;
+case "pre-line":
+break;
+case "pre":
+break;
+default:
+text=text.replace(/\s+/," ");
+if(/\s$/.test(_2c7)){
+text.replace(/^\s/,"");
+}
+break;
+}
+_2c7+=text;
+break;
+default:
+break;
+}
+}
+return _2c7;
+};
+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 _2d0="none";
+if((/^<t[dh][\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table><tbody><tr>"+txt+"</tr></tbody></table>";
+_2d0="cell";
+}else{
+if((/^<tr[\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table><tbody>"+txt+"</tbody></table>";
+_2d0="row";
+}else{
+if((/^<(thead|tbody|tfoot)[\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table>"+txt+"</table>";
+_2d0="section";
+}
+}
+}
+tn.innerHTML=txt;
+if(tn["normalize"]){
+tn.normalize();
+}
+var _2d1=null;
+switch(_2d0){
+case "cell":
+_2d1=tn.getElementsByTagName("tr")[0];
+break;
+case "row":
+_2d1=tn.getElementsByTagName("tbody")[0];
+break;
+case "section":
+_2d1=tn.getElementsByTagName("table")[0];
+break;
+default:
+_2d1=tn;
+break;
+}
+var _2d2=[];
+for(var x=0;x<_2d1.childNodes.length;x++){
+_2d2.push(_2d1.childNodes[x].cloneNode(true));
+}
+tn.style.display="none";
+dojo.html.destroyNode(tn);
+return _2d2;
+};
+dojo.html.placeOnScreen=function(node,_2d5,_2d6,_2d7,_2d8,_2d9,_2da){
+if(_2d5 instanceof Array||typeof _2d5=="array"){
+_2da=_2d9;
+_2d9=_2d8;
+_2d8=_2d7;
+_2d7=_2d6;
+_2d6=_2d5[1];
+_2d5=_2d5[0];
+}
+if(_2d9 instanceof String||typeof _2d9=="string"){
+_2d9=_2d9.split(",");
+}
+if(!isNaN(_2d7)){
+_2d7=[Number(_2d7),Number(_2d7)];
+}else{
+if(!(_2d7 instanceof Array||typeof _2d7=="array")){
+_2d7=[0,0];
+}
+}
+var _2db=dojo.html.getScroll().offset;
+var view=dojo.html.getViewport();
+node=dojo.byId(node);
+var _2dd=node.style.display;
+node.style.display="";
+var bb=dojo.html.getBorderBox(node);
+var w=bb.width;
+var h=bb.height;
+node.style.display=_2dd;
+if(!(_2d9 instanceof Array||typeof _2d9=="array")){
+_2d9=["TL"];
+}
+var _2e1,_2e2,_2e3=Infinity,_2e4;
+for(var _2e5=0;_2e5<_2d9.length;++_2e5){
+var _2e6=_2d9[_2e5];
+var _2e7=true;
+var tryX=_2d5-(_2e6.charAt(1)=="L"?0:w)+_2d7[0]*(_2e6.charAt(1)=="L"?1:-1);
+var tryY=_2d6-(_2e6.charAt(0)=="T"?0:h)+_2d7[1]*(_2e6.charAt(0)=="T"?1:-1);
+if(_2d8){
+tryX-=_2db.x;
+tryY-=_2db.y;
+}
+if(tryX<0){
+tryX=0;
+_2e7=false;
+}
+if(tryY<0){
+tryY=0;
+_2e7=false;
+}
+var x=tryX+w;
+if(x>view.width){
+x=view.width-w;
+_2e7=false;
+}else{
+x=tryX;
+}
+x=Math.max(_2d7[0],x)+_2db.x;
+var y=tryY+h;
+if(y>view.height){
+y=view.height-h;
+_2e7=false;
+}else{
+y=tryY;
+}
+y=Math.max(_2d7[1],y)+_2db.y;
+if(_2e7){
+_2e1=x;
+_2e2=y;
+_2e3=0;
+_2e4=_2e6;
+break;
+}else{
+var dist=Math.pow(x-tryX-_2db.x,2)+Math.pow(y-tryY-_2db.y,2);
+if(_2e3>dist){
+_2e3=dist;
+_2e1=x;
+_2e2=y;
+_2e4=_2e6;
+}
+}
+}
+if(!_2da){
+node.style.left=_2e1+"px";
+node.style.top=_2e2+"px";
+}
+return {left:_2e1,top:_2e2,x:_2e1,y:_2e2,dist:_2e3,corner:_2e4};
+};
+dojo.html.placeOnScreenPoint=function(node,_2ee,_2ef,_2f0,_2f1){
+dojo.deprecated("dojo.html.placeOnScreenPoint","use dojo.html.placeOnScreen() instead","0.5");
+return dojo.html.placeOnScreen(node,_2ee,_2ef,_2f0,_2f1,["TL","TR","BL","BR"]);
+};
+dojo.html.placeOnScreenAroundElement=function(node,_2f3,_2f4,_2f5,_2f6,_2f7){
+var best,_2f9=Infinity;
+_2f3=dojo.byId(_2f3);
+var _2fa=_2f3.style.display;
+_2f3.style.display="";
+var mb=dojo.html.getElementBox(_2f3,_2f5);
+var _2fc=mb.width;
+var _2fd=mb.height;
+var _2fe=dojo.html.getAbsolutePosition(_2f3,true,_2f5);
+_2f3.style.display=_2fa;
+for(var _2ff in _2f6){
+var pos,_301,_302;
+var _303=_2f6[_2ff];
+_301=_2fe.x+(_2ff.charAt(1)=="L"?0:_2fc);
+_302=_2fe.y+(_2ff.charAt(0)=="T"?0:_2fd);
+pos=dojo.html.placeOnScreen(node,_301,_302,_2f4,true,_303,true);
+if(pos.dist==0){
+best=pos;
+break;
+}else{
+if(_2f9>pos.dist){
+_2f9=pos.dist;
+best=pos;
+}
+}
+}
+if(!_2f7){
+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 _305=node.parentNode;
+var _306=_305.scrollTop+dojo.html.getBorderBox(_305).height;
+var _307=node.offsetTop+dojo.html.getMarginBox(node).height;
+if(_306<_307){
+_305.scrollTop+=(_307-_306);
+}else{
+if(_305.scrollTop>node.offsetTop){
+_305.scrollTop-=(_305.scrollTop-node.offsetTop);
+}
+}
+}
+}
+};
+dojo.provide("dojo.lang.array");
+dojo.lang.mixin(dojo.lang,{has:function(obj,name){
+try{
+return typeof obj[name]!="undefined";
+}
+catch(e){
+return false;
+}
+},isEmpty:function(obj){
+if(dojo.lang.isObject(obj)){
+var tmp={};
+var _30c=0;
+for(var x in obj){
+if(obj[x]&&(!tmp[x])){
+_30c++;
+break;
+}
+}
+return _30c==0;
+}else{
+if(dojo.lang.isArrayLike(obj)||dojo.lang.isString(obj)){
+return obj.length==0;
+}
+}
+},map:function(arr,obj,_310){
+var _311=dojo.lang.isString(arr);
+if(_311){
+arr=arr.split("");
+}
+if(dojo.lang.isFunction(obj)&&(!_310)){
+_310=obj;
+obj=dj_global;
+}else{
+if(dojo.lang.isFunction(obj)&&_310){
+var _312=obj;
+obj=_310;
+_310=_312;
+}
+}
+if(Array.map){
+var _313=Array.map(arr,_310,obj);
+}else{
+var _313=[];
+for(var i=0;i<arr.length;++i){
+_313.push(_310.call(obj,arr[i]));
+}
+}
+if(_311){
+return _313.join("");
+}else{
+return _313;
+}
+},reduce:function(arr,_316,obj,_318){
+var _319=_316;
+if(arguments.length==1){
+dojo.debug("dojo.lang.reduce called with too few arguments!");
+return false;
+}else{
+if(arguments.length==2){
+_318=_316;
+_319=arr.shift();
+}else{
+if(arguments.lenght==3){
+if(dojo.lang.isFunction(obj)){
+_318=obj;
+obj=null;
+}
+}else{
+if(dojo.lang.isFunction(obj)){
+var tmp=_318;
+_318=obj;
+obj=tmp;
+}
+}
+}
+}
+var ob=obj?obj:dj_global;
+dojo.lang.map(arr,function(val){
+_319=_318.call(ob,_319,val);
+});
+return _319;
+},forEach:function(_31d,_31e,_31f){
+if(dojo.lang.isString(_31d)){
+_31d=_31d.split("");
+}
+if(Array.forEach){
+Array.forEach(_31d,_31e,_31f);
+}else{
+if(!_31f){
+_31f=dj_global;
+}
+for(var i=0,l=_31d.length;i<l;i++){
+_31e.call(_31f,_31d[i],i,_31d);
+}
+}
+},_everyOrSome:function(_322,arr,_324,_325){
+if(dojo.lang.isString(arr)){
+arr=arr.split("");
+}
+if(Array.every){
+return Array[_322?"every":"some"](arr,_324,_325);
+}else{
+if(!_325){
+_325=dj_global;
+}
+for(var i=0,l=arr.length;i<l;i++){
+var _328=_324.call(_325,arr[i],i,arr);
+if(_322&&!_328){
+return false;
+}else{
+if((!_322)&&(_328)){
+return true;
+}
+}
+}
+return Boolean(_322);
+}
+},every:function(arr,_32a,_32b){
+return this._everyOrSome(true,arr,_32a,_32b);
+},some:function(arr,_32d,_32e){
+return this._everyOrSome(false,arr,_32d,_32e);
+},filter:function(arr,_330,_331){
+var _332=dojo.lang.isString(arr);
+if(_332){
+arr=arr.split("");
+}
+var _333;
+if(Array.filter){
+_333=Array.filter(arr,_330,_331);
+}else{
+if(!_331){
+if(arguments.length>=3){
+dojo.raise("thisObject doesn't exist!");
+}
+_331=dj_global;
+}
+_333=[];
+for(var i=0;i<arr.length;i++){
+if(_330.call(_331,arr[i],i,arr)){
+_333.push(arr[i]);
+}
+}
+}
+if(_332){
+return _333.join("");
+}else{
+return _333;
+}
+},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;
+},toArray:function(_338,_339){
+var _33a=[];
+for(var i=_339||0;i<_338.length;i++){
+_33a.push(_338[i]);
+}
+return _33a;
+}});
+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(_342){
+if(_342){
+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(_343,_344){
+var rgb=null;
+if(dojo.lang.isArray(_343)){
+rgb=_343;
+}else{
+if(_343 instanceof dojo.gfx.color.Color){
+rgb=_343.toRgb();
+}else{
+rgb=new dojo.gfx.color.Color(_343).toRgb();
+}
+}
+return dojo.gfx.color.blend(this.toRgb(),rgb,_344);
+}});
+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,_348){
+if(typeof a=="string"){
+return dojo.gfx.color.blendHex(a,b,_348);
+}
+if(!_348){
+_348=0;
+}
+_348=Math.min(Math.max(-1,_348),1);
+_348=((_348+1)/2);
+var c=[];
+for(var x=0;x<3;x++){
+c[x]=parseInt(b[x]+((a[x]-b[x])*_348));
+}
+return c;
+};
+dojo.gfx.color.blendHex=function(a,b,_34d){
+return dojo.gfx.color.rgb2hex(dojo.gfx.color.blend(dojo.gfx.color.hex2rgb(a),dojo.gfx.color.hex2rgb(b),_34d));
+};
+dojo.gfx.color.extractRGB=function(_34e){
+var hex="0123456789abcdef";
+_34e=_34e.toLowerCase();
+if(_34e.indexOf("rgb")==0){
+var _350=_34e.match(/rgba*\((\d+), *(\d+), *(\d+)/i);
+var ret=_350.splice(1,3);
+return ret;
+}else{
+var _352=dojo.gfx.color.hex2rgb(_34e);
+if(_352){
+return _352;
+}else{
+return dojo.gfx.color.named[_34e]||[255,255,255];
+}
+}
+};
+dojo.gfx.color.hex2rgb=function(hex){
+var _354="0123456789ABCDEF";
+var rgb=new Array(3);
+if(hex.indexOf("#")==0){
+hex=hex.substring(1);
+}
+hex=hex.toUpperCase();
+if(hex.replace(new RegExp("["+_354+"]","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]=_354.indexOf(rgb[i].charAt(0))*16+_354.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(_35d,_35e){
+var fcn=(dojo.lang.isString(_35e)?_35d[_35e]:_35e)||function(){
+};
+return function(){
+return fcn.apply(_35d,arguments);
+};
+};
+dojo.lang.anonCtr=0;
+dojo.lang.anon={};
+dojo.lang.nameAnonFunc=function(_360,_361,_362){
+var nso=(_361||dojo.lang.anon);
+if((_362)||((dj_global["djConfig"])&&(djConfig["slowAnonFuncLookups"]==true))){
+for(var x in nso){
+try{
+if(nso[x]===_360){
+return x;
+}
+}
+catch(e){
+}
+}
+}
+var ret="__"+dojo.lang.anonCtr++;
+while(typeof nso[ret]!="undefined"){
+ret="__"+dojo.lang.anonCtr++;
+}
+nso[ret]=_360;
+return ret;
+};
+dojo.lang.forward=function(_366){
+return function(){
+return this[_366].apply(this,arguments);
+};
+};
+dojo.lang.curry=function(_367,func){
+var _369=[];
+_367=_367||dj_global;
+if(dojo.lang.isString(func)){
+func=_367[func];
+}
+for(var x=2;x<arguments.length;x++){
+_369.push(arguments[x]);
+}
+var _36b=(func["__preJoinArity"]||func.length)-_369.length;
+function gather(_36c,_36d,_36e){
+var _36f=_36e;
+var _370=_36d.slice(0);
+for(var x=0;x<_36c.length;x++){
+_370.push(_36c[x]);
+}
+_36e=_36e-_36c.length;
+if(_36e<=0){
+var res=func.apply(_367,_370);
+_36e=_36f;
+return res;
+}else{
+return function(){
+return gather(arguments,_370,_36e);
+};
+}
+}
+return gather([],_369,_36b);
+};
+dojo.lang.curryArguments=function(_373,func,args,_376){
+var _377=[];
+var x=_376||0;
+for(x=_376;x<args.length;x++){
+_377.push(args[x]);
+}
+return dojo.lang.curry.apply(dojo.lang,[_373,func].concat(_377));
+};
+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,_37d,_37e){
+if(!farr.length){
+if(typeof _37e=="function"){
+_37e();
+}
+return;
+}
+if((typeof _37d=="undefined")&&(typeof cb=="number")){
+_37d=cb;
+cb=function(){
+};
+}else{
+if(!cb){
+cb=function(){
+};
+if(!_37d){
+_37d=0;
+}
+}
+}
+setTimeout(function(){
+(farr.shift())();
+cb();
+dojo.lang.delayThese(farr,cb,_37d,_37e);
+},_37d);
+};
+dojo.provide("dojo.lfx.Animation");
+dojo.lfx.Line=function(_37f,end){
+this.start=_37f;
+this.end=end;
+if(dojo.lang.isArray(_37f)){
+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-_37f;
+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,_38e,_38f){
+if(!_38f){
+_38f=_38e;
+_38e=this;
+}
+_38f=dojo.lang.hitch(_38e,_38f);
+var _390=this[evt]||function(){
+};
+this[evt]=function(){
+var ret=_390.apply(this,arguments);
+_38f.apply(this,arguments);
+return ret;
+};
+return this;
+},fire:function(evt,args){
+if(this[evt]){
+this[evt].apply(this,(args||[]));
+}
+return this;
+},repeat:function(_394){
+this.repeatCount=_394;
+return this;
+},_active:false,_paused:false});
+dojo.lfx.Animation=function(_395,_396,_397,_398,_399,rate){
+dojo.lfx.IAnimation.call(this);
+if(dojo.lang.isNumber(_395)||(!_395&&_396.getValue)){
+rate=_399;
+_399=_398;
+_398=_397;
+_397=_396;
+_396=_395;
+_395=null;
+}else{
+if(_395.getValue||dojo.lang.isArray(_395)){
+rate=_398;
+_399=_397;
+_398=_396;
+_397=_395;
+_396=null;
+_395=null;
+}
+}
+if(dojo.lang.isArray(_397)){
+this.curve=new dojo.lfx.Line(_397[0],_397[1]);
+}else{
+this.curve=_397;
+}
+if(_396!=null&&_396>0){
+this.duration=_396;
+}
+if(_399){
+this.repeatCount=_399;
+}
+if(rate){
+this.rate=rate;
+}
+if(_395){
+dojo.lang.forEach(["handler","beforeBegin","onBegin","onEnd","onPlay","onStop","onAnimate"],function(item){
+if(_395[item]){
+this.connect(item,_395[item]);
+}
+},this);
+}
+if(_398&&dojo.lang.isFunction(_398)){
+this.easing=_398;
+}
+};
+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(_39c,_39d){
+if(_39d){
+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(_39c>0){
+setTimeout(dojo.lang.hitch(this,function(){
+this.play(null,_39d);
+}),_39c);
+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 _39f=this.curve.getValue(step);
+if(this._percent==0){
+if(!this._startRepeatCount){
+this._startRepeatCount=this.repeatCount;
+}
+this.fire("handler",["begin",_39f]);
+this.fire("onBegin",[_39f]);
+}
+this.fire("handler",["play",_39f]);

[... 7664 lines stripped ...]