Type.registerNamespace("Telerik.Web.UI"); Telerik.Web.UI.AnimationType=function(){ }; Telerik.Web.UI.AnimationType.prototype={None:0,Linear:1,InQuad:2,OutQuad:3,InOutQuad:4,InCubic:5,OutCubic:6,InOutCubic:7,InQuart:8,OutQuart:9,InOutQuart:10,InQuint:11,OutQuint:12,InOutQuint:13,InSine:14,OutSine:15,InOutSine:16,InExpo:17,OutExpo:18,InOutExpo:19,InBack:20,OutBack:21,InOutBack:22,InBounce:23,OutBounce:24,InOutBounce:25,InElastic:26,OutElastic:27,InOutElastic:28}; Telerik.Web.UI.AnimationType.registerEnum("Telerik.Web.UI.AnimationType"); Telerik.Web.UI.AnimationFunctions=function(){ }; Telerik.Web.UI.AnimationFunctions.CalculateAnimationPoints=function(_1,_2,_3,_4){ if(_2==_3){ return [_3+"px"]; } var _5=_1.get_duration()/1000; var _6=Math.round((_5)*_4); var _7=Telerik.Web.UI.AnimationFunctions[_1.get_type()]; var _8=new Array(); var _9=Math.max(_2,_3)-Math.min(_2,_3); var _a=_2<_3?1:-1; var _b=0; _8[0]=_2+"px"; for(var _c=0;_c<_6;_c++){ var _d=_7(_c/_4,0,_9,_5); if(_c>0){ var _e=parseInt(_8[_c-1]); var _f=_a*(Math.round(_d)-Math.round(_b)); _8[_c]=(_e+_f)+"px"; } _b=_d; } _8[_6-1]=_3+"px"; return _8; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.Linear]=function(t,b,c,d){ return c*t/d+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InQuad]=function(t,b,c,d){ return c*(t/=d)*t+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.OutQuad]=function(t,b,c,d){ return -c*(t/=d)*(t-2)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InOutQuad]=function(t,b,c,d){ if((t/=d/2)<1){ return c/2*t*t+b; } return -c/2*((--t)*(t-2)-1)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InCubic]=function(t,b,c,d){ return c*(t/=d)*t*t+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.OutCubic]=function(t,b,c,d){ return c*((t=t/d-1)*t*t+1)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InOutCubic]=function(t,b,c,d){ if((t/=d/2)<1){ return c/2*t*t*t+b; } return c/2*((t-=2)*t*t+2)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InQuart]=function(t,b,c,d){ return c*(t/=d)*t*t*t+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.OutQuart]=function(t,b,c,d){ return -c*((t=t/d-1)*t*t*t-1)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InOutQuart]=function(t,b,c,d){ if((t/=d/2)<1){ return c/2*t*t*t*t+b; } return -c/2*((t-=2)*t*t*t-2)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InQuint]=function(t,b,c,d){ return c*(t/=d)*t*t*t*t+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.OutQuint]=function(t,b,c,d){ return c*((t=t/d-1)*t*t*t*t+1)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InOutQuint]=function(t,b,c,d){ if((t/=d/2)<1){ return c/2*t*t*t*t*t+b; } return c/2*((t-=2)*t*t*t*t+2)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InSine]=function(t,b,c,d){ return -c*Math.cos(t/d*(Math.PI/2))+c+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.OutSine]=function(t,b,c,d){ return c*Math.sin(t/d*(Math.PI/2))+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InOutSine]=function(t,b,c,d){ return -c/2*(Math.cos(Math.PI*t/d)-1)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InExpo]=function(t,b,c,d){ return (t==0)?b:c*Math.pow(2,10*(t/d-1))+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.OutExpo]=function(t,b,c,d){ return (t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InOutExpo]=function(t,b,c,d){ if(t==0){ return b; } if(t==d){ return b+c; } if((t/=d/2)<1){ return c/2*Math.pow(2,10*(t-1))+b; } return c/2*(-Math.pow(2,-10*--t)+2)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InCirc]=function(t,b,c,d){ return -c*(Math.sqrt(1-(t/=d)*t)-1)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.OutCirc]=function(t,b,c,d){ return c*Math.sqrt(1-(t=t/d-1)*t)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InOutCirc]=function(t,b,c,d){ if((t/=d/2)<1){ return -c/2*(Math.sqrt(1-t*t)-1)+b; } return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b; }; Telerik.Web.UI.AnimationFunctions[Telerik.Web.UI.AnimationType.InElastic]=function(t,b,c,d,a,p){ if(t==0){ return b; } if((t/=d)==1){ return b+c; } if(!p){ p=d*0.3; } if((!a)||a0){ _d8["attributes"]=this.get_attributes()._data; } return _d8; },_notifyPropertyChanged:function(_d9,_da){ var _db=this._getControl(); if(_db){ _db._itemPropertyChanged(this,_d9,_da); } },_loadFromDictionary:function(_dc){ if(typeof (_dc.Text)!="undefined"){ this.set_text(_dc.Text); } if(typeof (_dc.Value)!="undefined"&&_dc.Value!==""){ this.set_value(_dc.Value); } if(typeof (_dc.Enabled)!="undefined"&&_dc.Enabled!==true){ this.set_enabled(_dc.Enabled); } var _dd=this.get_attributes(); for(var _de in _dc.Attributes){ _dd.setAttribute(_de,_dc.Attributes[_de]); } },_createDomElement:function(){ var _df=document.createElement("ul"); var _e0=[]; this._render(_e0); _df.innerHTML=_e0.join(""); return _df.firstChild; }}; Telerik.Web.UI.ControlItem.registerClass("Telerik.Web.UI.ControlItem"); Type.registerNamespace("Telerik.Web.UI"); Telerik.Web.UI.ControlItemCollection=function(_e1){ this._array=new Array(); this._parent=_e1; this._control=null; }; Telerik.Web.UI.ControlItemCollection.prototype={add:function(_e2){ var _e3=this._array.length; this.insert(_e3,_e2); },insert:function(_e4,_e5){ var _e6=_e5.get_parent(); var _e7=this._parent._getControl(); if(_e6){ _e6._getChildren().remove(_e5); } if(_e7){ _e7._childInserting(_e4,_e5,this._parent); } Array.insert(this._array,_e4,_e5); _e5.set_parent(this._parent); if(_e7){ _e7._childInserted(_e4,_e5,this._parent); _e7._logInserted(_e5); } },remove:function(_e8){ var _e9=this._parent._getControl(); if(_e9){ _e9._childRemoving(_e8); } Array.remove(this._array,_e8); if(_e9){ _e9._childRemoved(_e8,this._parent); } _e8.set_parent(null); _e8._control=null; },removeAt:function(_ea){ var _eb=this.getItem(_ea); if(_eb){ this.remove(_eb); } },clear:function(){ var _ec=this._parent._getControl(); if(_ec){ _ec._logClearing(this._parent); _ec._childrenCleared(this._parent); } this._array=new Array(); },get_count:function(){ return this._array.length; },getItem:function(_ed){ return this._array[_ed]; },indexOf:function(_ee){ return Array.indexOf(this._array,_ee); },forEach:function(_ef){ for(var i=0,_f1=this.get_count();i<_f1;i++){ _ef(this._array[i]); } }}; Telerik.Web.UI.ControlItemCollection.registerClass("Telerik.Web.UI.ControlItemCollection"); function WebForm_CallbackComplete(){ for(var i=0;i<__pendingCallbacks.length;i++){ var _f3=__pendingCallbacks[i]; if(_f3&&_f3.xmlRequest&&(_f3.xmlRequest.readyState==4)){ __pendingCallbacks[i]=null; WebForm_ExecuteCallback(_f3); if(!_f3.async){ __synchronousCallBackIndex=-1; } var _f4="__CALLBACKFRAME"+i; var _f5=document.getElementById(_f4); if(_f5){ _f5.parentNode.removeChild(_f5); } } } } Type.registerNamespace("Telerik.Web.UI"); Telerik.Web.UI.ControlItemContainer=function(_f6){ Telerik.Web.UI.ControlItemContainer.initializeBase(this,[_f6]); this._childControlsCreated=false; this._enabled=true; this._log=new Telerik.Web.UI.ChangeLog(); this._enableClientStatePersistence=false; this._eventMap=new Telerik.Web.UI.EventMap(); this._attributes=new Telerik.Web.UI.AttributeCollection(this); this._children=null; }; Telerik.Web.UI.ControlItemContainer.prototype={initialize:function(){ Telerik.Web.UI.ControlItemContainer.callBaseMethod(this,"initialize"); this._ensureChildControls(); this._log.initialize(); this._initializeEventMap(); },dispose:function(){ this._eventMap.dispose(); if(this._childControlsCreated){ for(var i=0;i=3; },_getDomEventDelegate:function(){ if(!this._onDomEventDelegate){ this._onDomEventDelegate=Function.createDelegate(this,this._onDomEvent); } return this._onDomEventDelegate; }}; Telerik.Web.UI.EventMap.registerClass("Telerik.Web.UI.EventMap"); Type.registerNamespace("Telerik.Web.UI"); Telerik.Web.UI.Overlay=function(_146){ this._targetElement=_146; this._element=null; }; Telerik.Web.UI.Overlay.IsSupported=function(){ return $telerik.isIE; }; Telerik.Web.UI.Overlay.prototype={initialize:function(){ var _147=document.createElement("div"); _147.innerHTML=""; this._element=_147.firstChild; this._element.src="javascript:'';"; this._targetElement.parentNode.insertBefore(this._element,this._targetElement); if(this._targetElement.style.zIndex>0){ this._element.style.zIndex=this._targetElement.style.zIndex-1; } this._element.style.position="absolute"; this._element.style.border="0px"; this._element.frameBorder=0; this._element.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)"; this._element.tabIndex=-1; if(!$telerik.isSafari){ _147.outerHTML=null; } this.updatePosition(); },dispose:function(){ if(this._element.parentNode){ this._element.parentNode.removeChild(this._element); } this._targetElement=null; this._element=null; },get_targetElement:function(){ return this._targetElement; },set_targetElement:function(_148){ this._targetElement=_148; },updatePosition:function(){ this._element.style.top=this._toUnit(this._targetElement.style.top); this._element.style.left=this._toUnit(this._targetElement.style.left); this._element.style.width=this._targetElement.offsetWidth+"px"; this._element.style.height=this._targetElement.offsetHeight+"px"; },_toUnit:function(_149){ if(!_149){ return "0px"; } return parseInt(_149)+"px"; }}; Telerik.Web.UI.Overlay.registerClass("Telerik.Web.UI.Overlay",null,Sys.IDisposable); Type.registerNamespace("Telerik.Web.UI"); Telerik.Web.UI._PostbackWrapper=function(){ this._doPostbackReplaced=false; this._events=new Sys.EventHandlerList(); this._originalDoPostBack=null; this._onWindowUnloadHandler=null; this._postbackEventRaised=false; this._beginRequestHandler=null; this._onsubmitHandler=null; this._partialRenderingEnabledChecked=false; this._partialRenderingEnabled=false; }; Telerik.Web.UI._PostbackWrapper.prototype={initialize:function(){ this._onWindowUnloadHandler=Function.createDelegate(this,this._onWindowUnload); Sys.UI.DomEvent.addHandler(window,"unload",this._onWindowUnloadHandler); },_raiseBeforePostback:function(_14a){ var _14b=this._events.getHandler("beforePostback"); if(_14b){ if(!_14a){ _14a=Sys.EventArgs.Empty; } _14b(this,_14a); } this._postbackEventRaised=true; },_doPostback:function(_14c,_14d){ this._raiseBeforePostback(Sys.EventArgs.Empty); this._originalDoPostBack(_14c,_14d); },_onSubmit:function(e){ return this._handleNormalSubmit(e); },_handleNormalSubmit:function(e){ if(!this._postbackEventRaised){ this._raiseBeforePostback(Sys.EventArgs.Empty); } return true; },_endRequest:function(){ this._postbackEventRaised=false; },_isPartialRenderingEnabled:function(){ if(!this._partialRenderingEnabledChecked){ this._partialRenderingEnabled=true; if(typeof (Sys)=="undefined"){ this._partialRenderingEnabled=false; }else{ if(typeof (Sys.WebForms)=="undefined"){ this._partialRenderingEnabled=false; }else{ if(typeof (Sys.WebForms.PageRequestManager)=="undefined"){ this._partialRenderingEnabled=false; }else{ if(!Sys.WebForms.PageRequestManager.getInstance()){ this._partialRenderingEnabled=false; } } } } this._partialRenderingEnabledChecked=true; } return this._partialRenderingEnabled; },add_beforePostback:function(_150){ if(!this._isPartialRenderingEnabled()){ return; } if(!this._onsubmitHandler){ this._onsubmitHandler=Function.createDelegate(this,this._onSubmit); Array.add(Sys.WebForms.PageRequestManager.getInstance()._onSubmitStatements,this._onsubmitHandler); } if(!this._endRequestHandler){ this._endRequestHandler=Function.createDelegate(this,this._endRequest); Sys.WebForms.PageRequestManager.getInstance().add_endRequest(this._endRequestHandler); } if(!this._doPostbackReplaced){ this._replaceDoPostback(); } this._events.addHandler("beforePostback",_150); },remove_beforePostback:function(_151){ this._events.removeHandler("beforePostback",_151); },_replaceDoPostback:function(){ if(typeof (Page_IsValid)!="undefined"){ return; } this._originalDoPostBack=window.__doPostBack; if(this._originalDoPostBack){ window.__doPostBack=Function.createDelegate(this,this._doPostback); } this._doPostbackReplaced=true; },_onWindowUnload:function(_152){ this.dispose(); },dispose:function(){ Sys.UI.DomEvent.removeHandler(window,"unload",this._onWindowUnloadHandler); if(this._endRequestHandler){ Sys.WebForms.PageRequestManager.getInstance().remove_endRequest(this._endRequestHandler); this._endRequestHandler=null; } if(this._originalDoPostBack){ window.__doPostBack=this._originalDoPostBack; this._originalDoPostBack=null; } }}; Telerik.Web.UI._PostbackWrapper.registerClass("Telerik.Web.UI._PostbackWrapper"); Telerik.Web.UI.PostbackWrapper=new Telerik.Web.UI._PostbackWrapper(); Telerik.Web.UI.PostbackWrapper.initialize(); Type.registerNamespace("Telerik.Web.UI"); Telerik.Web.UI.SlideDirection=function(){ }; Telerik.Web.UI.SlideDirection.prototype={Up:1,Down:2,Left:3,Right:4}; Telerik.Web.UI.SlideDirection.registerEnum("Telerik.Web.UI.SlideDirection"); Telerik.Web.UI.Slide=function(_153,_154,_155,_156){ this._fps=60; this._animatedElement=_153; this._element=_153.parentNode; this._expandAnimation=_154; this._collapseAnimation=_155; this._direction=Telerik.Web.UI.SlideDirection.Down; this._animation=null; this._expanding=null; if(_156==null){ this._enableOverlay=true; }else{ this._enableOverlay=_156; } this._events=null; this._overlay=null; this._animationEndedDelegate=null; this._expandAnimationStartedDelegate=null; this._updateOverlayDelegate=null; }; Telerik.Web.UI.Slide.prototype={initialize:function(){ if(Telerik.Web.UI.Overlay.IsSupported()&&this._enableOverlay){ var _157=this.get_animatedElement(); this._overlay=new Telerik.Web.UI.Overlay(_157); this._overlay.initialize(); } this._animationEndedDelegate=Function.createDelegate(this,this._animationEnded); this._expandAnimationStartedDelegate=Function.createDelegate(this,this._expandAnimationStarted); this._updateOverlayDelegate=Function.createDelegate(this,this._updateOverlay); },dispose:function(){ this._animatedElement=null; this._events=null; this._disposeAnimation(); if(this._overlay){ this._overlay.dispose(); this._overlay=null; } this._animationEndedDelegate=null; this._expandAnimationStartedDelegate=null; this._updateOverlayDelegate=null; },get_element:function(){ return this._element; },get_animatedElement:function(){ return this._animatedElement; },set_animatedElement:function(_158){ this._animatedElement=_158; if(this._overlay){ this._overlay.set_targetElement(this._animatedElement); } },get_direction:function(){ return this._direction; },set_direction:function(_159){ this._direction=_159; },get_events:function(){ if(!this._events){ this._events=new Sys.EventHandlerList(); } return this._events; },updateSize:function(){ var _15a=this.get_animatedElement(); var _15b=this.get_element(); var top=0; if(_15a.style.top){ top=Math.max(parseInt(_15a.style.top),0); } var left=0; if(_15a.style.left){ left=Math.max(parseInt(_15a.style.left),0); } var _15e=_15a.offsetHeight+top; if(_15b.style.height!=_15e+"px"){ _15b.style.height=Math.max(_15e,0)+"px"; } var _15f=_15a.offsetWidth+left; if(_15b.style.width!=_15f+"px"){ _15b.style.width=Math.max(_15f,0)+"px"; } if(this._overlay){ this._updateOverlay(); } },show:function(){ this._showElement(); },expand:function(){ this._expanding=true; this.get_animatedElement().style.visibility="hidden"; this._resetState(true); var _160=null; var _161=null; switch(this.get_direction()){ case Telerik.Web.UI.SlideDirection.Up: case Telerik.Web.UI.SlideDirection.Left: _160=parseInt(this._getSize()); _161=0; break; case Telerik.Web.UI.SlideDirection.Down: case Telerik.Web.UI.SlideDirection.Right: _160=parseInt(this._getPosition()); _161=0; break; } if(this._animation){ this._animation.stop(); } if((_160==_161)||(this._expandAnimation.get_type()==Telerik.Web.UI.AnimationType.None)){ this._expandAnimationStarted(); this._setPosition(_161); this._animationEnded(); this.get_animatedElement().style.visibility="visible"; }else{ this._playAnimation(this._expandAnimation,_160,_161); } },collapse:function(){ this._resetState(); this._expanding=false; var _162=null; var _163=null; var size=parseInt(this._getSize()); var _165=parseInt(this._getPosition()); switch(this.get_direction()){ case Telerik.Web.UI.SlideDirection.Up: case Telerik.Web.UI.SlideDirection.Left: _162=0; _163=size; break; case Telerik.Web.UI.SlideDirection.Down: case Telerik.Web.UI.SlideDirection.Right: _162=0; _163=_165-size; break; } if(this._animation){ this._animation.stop(); } if((_162==_163)||(this._collapseAnimation.get_type()==Telerik.Web.UI.AnimationType.None)){ this._setPosition(_163); this._animationEnded(); }else{ this._playAnimation(this._collapseAnimation,_162,_163); } },add_collapseAnimationEnded:function(_166){ this.get_events().addHandler("collapseAnimationEnded",_166); },remove_collapseAnimationEnded:function(_167){ this.get_events().removeHandler("collapseAnimationEnded",_167); },add_expandAnimationEnded:function(_168){ this.get_events().addHandler("expandAnimationEnded",_168); },remove_expandAnimationEnded:function(_169){ this.get_events().removeHandler("expandAnimationEnded",_169); },add_expandAnimationStarted:function(_16a){ this.get_events().addHandler("expandAnimationStarted",_16a); },remove_expandAnimationStarted:function(_16b){ this.get_events().removeHandler("expandAnimationStarted",_16b); },_playAnimation:function(_16c,_16d,_16e){ var _16f=_16c.get_duration(); var _170=this._getAnimatedStyleProperty(); var _171=Telerik.Web.UI.AnimationFunctions.CalculateAnimationPoints(_16c,_16d,_16e,this._fps); var _172=this.get_animatedElement(); _172.style.visibility="visible"; if(this._animation){ this._animation.set_target(_172); this._animation.set_duration(_16f/1000); this._animation.set_propertyKey(_170); this._animation.set_values(_171); }else{ this._animation=new $TWA.DiscreteAnimation(_172,_16f/1000,this._fps,"style",_170,_171); this._animation.add_started(this._expandAnimationStartedDelegate); this._animation.add_ended(this._animationEndedDelegate); if(this._overlay){ this._animation.add_onTick(this._updateOverlayDelegate); } } this._animation.play(); },_animationEnded:function(){ if(this._expanding){ this.get_element().style.overflow="visible"; this._raiseEvent("expandAnimationEnded",Sys.EventArgs.Empty); }else{ this.get_element().style.display="none"; this._raiseEvent("collapseAnimationEnded",Sys.EventArgs.Empty); } if(this._overlay){ this._updateOverlay(); } },_expandAnimationStarted:function(){ this._raiseEvent("expandAnimationStarted",Sys.EventArgs.Empty); },_updateOverlay:function(){ this._overlay.updatePosition(); },_showElement:function(){ var _173=this.get_animatedElement(); var _174=this.get_element(); if(!_174){ return; } if(!_174.style){ return; } _174.style.display=(_174.tagName.toUpperCase()!="TABLE")?"block":""; _173.style.display=(_173.tagName.toUpperCase()!="TABLE")?"block":""; _174.style.overflow="hidden"; },_resetState:function(_175){ this._stopAnimation(); this._showElement(); if(_175){ var _176=this.get_animatedElement(); switch(this.get_direction()){ case Telerik.Web.UI.SlideDirection.Up: _176.style.top="0px"; break; case Telerik.Web.UI.SlideDirection.Down: _176.style.top=-_176.offsetHeight+"px"; break; case Telerik.Web.UI.SlideDirection.Left: _176.style.left=_176.offsetWidth+"px"; break; case Telerik.Web.UI.SlideDirection.Right: _176.style.left=-_176.offsetWidth+"px"; break; default: Error.argumentOutOfRange("direction",this.get_direction(),"Slide direction is invalid. Use one of the values in the Telerik.Web.UI.SlideDirection enumeration."); break; } } },_getSize:function(){ var _177=this.get_animatedElement(); switch(this.get_direction()){ case Telerik.Web.UI.SlideDirection.Up: case Telerik.Web.UI.SlideDirection.Down: return _177.offsetHeight; break; case Telerik.Web.UI.SlideDirection.Left: case Telerik.Web.UI.SlideDirection.Right: return _177.offsetWidth; break; default: return 0; } },_setPosition:function(_178){ var _179=this.get_animatedElement(); var _17a=this._getAnimatedStyleProperty(); _179.style[_17a]=_178; },_getPosition:function(){ var _17b=this.get_animatedElement(); var _17c=this._getAnimatedStyleProperty(); return _17b.style[_17c]; },_getAnimatedStyleProperty:function(){ switch(this.get_direction()){ case Telerik.Web.UI.SlideDirection.Up: case Telerik.Web.UI.SlideDirection.Down: return "top"; case Telerik.Web.UI.SlideDirection.Left: case Telerik.Web.UI.SlideDirection.Right: return "left"; } },_stopAnimation:function(){ if(this._animation){ this._animation.stop(); } },_disposeAnimation:function(){ if(this._animation){ this._animation.dispose(); this._animation=null; } },_raiseEvent:function(_17d,_17e){ var _17f=this.get_events().getHandler(_17d); if(_17f){ if(!_17e){ _17e=Sys.EventArgs.Empty; } _17f(this,_17e); } }}; Telerik.Web.UI.Slide.registerClass("Telerik.Web.UI.Slide",null,Sys.IDisposable); if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();