if(typeof(AC)=="undefined"){AC={}}AC.SwapView=Class.create({_view:null,currentContent:null,delegate:null,initialize:function(e){if(typeof e==="string"){this._viewId=e
}else{this._view=$(e)}if(this._view){var f=this._view.childNodes,d;while(d=f[0]){this._view.removeChild(d)
}this._view.addClassName("swapView")}},view:function(){if(!this._view){this._view=$(this._viewId);
if(this._view){this._view.innerHTML="";this._view.addClassName("swapView")}}return this._view
},setDelegate:function(b){this.delegate=b},setContent:function(b){if(b==this.currentContent){return
}if(b&&typeof(this.delegate.isContentLoaded)=="function"){if(!this.delegate.isContentLoaded(this,b)){if(typeof(this.delegate.loadContent)=="function"){this.delegate.loadContent(this,b);
return}}}this.setLoadedContent(b)},setLoadedContent:function(d){if(typeof(this.delegate.willShow)=="function"){d=this.delegate.willShow(this,this.currentContent,d)
}if(typeof(this.delegate.willClose)=="function"){this.delegate.willClose(this,this.currentContent)
}var e=true;if(typeof(this.delegate.shouldAnimateContentChange)=="function"){e=this.delegate.shouldAnimateContentChange(this,this.currentContent,d)
}if(e&&typeof(this.delegate.willAnimate)=="function"){this.didAnimate=true;if(this.currentContent!==d){this.view().appendChild(d)
}var f=this.delegate.willAnimate(this,this.currentContent,d,this.didShow.bind(this,d))
}else{this.didAnimate=false;if(this.currentContent!==d){if(this.currentContent&&this.currentContent.parentNode){this.currentContent.parentNode.removeChild(this.currentContent)
}if(d){this.view().appendChild(d)}}if(d){$(d).setOpacity(1)}this.didShow(d)}},didShow:function(b){if(this.currentContent&&(this.currentContent!==b)&&this.currentContent.parentNode){this.currentContent.parentNode.removeChild(this.currentContent)
}if(typeof(this.delegate.didShow)=="function"){this.delegate.didShow(this,this.currentContent,b)
}this.currentContent=b}});if(typeof(AC.ViewMaster)=="undefined"){AC.ViewMaster={}
}AC.ViewMaster.Viewer=Class.create({view:null,triggerClassName:null,currentSection:null,requestedSection:null,sections:null,orderedSections:null,_locked:false,_didShowInitial:false,options:null,initialSectionFromId:function(g){if(!g){return null
}var h=null;if(g&&this.sections.get(g)){h=this.sections.get(g)}if(!h){var e,f=null;
e=document.getElementById(g);if(e===this.view._view){e=null}if(!e){f=document.getElementsByName(g)
}if(f&&f.length>0){e=f[0]}if(e===this.view._view){e=null}if(e){if(e.tagName.toLowerCase()==="a"){if(Element.Methods.hasClassName(e,this.triggerClassName)){h=this.addSection(e)
}}else{h=this.addSection(e)}}}return h},initialize:function(m,j,l,i){this.triggerClassName=l;
this.sections=$H();this.orderedSections=[];this.options=i||{};var k=null;if(m){for(var o=0;
o<m.length;o++){section=this.addSection(m.item(o));if(!k){k=section}}}this.view=new AC.SwapView(j);
this.view.setDelegate(this);var p=document.location.hash.replace(/#/,""),n;if(p!==this.view.view().id){n=this.initialSectionFromId(p)
}if(n){k=n}if(!k&&typeof this.options.initialId==="string"&&this.options.initialId.length>0){k=this.initialSectionFromId(this.options.initialId)
}this.show(k);Event.observe(document,"click",this._triggerClicked.bindAsEventListener(this));
if(AC.Detector.isIEStrict()){Event.observe(document,"mouseup",this._triggerClicked.bindAsEventListener(this))
}},setDelegate:function(b){this.delegate=b;if(this.delegate&&typeof(this.delegate.didShow)==="function"&&this.currentSection&&this.currentSection.isContentLoaded()){this.delegate.didShow(this,this.previousSection,this.currentSection)
}},addSection:function(d){var c=new AC.ViewMaster.Section(d,this);this.sections.set(c.id,c);
this.orderedSections.push(c.id);return c},triggerClicked:function(g,f){var i=null;
if(this.options.silentTriggers){Event.stop(g)}if(!!f.href.match(/#previous/)){i=this.getPreviousSection()
}else{if(!!f.href.match(/#next/)){i=this.getNextSection()}else{var j=f.href.match(/#(.*)$/);
if(j){var h=j[1]}else{h=f.name}i=this.sections.get(h)}}if(!i){i=this.addSection(f)
}if(i.isContentRemote()&&!i.isContentLoaded()){Event.stop(g)}if(i==this.currentSection){Event.stop(g);
return}else{if(!i){return}}this._didShowInitial=true;this.show(i)},_triggerClicked:function(d){if(this._locked){Event.stop(d);
return}var c=d.element();if(AC.Detector.isIEStrict()&&d.type==="mouseup"){if(c&&c.nodeName.toUpperCase()==="A"){c=c.down("."+this.triggerClassName)
}}else{while(c&&c.nodeName.toUpperCase()!="A"&&c.nodeName.toUpperCase()!="BODY"){c=c.parentNode
}}if(c&&c.href&&Element.Methods.hasClassName(c,this.triggerClassName)){this.triggerClicked(d,c)
}},isContentLoaded:function(c,d){return d.isContentLoaded()},loadContent:function(c,d){if(d){d.loadContent()
}},_showContentDidLoad:false,contentDidLoad:function(f,d,e){if(d&&d.firstChild){this._showContentDidLoad=true
}this.view.setLoadedContent(f);AC.loadRemoteContent.insertScriptFragment(d);if(this._showContentDidLoad&&this.delegate&&typeof(this.delegate.didShow)=="function"){this.delegate.didShow(this,this.previousSection,this.currentSection)
}this._showContentDidLoad=false},show:function(d){if(this._locked||d==this.currentSection){return
}this._locked=true;this.previousSection=this.currentSection;this.currentSection=d;
this.view.setContent(d);if(typeof this.options.ensureInView==="boolean"&&this.options.ensureInView){if(this._didShowInitial){var c=d.content.viewportOffset()[1];
if(c<0||c>(document.viewport.getHeight()*0.75)){new Effect.ScrollTo(d.content,{duration:0.3})
}}else{$(document.body).scrollTo()}}},getNextSection:function(){var c=this.orderedSections.indexOf(this.currentSection.id);
var d=(this.orderedSections.length-1)==c?0:c+1;return this.sections.get(this.orderedSections[d])
},getPreviousSection:function(){var d=this.orderedSections.indexOf(this.currentSection.id);
var c=0==d?this.orderedSections.length-1:d-1;return this.sections.get(this.orderedSections[c])
},willShow:function(d,f,e){if(this.delegate&&typeof(this.delegate.willShow)=="function"){this.delegate.willShow(this,this.previousSection,this.currentSection)
}this._repaintTriggers(this.previousSection,this.currentSection);if(this._didShowInitial&&e&&e!=this.previousSection){$(e.content).setOpacity(0);
$(e.content).removeClassName("hidden")}if(e){return e.willShow(this)}return null
},willClose:function(d,c){if(this.delegate&&typeof(this.delegate.willClose)=="function"){this.delegate.willClose(this,this.currentSection)
}if(this.currentSection){this.currentSection.willClose(this)}},shouldAnimateContentChange:function(f,d,e){return(typeof this.options.shouldAnimateContentChange==="boolean")?this.options.shouldAnimateContentChange:true
},willAnimate:function(g,l,h,j){var i=this.options.animationDuration||0.4;var k=Math.random()+"Queue";
if(!this._didShowInitial&&typeof(j)=="function"){j();return}if(l){return new Effect.Parallel([new Effect.Opacity(l,{sync:true,from:1,to:0}),new Effect.Opacity(h,{sync:true,from:0,to:1})],{duration:i,afterFinish:j,queue:{scope:k}})
}else{return new Effect.Opacity(h,{from:0,to:1,duration:i,afterFinish:j,queue:{scope:k}})
}},didShow:function(d,f,e){if(this.currentSection){this.currentSection.didShow(this)
}this._didShowInitial=true;this._locked=false;if(!this._showContentDidLoad&&this.delegate&&typeof(this.delegate.didShow)=="function"){this.delegate.didShow(this,this.previousSection,this.currentSection)
}},_repaintTriggers:function(g,h){if(g){var i=g.triggers();for(var l=0,k;(k=i[l]);
l++){k.removeClassName("active")}i=g.relatedElements();for(var l=0,k;(k=i[l]);l++){k.removeClassName("active")
}}if(h){var j=h.triggers();for(var l=0,k;(k=j[l]);l++){k.addClassName("active")
}j=h.relatedElements();for(var l=0,k;(k=j[l]);l++){k.addClassName("active")}}}});
AC.ViewMaster.Section=Class.create({content:null,moviePanel:null,controllerPanel:null,movie:null,_movieController:null,movieLink:null,endState:null,hasShown:false,_isContentRemote:false,isContentRemote:function(){return this._isContentRemote
},_isContentLoaded:true,isContentLoaded:function(){return this._isContentLoaded
},_onMoviePlayable:Prototype.EmptyFunction,_onMovieFinished:Prototype.EmptyFunction,id:null,triggers:function(){if(!this._triggers){this._triggers=[];
var f=document.getElementsByClassName(this.viewMaster.triggerClassName);for(var e=0,d;
(d=$(f[e]));e++){if(d.tagName.toLowerCase()!=="a"){continue}if(d.href.match("#"+this.id+"$")){this._triggers.push(d)
}}}return this._triggers},relatedElements:function(){if(!this._relatedElements){this._relatedElements=document.getElementsByClassName(this.id)
}return this._relatedElements},initialize:function(n,k){this.content=$(n);if(this.content.tagName.toLowerCase()==="a"){var i=this.content.href;
var l=i.split("#");this._contentURL=l[0];var m=window.location.href.split("#");
if(l.length===2){this.id=l[1]}if(this._contentURL.length>0&&(this._contentURL!==m[0])&&(!this._contentURL.startsWith("#")||this._contentURL!==i)){this._isContentRemote=true;
this._isContentLoaded=false}else{var j=$(this.id);if(j){this.content=j}}if(!this.id){this.id=this.content.name
}}else{this.id=n.id}if(!this._isContentRemote||this._isContentLoaded){this.content.setAttribute("id","MASKED-"+this.id)
}if(k){this.viewMaster=k}if(!this._isContentRemote&&this._isContentLoaded&&!this.content.hasClassName("content")){var h=this.content.getElementsByClassName("content")[0];
if(h){this.content=h}}this.isMobile=AC.Detector.isMobile()},remoteContentDidLoad:function(d,c){this.content.href="#"+this.id;
this.content.removeAttribute("id");this.content.removeAttribute("name");this.content=$(d);
this.content.setAttribute("id","MASKED-"+this.id);this._isContentLoaded=true;this.viewMaster.contentDidLoad(this,c)
},loadContent:function(){if(this._isContentLoaded){var b=this;b.viewMaster.contentDidLoad(b,null)
}else{AC.loadRemoteContent(this._contentURL,true,true,this.remoteContentDidLoad.bind(this))
}},willShow:function(){if(!this.hasShown){this.hasShown=true;var d=this.content.getElementsByClassName("imageLink");
for(var c=0;c<d.length;c++){this._loadImage(d[c])}if(!this.moviePanel){this.movieLink=this.content.getElementsByClassName("movieLink")[0];
this.posterLink=this.content.getElementsByClassName("posterLink")[0];if(this.movieLink){this._loadMovie()
}}}return this.content},_loadImage:function(c){var d=document.createElement("img");
d.setAttribute("src",c.href);d.setAttribute("alt",c.title);c.parentNode.replaceChild(d,c)
},_loadMovie:function(){this.moviePanel=$(document.createElement("div"));this.moviePanel.addClassName("moviePanel");
this.movieLink.parentNode.replaceChild(this.moviePanel,this.movieLink);this.controllerPanel=$(document.createElement("div"));
this.controllerPanel.addClassName("controllerPanel");this.moviePanel.parentNode.insertBefore(this.controllerPanel,this.moviePanel.nextSibling);
this.endState=$(this.content.getElementsByClassName("endState")[0]);if(this.endState){this.endState.parentNode.removeChild(this.endState);
var b=$(this.endState.getElementsByClassName("replay")[0]);b.observe("click",function(a){Event.stop(a);
this.replayMovie()}.bindAsEventListener(this))}},didShow:function(c){var d=this.hasMovie()&&!this.isMobile;
if(d){this._movieController=new AC.QuicktimeController();this.controllerPanel.innerHTML="";
this.controllerPanel.appendChild(this._movieController.render())}this._playMovie();
if(d){this._onMoviePlayable=this._movieController.monitorMovie.bind(this._movieController);
this._onMovieFinished=this.didFinishMovie.bind(this);this._movieController.attachToMovie(this.movie,{onMoviePlayable:this._onMoviePlayable,onMovieFinished:this._onMovieFinished})
}},willClose:function(b){this._closeController();this._closeMovie()},_closeMovie:function(){if(this.movie&&this.moviePanel){this.moviePanel.removeChild(this.movie);
this.movie=null;this.moviePanel.innerHTML=""}},_closeController:function(){if(this._movieController&&this._movieController.movie&&this.hasMovie()&&!this.isMobile){this._movieController.Stop();
this._movieController.detachFromMovie()}},hasMovie:function(){return !!this.movieLink
},didFinishMovie:function(){if(!this.hasMovie()){return}this._closeController();
this._closeMovie();if(this.endState){this.moviePanel.appendChild(this.endState)
}},_playMovie:function(){if(this.movieLink&&this.moviePanel){this.moviePanel.innerHTML="";
if(this.posterLink&&this.posterLink.href){var f=this.posterLink.href}var h=this.movieLink.href.toQueryParams();
var i=h.width||640;var g=h.height||480;var j=h.bgcolor||"white";this.movie=AC.Quicktime.packageMovie(this.movieLink.id+"movieId",this.movieLink.href,{width:i,height:g,controller:false,posterFrame:f,showlogo:false,autostart:true,cache:true,bgcolor:j,aggressiveCleanup:false});
this.moviePanel.appendChild(this.movie)}},replayMovie:function(){this._playMovie();
this._movieController.attachToMovie(this.movie,{onMoviePlayable:this._onMoviePlayable,onMovieFinished:this._onMovieFinished})
}});AC.ViewMaster.Slideshow=Class.create();Object.extend(AC.ViewMaster.Slideshow.prototype,Event.Listener);
Object.extend(AC.ViewMaster.Slideshow.prototype,{viewMaster:null,animationTimeout:null,options:null,_playing:false,_active:false,_progress:0,setProgress:function(b){this._progress=b
},progress:function(){return this._progress},initialize:function(f,d,e){this.viewMaster=f;
this.viewMaster.setDelegate(this);this.triggerClassName=d;this.options=e||{};this.start();
Event.observe(document,"click",this._triggerHandler.bindAsEventListener(this))},start:function(){if(this._active){return
}this._active=true;if(this.options.wipeProgress=="always"||this.options.wipeProgress=="on start"){this._progress=0
}this.play(true);this._repaintTriggers()},stop:function(){if(!this._active){return
}this._active=false;this.pause();this._repaintTriggers()},play:function(b){if(!this._active){return
}if(this.options.wipeProgress=="always"||(this.options.wipeProgress=="on play"&&!b)){this._progress=0
}this.animationTimeout=setTimeout(this._update.bind(this),this._heartbeatDelay());
this._playing=true},_update:function(){if(typeof(this.options.onProgress)=="function"){this.options.onProgress(this._progress,this.delay())
}if(this._progress>=this.delay()){this._progress=0;this.next()}else{this._progress+=this._heartbeatDelay();
this.animationTimeout=setTimeout(this._update.bind(this),this._heartbeatDelay())
}},delay:function(){return this.options.delay||5000},_heartbeatDelay:function(){return this.options.heartbeatDelay||100
},pause:function(){clearTimeout(this.animationTimeout);this._playing=false},next:function(){this.viewMaster.show(this.viewMaster.getNextSection())
},previous:function(){this.viewMaster.show(this.viewMaster.getPreviousSection())
},willShow:function(f,d,e){this.pause()},didShow:function(f,d,e){this.play()},_triggerHandler:function(e){var d=e.element();
var f=null;if(d.hasClassName(this.triggerClassName)&&d.href.match(/#slideshow-toggle/)){Event.stop(e);
if(this._active){this.stop()}else{this.start()}}},_repaintTriggers:function(){var c=document.getElementsByClassName(this.triggerClassName);
for(var d=c.length-1;d>=0;d--){this._repaintTrigger(c[d])}},_repaintTrigger:function(d){var c=$(d);
if(this._active){c.addClassName("playing")}else{c.removeClassName("playing")}}});
AC.loadRemoteContent=function(k,j,p,l,o,m){if(typeof k!=="string"){return}if(typeof j!=="boolean"){j=true
}if(typeof p!=="boolean"){p=true}var n=arguments.callee;var i=n._loadArgumentsByUrl[k];
if(!i){n._loadArgumentsByUrl[k]={contentURL:k,importScripts:j,importCSS:p,callback:l,context:o,delegate:m};
new Ajax.Request(k,{method:"get",requestHeaders:{Accept:"text/xml"},onSuccess:arguments.callee.loadTemplateHTMLFromRequest,onFailure:arguments.callee.failedToadTemplateHTMLFromRequest,onCreate:function(a){a.request.overrideMimeType("text/xml")
}})}};AC.loadRemoteContent._loadArgumentsByUrl={};AC.loadRemoteContent.loadTemplateHTMLFromRequest=function(G){var E=G.request.url;
var w=arguments.callee;var A=AC.loadRemoteContent._loadArgumentsByUrl[E];var s=window.document;
var y=G.responseXMLValue().documentElement;if(AC.Detector.isIEStrict()){y=y.ownerDocument
}var s=window.document;var x=document.createDocumentFragment();if(A.importScripts){AC.loadRemoteContent.importScriptsFromXMLDocument(y,x,A)
}if(A.importCSS){AC.loadRemoteContent.importCssFromXMLDocumentAtLocation(y,E,A)
}var i=null;var H=null;var B=y.getElementsByTagName("body")[0];if(!B){return}B.normalize();
var H=Element.Methods.childNodeWithNodeTypeAtIndex(B,Node.ELEMENT_NODE,0);var C=AC.Detector.isSafari2();
if(H){if(C){i=s._importNode(H,true)}else{i=s.importNode(H,true)}if(i.cleanSpaces){i.cleanSpaces(true)
}}else{if(B.cleanSpaces){B.cleanSpaces(true)}else{if(typeof B.normalize==="function"){B.normalize()
}}var z=B.childNodes;i=s.createDocumentFragment();var v=/\S/;for(var D=0,F=0;(F=z[D]);
D++){var u=(C)?s._importNode(F,true):s.importNode(F,true);i.appendChild(u)}}var t=A.callback;
t(i,x,A.context)};AC.loadRemoteContent.javascriptTypeValueRegExp=new RegExp("text/javascript","i");
AC.loadRemoteContent.javascriptLanguageValueRegExp=new RegExp("javascript","i");
AC.loadRemoteContent.documentScriptsBySrc=function(){if(!AC.loadRemoteContent._documentScriptsBySrc){AC.loadRemoteContent._documentScriptsBySrc={};
var h=document.getElementsByTagName("script");if(!h||h.length===0){return AC.loadRemoteContent._documentScriptsBySrc
}for(var n=0,i=null;(i=h[n]);n++){var m=i.getAttribute("type");var k=null;var j=i.getAttribute("language");
if(!this.javascriptTypeValueRegExp.test(m)&&!this.javascriptLanguageValueRegExp.test(j)){continue
}if(i.hasAttribute){var l=i.hasAttribute("src")}else{var l=Element.Methods.hasAttribute(i,"src")
}if(l){var k=i.getAttribute("src");AC.loadRemoteContent._documentScriptsBySrc[k]=k
}}}return AC.loadRemoteContent._documentScriptsBySrc};AC.loadRemoteContent.importScriptsFromXMLDocument=function(E,P,x){var M=E.getElementsByTagName("script"),L,J,C,i,O=x.contentURL,y=x.delegate,N=x.context,Q=(y&&typeof y.shouldImportScript==="function"),I=true;
if(!P){P=document.createDocumentFragment()}var G=AC.loadRemoteContent.documentScriptsBySrc();
for(var A=0,F=null;(F=M[A]);A++){L=F.getAttribute("type");J=null;I=true;C=F.getAttribute("language");
if(!this.javascriptTypeValueRegExp.test(L)&&!this.javascriptLanguageValueRegExp.test(C)){continue
}if(F.hasAttribute){i=F.hasAttribute("src");J=F.getAttribute("src")}else{J=F.getAttribute("src");
i=((J!=null)&&(J!==""))}if(F.getAttribute("id")==="Redirect"||(Q&&!y.shouldImportScriptForContentURL(F,O,N))){continue
}if(i){if(!G.hasOwnProperty(J)){var D=document.createElement("script");D.setAttribute("type","text/javascript");
D.src=J;AC.loadRemoteContent._documentScriptsBySrc[J]=J;P.appendChild(D)}}else{var D=document.createElement("script");
D.setAttribute("type","text/javascript");if(AC.Detector.isIEStrict()){var H=new Function(F.text);
D.onreadystatechange=function(){var a=window.event.srcElement;if(!a.isLoaded&&((a.readyState=="complete")||(a.readyState=="loaded"))){a.onreadystatechange=null;
a.isLoaded=true;H()}}}else{var B=navigator.userAgent.toLowerCase();var R=(B.indexOf("applewebkit")!=-1);
var K=parseInt(parseFloat(B.substring(B.lastIndexOf("safari/")+7)));var z=(R&&K>=419);
if(z){D.innerHTML=F.innerHTML}else{D.text=F.text}}AC.loadRemoteContent._documentScriptsBySrc[J]=J;
P.appendChild(D)}}return P};AC.loadRemoteContent.insertScriptFragment=function(c){if(!c){return
}var d=document.getElementsByTagName("head")[0];d.appendChild(c);d=null};AC.loadRemoteContent.documentLinksByHref=function(){if(!AC.loadRemoteContent._documentLinksByHref){AC.loadRemoteContent._documentLinksByHref={};
var g=document.getElementsByTagName("link");if(!g||g.length===0){return AC.loadRemoteContent._documentLinksByHref
}for(var l=0,j=null;(j=g[l]);l++){var k=j.getAttribute("type");if(j.type.toLowerCase()!=="text/css"){continue
}var i=null;if(j.hasAttribute){var h=j.hasAttribute("href")}else{var h=Element.hasAttribute(j,"href")
}if(h){var i=j.getAttribute("href");AC.loadRemoteContent._documentLinksByHref[i]=i
}}}return AC.loadRemoteContent._documentLinksByHref};AC.loadRemoteContent.__importCssElementInHeadFromLocation=function(n,l,q){var o=(n.tagName.toUpperCase()==="LINK");
if(o){var m=n.getAttribute("type");if(!m||m&&m.toLowerCase()!=="text/css"){return
}var p=n.getAttribute("href");if(!p.startsWith("http")&&!p.startsWith("/")){var j=p;
if(q.pathExtension().length>0){q=q.stringByDeletingLastPathComponent()}p=q.stringByAppendingPathComponent(j)
}if(AC.Detector.isIEStrict()){var r=window.document.createStyleSheet(p,1)}else{var k=window.document.importNode(n,true);
k.href=p}AC.loadRemoteContent.documentLinksByHref()[p]=p}if(!AC.Detector.isIEStrict()||(AC.Detector.isIEStrict()&&!o)){l.insertBefore(k,l.firstChild)
}};AC.loadRemoteContent.importCssFromXMLDocumentAtLocation=function(k,q,l){var i=window.document.getElementsByTagName("head")[0];
var p=[];p.addObjectsFromArray(k.getElementsByTagName("style"));p.addObjectsFromArray(k.getElementsByTagName("link"));
if(p){var o=AC.loadRemoteContent.documentLinksByHref();for(var n=0,m=null;(m=p[n]);
n++){var r=m.getAttribute("href");if(o.hasOwnProperty(r)){continue}this.__importCssElementInHeadFromLocation(m,i,q)
}}};Ajax.Request.prototype._overrideMimeType=null;Ajax.Request.prototype.overrideMimeType=function(b){this._overrideMimeType=b;
if(this.transport.overrideMimeType){this.transport.overrideMimeType(b)}};Ajax.Request.prototype._doesOverrideXMLMimeType=function(){return(this._overrideMimeType==="text/xml")
};Ajax.Response.prototype.responseXMLValue=function(){if(AC.Detector.isIEStrict()){var b=this.transport.responseXML.documentElement;
if(!b&&this.request._doesOverrideXMLMimeType()){this.transport.responseXML.loadXML(this.transport.responseText)
}}return this.transport.responseXML};
