﻿Type.registerNamespace("Telerik.Web.UI");
Telerik.Web.UI.RadToolTip=function(_1){
Telerik.Web.UI.RadToolTip.initializeBase(this,[_1]);
this._offsetX=2;
this._offsetY=6;
this._position=Telerik.Web.UI.ToolTipPosition.BottomCenter;
this._horizontalPosition=null;
this._verticalPosition=null;
this._targetControlID=null;
this._serverTargetControlID=null;
this._formID=null;
this._targetControl=null;
this._popupElement=null;
this._tableElement=null;
this._contentCell=null;
this._titleElement=null;
this._contentElement=null;
this._calloutElement=null;
this._closeLink=null;
this._popupBehavior=null;
this._popupVisible=false;
this._popupStickyHandler=null;
this._skin="Default";
this._title="";
this._text="";
this._width="";
this._height="";
this._relativeTo=Telerik.Web.UI.ToolTipRelativeDisplay.Mouse;
this._contentScrolling=Telerik.Web.UI.ToolTipScrolling.Auto;
this._showEvent=Telerik.Web.UI.ToolTipShowEvent.OnMouseOver;
this._sticky=false;
this._manualClose=false;
this._mouseTrailing=false;
this._showCallout=true;
this._showDelayRef=null;
this._autoCloseRef=null;
this._showDelay=300;
this._autoCloseDelay=2000;
this._hideDelay=100;
this._animation=Telerik.Web.UI.ToolTipAnimation.None;
this._tooltipAnimation=null;
};
Telerik.Web.UI.RadToolTip.prototype={initialize:function(){
Telerik.Web.UI.RadToolTip.callBaseMethod(this,"initialize");
this.set_Position(this._position);
if(!this._targetControlID){
return;
}else{
this.set_TargetControlID(this._targetControlID);
}
},dispose:function(){
if(this._tooltipAnimation){
this._tooltipAnimation.dispose();
}
if(this._popupBehavior){
this._popupBehavior.dispose();
this._popupBehavior=null;
}
this._registerPopupHandlers(false);
this._registerMouseHandlers(this._targetControl,false);
if(this._closeLinkHandler&&this._closeLink){
$removeHandler(this._closeLink,"click",this._closeLinkHandler);
this._closeLinkHandler=null;
}
Telerik.Web.UI.RadToolTip.callBaseMethod(this,"dispose");
},requestShow:function(){
this._resetShowDelay();
},hide:function(_2){
if(true==_2&&this._manualClose){
return false;
}
this._hide();
return true;
},clone:function(_3,_4){
if(!_3){
alert("clone error: No target element specified");
return;
}
var _5=this._getEventsParameter();
var _6=this._getPropertiesParameter();
_6["TargetControlID"]=_3.getAttribute("id");
if(!_6["TargetControlID"]){
_6["TargetControl"]=_3;
}
if(_4){
_6["Text"]=_4;
}
var _7=$create(Telerik.Web.UI.RadToolTip,_6,_5,null,document.createElement("SPAN"));
return _7;
},show:function(){
this._createUI();
if(!this._targetControl){
return;
}
var _8=new Sys.CancelEventArgs();
this.raiseEvent("BeforeShow",_8);
if(_8.get_cancel()){
return;
}
this._registerPopupHandlers(true);
this._getToolTipController().set_ActiveToolTip(this);
this._fixIeHeight(this._tableElement,this._height);
if(this._animation==Telerik.Web.UI.ToolTipAnimation.None){
this._show();
this._afterShow();
}else{
this._playAnimation();
}
},showLoadingMessage:function(_9){
if(_9){
var _a=document.createElement("DIV");
_a.className=this._getFullSkinName()+" LoadingSign";
this._contentCell.appendChild(_a);
}else{
this._contentCell.innerHTML="";
}
},set_ContentElement:function(_b){
this._contentCell.innerHTML="";
if(_b.parentNode&&_b.parentNode.removeChild){
_b.parentNode.removeChild(_b);
}
this._contentCell.appendChild(_b);
_b.style.display="";
this._contentElement=_b;
},get_ContentElement:function(){
return this._contentElement;
},set_Content:function(_c){
_textElement=document.createElement("DIV");
_textElement.innerHTML=this._text;
this._contentElement=_textElement;
this._contentCell.appendChild(_textElement);
},get_Content:function(){
return this._contentElement?this._contentElement.innerHTML:"";
},cancelAutoCloseDelay:function(){
if(this._autoCloseRef){
window.clearTimeout(this._autoCloseRef);
this._autoCloseRef=0;
}
},cancelShowDelay:function(){
if(this._showDelayRef){
window.clearTimeout(this._showDelayRef);
this._showDelayRef=null;
}
this._getToolTipController().cancelSpecificShowRequest(this);
},_getToolTipController:function(){
return Telerik.Web.UI.RadToolTipController.getInstance();
},_resetAutoCloseDelay:function(){
this.cancelAutoCloseDelay();
if(this._manualClose||this._sticky){
return;
}
if(this._autoCloseDelay){
var _d=this;
this._autoCloseRef=window.setTimeout(function(){
_d.hide(true);
},this._autoCloseDelay);
}
},_resetShowDelay:function(){
this.cancelShowDelay();
var _e=this;
var _f=function(){
_e._getToolTipController().showTootlip(_e);
_e.cancelShowDelay();
};
this._showDelayRef=window.setTimeout(_f,this._showDelay);
},_show:function(){
var _10=null;
try{
_10=this._getCalculatedPopupBounds();
}
catch(e){
var _11=this;
window.setTimeout(function(){
_11._addToolTipToDocument();
},10);
return;
}
var x=_10.x;
var y=_10.y;
this._setPopupVisible(x,y);
this._resetAutoCloseDelay();
this._popupVisible=true;
},_hide:function(){
if(this._tooltipAnimation){
this._tooltipAnimation.stop();
}
this.cancelShowDelay();
this.cancelAutoCloseDelay();
var _14=new Sys.CancelEventArgs();
this.raiseEvent("BeforeHide",_14);
if(_14.get_cancel()){
return;
}
if(this._tooltipAnimation){
this._tooltipAnimation.play(true);
}else{
this._afterHide();
}
},_afterHide:function(){
if(this._popupBehavior){
this._popupBehavior.hide(true);
}
this._popupVisible=false;
this._getToolTipController().notifyToolTipClosed(this);
this.raiseEvent("Hide");
this._registerPopupHandlers(false);
},_afterShow:function(){
this.raiseEvent("Show");
},_playAnimation:function(){
var _15=function(){
var _16=this.controller;
var _17=_16._getCalculatedPopupBounds();
_16._setPopupVisible(_17.x,_17.y);
var _18=Telerik.Web.DomElement.getBounds(_16._popupElement);
_16._popupBehavior.hide();
this.set_EndBounds(_18);
};
if(!this._tooltipAnimation){
if(this._animation==Telerik.Web.UI.ToolTipAnimation.Fade){
this._tooltipAnimation=new Telerik.Web.UI.Animations.FadeAnimation(this,null,null,this._popupElement,this._position,this._targetControl);
this._tooltipAnimation.onShowStart=function(){
this.controller._show();
};
}else{
if(this._animation==Telerik.Web.UI.ToolTipAnimation.Slide){
this._tooltipAnimation=new Telerik.Web.UI.Animations.SlideAnimation(this,null,null,this._popupElement,this._position,this._targetControl);
this._tooltipAnimation.onShowStart=_15;
}else{
if(this._animation==Telerik.Web.UI.ToolTipAnimation.FlyIn){
this._tooltipAnimation=new Telerik.Web.UI.Animations.FlyInAnimation(this,null,null,this._popupElement,this._position,this._targetControl);
this._tooltipAnimation.onShowStart=_15;
}else{
if(this._animation==Telerik.Web.UI.ToolTipAnimation.Resize){
this._tooltipAnimation=new Telerik.Web.UI.Animations.ResizeAnimation(this,0.2,50,this._popupElement,this._position,this._targetControl);
this._tooltipAnimation.onShowStart=_15;
}
}
}
}
}
if(this._tooltipAnimation){
this._tooltipAnimation.onShowEnd=function(){
this.controller._show();
this.controller._afterShow();
};
this._tooltipAnimation.onHideEnd=function(){
this.controller._afterHide();
};
this._tooltipAnimation.play();
}
},_isMouseOverElement:function(e,_1a){
var _1b=null;
try{
_1b=Telerik.Web.DomElement.getBounds(_1a);
}
catch(e){
return false;
}
if(e&&e.target.tagName=="SELECT"&&e.clientX<0){
return true;
}
var x=e.clientX-2;
var y=e.clientY-2;
var _1e=TelerikCommonScripts.containsPoint(_1b,x,y);
return _1e;
},_onMouseOver:function(e){
this._logMousePosition(e);
this._resetShowDelay();
this._getToolTipController().requestShow(this);
if(e){
}
},_onMouseMove:function(e){
this._logMousePosition(e);
this._resetAutoCloseDelay();
if(this._mouseTrailing&&this.isVisible()){
this._show();
}
},_onMouseOut:function(e){
var _22=this._isMouseOverElement(e,this._targetControl);
if(!_22){
this.cancelShowDelay();
if(!this._sticky){
if(this._hideDelay>0){
var _23=this;
window.setTimeout(function(){
_23.hide(true);
},this._hideDelay);
}else{
this.hide(true);
}
}
}
},_onClick:function(e){
this._onMouseOver(e);
e.returnValue=false;
e.cancelBubble=true;
return false;
},_onRightClick:function(e){
this._onMouseOver(e);
e.returnValue=false;
e.cancelBubble=true;
return false;
},_registerMouseHandlers:function(_26,_27){
if(true==_27){
var _28={};
var _29=Telerik.Web.UI.ToolTipShowEvent;
if(this._showEvent==_29.OnMouseOver){
_28["mouseover"]=this._onMouseOver;
_28["mousemove"]=this._onMouseMove;
_28["mouseout"]=this._onMouseOut;
}
if(this._showEvent==_29.OnClick){
_28["click"]=this._onClick;
}
if(this._showEvent==_29.OnRightClick){
_28["contextmenu"]=this._onRightClick;
}
if(this._showEvent==_29.OnFocus){
_28["focus"]=this._onMouseOver;
_28["blur"]=this._onMouseOut;
}
$addHandlers(_26,_28,this);
}else{
if(_26){
$clearHandlers(_26);
}
}
},_registerPopupHandlers:function(_2a){
if(true==_2a){
if(this._sticky||this._position==Telerik.Web.UI.ToolTipPosition.Center){
this._popupStickyHandler=Function.createDelegate(this,this._onPopupStickyMouseOut);
$addHandler(this._tableElement,"mouseout",this._popupStickyHandler);
this.set_Sticky(true);
}
}else{
if(this._popupStickyHandler){
$removeHandler(this._tableElement,"mouseout",this._popupStickyHandler);
this._popupStickyHandler=null;
}
}
},_onPopupStickyMouseOut:function(e){
var _2c=this._isMouseOverElement(e,this._tableElement);
if(!_2c&&!this._manualClose){
this.hide();
}
},_getPropertiesParameter:function(){
if(!this._propertiesParameter){
var _2d={};
for(var _2e in Telerik.Web.UI.RadToolTip.prototype){
var _2f=this[_2e];
if(typeof (_2f)=="function"&&_2e.indexOf("get_")==0){
var _30=_2e.substring(4);
if(null==this["set_"+_30]){
continue;
}
var _31=_2f.call(this);
if((typeof (_31)!="boolean")&&(null==_31||""==_31)){
continue;
}
_2d[_30]=_31;
if(_30=="Skin"){
break;
}
}
}
this._propertiesParameter=_2d;
}
var _32=this._cloneObject(this._propertiesParameter);
return _32;
},_getEventsParameter:function(){
if(!this._eventsParameter){
var _33={};
var _34=this.get_events();
var _35=["BeforeShow","Show","BeforeHide","Hide"];
for(var i=0;i<_35.length;i++){
var _37=_35[i];
var _38=_34._getEvent(_37);
if(_38&&typeof (eval(_38)=="function")){
_33[_37]=eval(_38[0]);
}
}
this._eventsParameter=_33;
}
return this._eventsParameter;
},_cloneObject:function(_39){
var _3a={};
for(var _3b in _39){
_3a[_3b]=_39[_3b];
}
return _3a;
},_getPosRelativeToMouse:function(){
var loc=Telerik.Web.DomElement.getLocation(this._targetControl);
var _3d=loc.x;
var _3e=loc.y;
var pos=this._getMousePosition();
var _40=pos.clientX;
var _41=pos.clientY;
if(Telerik.Web.Browser.renderMode!=Telerik.Web.Browser.QuirksMode){
_3d-=document.documentElement.scrollLeft;
_3e-=document.documentElement.scrollTop;
}
var _42=_40-_3d;
var _43=_41-_3e;
return {x:_42,y:_43};
},_logMousePosition:function(e){
if(!e){
return;
}
this._mouseX=e.clientX;
this._mouseY=e.clientY;
},_getMousePosition:function(){
var obj={};
obj.clientX=this._mouseX;
obj.clientY=this._mouseY;
return obj;
},_getCalculatedPopupBounds:function(){
var x=0;
var y=0;
var _48=0;
var _49=0;
var _4a=(this._popupElement.style.display=="none")?true:false;
var _4b=this._popupElement.style.left;
var _4c=this._popupElement.style.top;
this._popupElement.style.display="";
this._setOverflow();
var _4d=Telerik.Web.DomElement.getBounds(this._popupElement);
var _4e=parseInt(TelerikCommonScripts.getCurrentStyle(this._calloutElement,"marginLeft"));
var _4f=parseInt(TelerikCommonScripts.getCurrentStyle(this._calloutElement,"marginTop"));
if(isNaN(_4e)){
_4e=0;
}
if(isNaN(_4f)){
_4f=0;
}
var _50=0;
var _51=0;
if(this._calloutElement){
var _52=Telerik.Web.DomElement.getBounds(this._calloutElement);
if(_52){
if(_52.width){
_50=_52.width;
}
if(_52.height){
_51=_52.height;
}
}
}
if(_4a){
this._popupElement.style.display="none";
}
var _53=_4d.width;
var _54=_4d.height;
var _55=this._horizontalPosition;
var _56=this._verticalPosition;
var _57=Telerik.Web.DomElement.getBounds(this._targetControl);
if((this._mouseTrailing||this._relativeTo==Telerik.Web.UI.ToolTipRelativeDisplay.Mouse)){
var pos=this._getPosRelativeToMouse();
x=pos.x;
y=pos.y;
}else{
_48=_57.width;
_49=_57.height;
}
switch(_55){
case 2:
x+=-parseInt(_53/2-_48/2);
x+=this._offsetX;
break;
case 3:
x+=_48;
x-=_4e;
x+=this._offsetX;
break;
case 1:
default:
x+=-_53;
x+=(-_50-_4e);
x-=this._offsetX;
break;
}
switch(_56){
case 2:
y+=-parseInt(_54/2-_49/2);
y+=this._offsetY;
break;
case 1:
y-=_54;
y-=_51+_4f;
y-=this._offsetY;
break;
case 3:
default:
y+=_49;
y-=_4f;
y+=this._offsetY;
break;
}
var obj={};
obj.x=x;
obj.y=y;
obj.width=_4d.width;
obj.height=_4d.height;
return obj;
},_fixIeHeight:function(_5a,_5b){
if("CSS1Compat"==document.compatMode){
var _5c=(_5a.offsetHeight-parseInt(_5a.style.height));
if(_5c>0){
var _5d=(parseInt(_5a.style.height)-_5c);
if(_5d>0){
_5a.style.height=_5d+"px";
}
}
}
},_refreshTitle:function(){
if(null==this._titleElement){
return;
}
this._titleElement.innerHTML=this._title;
this._titleElement.style.display=(this._title)?"":"none";
},_createUI:function(){
if(!this._popupElement){
var _5e=this.get_id();
var _5f="RadToolTipWrapper_"+_5e;
var _60=document.createElement("DIV");
_60.id=_5f;
_60.className=this._getFullSkinName()+(this.get_ShowCallout()?" visiblecallout":"");
_60.setAttribute("unselectable","on");
this._popupElement=_60;
var _61=document.createElement("DIV");
_61.className="ToolTipCallout "+this._getCalloutPosition(this._position);
_61.innerHTML="&nbsp;";
this._calloutElement=_61;
var _62=document.createElement("TABLE");
_62.className="ToolTipWrapper";
_62.style.width=this._width;
_62.style.height=this._height;
this._tableElement=_62;
var _63=["ToolTipTopLeft","ToolTipTopCenter","ToolTipTopRight","ToolTipLeftMiddle","ToolTipContent","ToolTipRightMiddle","ToolTipBottomLeft","ToolTipBottomCenter","ToolTipBottomRight"];
var _64=0;
for(var i=1;i<=3;i++){
var _66=_62.insertRow(-1);
for(var j=1;j<=3;j++){
var _68=_66.insertCell(-1);
_68.innerHTML="&nbsp;";
_68.className=_63[_64];
_64++;
}
}
var _69=_62.rows[0].cells[1];
_69.innerHTML="";
var _6a=document.createElement("DIV");
_6a.className="ToolTipTitlebar VisibleTitlebar";
_6a.style.display="none";
this._titleElement=_6a;
this._refreshTitle();
_69.appendChild(_6a);
if(this._manualClose){
var _6b=document.createElement("A");
_6b.href="javascript: void(0);";
_6b.className="CloseButton";
this._closeLinkHandler=Function.createDelegate(this,function(e){
this.hide();
if(e){
e.returnValue=false;
e.cancelBubble=true;
if(e.stopPropagation){
e.stopPropagation();
}
}
return false;
});
$addHandler(_6b,"click",this._closeLinkHandler);
this._closeLink=_6b;
var _6d=document.createElement("SPAN");
_6d.innerHTML="Close";
_6b.title="Close";
_6b.appendChild(_6d);
_69.appendChild(_6b);
}
var _6e=_62.rows[1].cells[1];
_6e.vAlign="top";
_6e.innerHTML="";
this._contentCell=_6e;
var _6f=this.get_Text();
if(this._targetControl&&!_6f){
_6f=this._targetControl.getAttribute("title");
if(_6f){
this._targetControl.removeAttribute("title");
}
this._text=_6f;
}
if(this._text){
this.set_Content(this._text);
}else{
var _70=null;
var _71=this.get_id();
if(_71){
_70=$get(_71);
}
if(_70&&_70.innerHTML){
this.set_ContentElement(_70);
}
}
_60.appendChild(_61);
_60.appendChild(_62);
this._popupElement.style.display="none";
this._popupElement.style.position="absolute";
this._addToolTipToDocument();
}
if(!this._popupBehavior){
this._popupBehavior=$create(Telerik.Web.PopupBehavior,{"id":(new Date()-100)+"PopupBehavior","parentElement":this._targetControl},null,null,this._popupElement);
}
},_addToolTipToDocument:function(){
var _72=document.getElementById(this._formID);
if(!_72){
_72=document.forms[0];
}
_72.appendChild(this._popupElement);
},_getParentByTagName:function(_73,_74){
var _75=_73;
_74=_74.toUpperCase();
while(_75.tagName.toUpperCase()!=_74){
_75=_75.parentNode;
if(!_75){
break;
}
}
return _75;
},_getFullSkinName:function(){
return "radtooltip_"+this._skin;
},_getUniqueString:function(){
return ""+(new Date()-100);
},_getCalloutPosition:function(_76){
with(Telerik.Web.UI.ToolTipPosition){
switch(_76){
case TopLeft:
return "BottomRight";
case TopCenter:
return "BottomCenter";
case TopRight:
return "BottomLeft";
case MiddleLeft:
return "MiddleRight";
case Center:
return "Center";
case MiddleRight:
return "MiddleLeft";
case BottomLeft:
return "TopRight";
case BottomCenter:
return "TopCenter";
case BottomRight:
return "TopLeft";
}
}
return "";
},_getHorizontalSide:function(_77){
return parseInt((_77+"").charAt(1));
},_getVerticalSide:function(_78){
return parseInt((_78+"").charAt(0));
},_setPopupVisible:function(x,y){
this._popupBehavior.set_x(x);
this._popupBehavior.set_y(y);
this._popupBehavior.show();
if(!this.get_Width()){
this._popupElement.style.width="";
}
this._popupElement.style.zIndex="50000";
},_setOverflow:function(){
var _7b=this._contentScrolling;
if(_7b==Telerik.Web.UI.ToolTipScrolling.Auto){
return;
}
var el=this._contentElement;
if(!el){
return;
}
var _7d="";
with(Telerik.Web.UI.ToolTipScrolling){
switch(_7b){
case Auto:
_7d="auto";
break;
case None:
_7d="hidden";
break;
case X:
_7d="";
el.style.overflowX="scroll";
break;
case Y:
_7d="";
el.style.overflowY="scroll";
break;
case Both:
_7d="scroll";
}
}
var _7e=el.parentNode;
el.style.display="none";
var _7f=Telerik.Web.DomElement.getBounds(_7e).height;
el.style.height=_7f+"px";
if(!el.style.overflowX&&!el.style.overflowY){
el.style.overflow=_7d;
}
el.style.display="";
},_getLeftOffset:function(){
var _80=Telerik.Web.UI.ToolTipPosition;
if(_80.Left==this._position){
return (-1*this._targetControl.offsetWidth)+this._offsetX;
}else{
if(_80.Right==this._position){
return this._targetControl.offsetWidth+this._offsetX;
}else{
return this._offsetX;
}
}
},_getTopOffset:function(){
var _81;
var _82=Telerik.Web.UI.ToolTipPosition;
if(_82.Top==this._position){
_81=(-1*this._targetControl.offsetHeight)+this._offsetY;
}else{
if(_82.Bottom==this._position){
_81=this._targetControl.offsetHeight+this._offsetY;
}else{
_81=this._offsetY;
}
}
return _81;
},isVisible:function(){
return this._popupVisible;
},get_TargetControlID:function(){
return this._targetControlID;
},set_TargetControlID:function(_83){
if(this._targetControlID!=_83){
this._targetControlID=_83;
var _84=(this._targetControlID?$get(this._targetControlID):null);
this.set_TargetControl(_84);
}
},get_TargetControl:function(){
return this._targetControl;
},set_TargetControl:function(_85){
if(this._targetControl!=_85){
if(this._targetControl&&(this._targetControl!=_85)){
this._registerMouseHandlers(this._targetControl,false);
}
this._targetControl=_85;
if(this._targetControl){
this._registerMouseHandlers(this._targetControl,true);
if(this._popupBehavior){
this._popupBehavior.set_parentElement(this._targetControl);
}
}
}
},get_ServerTargetControlID:function(){
return this._serverTargetControlID;
},set_ServerTargetControlID:function(_86){
this._serverTargetControlID=_86;
},get_FormID:function(){
return this._formID;
},set_FormID:function(_87){
if(this._formID!=_87){
this._formID=_87;
}
},get_Position:function(){
return this._position;
},set_Position:function(_88){
if(this._position!=_88){
this._position=_88;
}
this._horizontalPosition=this._getHorizontalSide(this._position);
this._verticalPosition=this._getVerticalSide(this._position);
},get_OffsetX:function(){
return this._offsetX;
},set_OffsetX:function(_89){
if(this._offsetX!=_89){
this._offsetX=_89;
}
},get_OffsetY:function(){
return this._offsetY;
},set_OffsetY:function(_8a){
if(this._offsetY!=_8a){
this._offsetY=_8a;
}
},get_Title:function(){
return this._title;
},set_Title:function(_8b){
if(this._title!=_8b){
this._title=_8b;
}
this._refreshTitle();
},get_Text:function(){
return this._text;
},set_Text:function(_8c){
if(this._text!=_8c){
this._text=_8c;
}
},get_Width:function(){
return this._width;
},set_Width:function(_8d){
if(this._width!=_8d){
this._width=_8d;
}
},get_Height:function(){
return this._height;
},set_Height:function(_8e){
if(this._height!=_8e){
this._height=_8e;
}
},get_RelativeTo:function(){
return this._relativeTo;
},set_RelativeTo:function(_8f){
if(this._relativeTo!=_8f){
this._relativeTo=_8f;
}
},get_ContentScrolling:function(){
return this._contentScrolling;
},set_ContentScrolling:function(_90){
if(this._contentScrolling!=_90){
this._contentScrolling=_90;
}
},get_Sticky:function(){
return this._sticky;
},set_Sticky:function(_91){
if(this._sticky!=_91){
this._sticky=_91;
}
},get_ManualClose:function(){
return this._manualClose;
},set_ManualClose:function(_92){
if(this._manualClose!=_92){
this._manualClose=_92;
}
},get_ShowCallout:function(){
return this._showCallout;
},set_ShowCallout:function(_93){
if(this._showCallout!=_93){
this._showCallout=_93;
}
},get_ShowDelay:function(){
return this._showDelay;
},set_ShowDelay:function(_94){
if(this._showDelay!=_94){
this._showDelay=_94;
}
},get_AutoCloseDelay:function(){
return this._autoCloseDelay;
},set_AutoCloseDelay:function(_95){
if(this._autoCloseDelay!=_95){
this._autoCloseDelay=_95;
}
},get_HideDelay:function(){
return this._hideDelay;
},set_HideDelay:function(_96){
if(this._hideDelay!=_96){
this._hideDelay=_96;
}
},get_MouseTrailing:function(){
return this._mouseTrailing;
},set_MouseTrailing:function(_97){
if(this._mouseTrailing!=_97){
this._mouseTrailing=_97;
if(true==_97){
this.set_RelativeTo(Telerik.Web.UI.ToolTipRelativeDisplay.Mouse);
}
}
},get_Animation:function(){
return this._animation;
},set_Animation:function(_98){
if(this._animation!=_98){
this._animation=_98;
}
},get_ShowEvent:function(){
return this._showEvent;
},set_ShowEvent:function(_99){
if(this._showEvent!=_99){
this._showEvent=_99;
}
},get_Skin:function(){
return this._skin;
},set_Skin:function(_9a){
if(_9a&&this._skin!=_9a){
this._skin=_9a;
}
},get_PopupElement:function(){
return this._popupElement;
},add_BeforeShow:function(_9b){
this.get_events().addHandler("BeforeShow",_9b);
},remove_BeforeShow:function(_9c){
this.get_events().removeHandler("BeforeShow",_9c);
},add_Show:function(_9d){
this.get_events().addHandler("Show",_9d);
},remove_Show:function(_9e){
this.get_events().removeHandler("Show",_9e);
},add_BeforeHide:function(_9f){
this.get_events().addHandler("BeforeHide",_9f);
},remove_BeforeHide:function(_a0){
this.get_events().removeHandler("BeforeHide",_a0);
},add_Hide:function(_a1){
this.get_events().addHandler("Hide",_a1);
},remove_Hide:function(_a2){
this.get_events().removeHandler("Hide",_a2);
},saveClientState:function(){
var _a3=["Text","Position"];
var _a4={};
for(var i=0;i<_a3.length;i++){
_a4[_a3[i]]=this["get_"+_a3[i]]();
}
return Sys.Serialization.JavaScriptSerializer.serialize(_a4);
}};
Telerik.Web.UI.RadToolTip.registerClass("Telerik.Web.UI.RadToolTip",Telerik.Web.UI.RadWebControl);
Telerik.Web.UI.ToolTipPosition=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipPosition.prototype={TopLeft:11,TopCenter:12,TopRight:13,MiddleLeft:21,Center:22,MiddleRight:23,BottomLeft:31,BottomCenter:32,BottomRight:33};
Telerik.Web.UI.ToolTipPosition.registerEnum("Telerik.Web.UI.ToolTipPosition",false);
Telerik.Web.UI.ToolTipRelativeDisplay=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipRelativeDisplay.prototype={Mouse:0,Element:1};
Telerik.Web.UI.ToolTipRelativeDisplay.registerEnum("Telerik.Web.UI.ToolTipRelativeDisplay",false);
Telerik.Web.UI.ToolTipScrolling=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipScrolling.prototype={Auto:0,None:1,X:2,Y:3,Both:4};
Telerik.Web.UI.ToolTipScrolling.registerEnum("Telerik.Web.UI.ToolTipScrolling",false);
Telerik.Web.UI.ToolTipAnimation=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipAnimation.prototype={None:0,Resize:1,Fade:2,Slide:4,FlyIn:8};
Telerik.Web.UI.ToolTipAnimation.registerEnum("Telerik.Web.UI.ToolTipAnimation",false);
Telerik.Web.UI.ToolTipShowEvent=function(){
throw Error.invalidOperation();
};
Telerik.Web.UI.ToolTipShowEvent.prototype={OnMouseOver:1,OnClick:2,OnRightClick:4,OnFocus:8};
Telerik.Web.UI.ToolTipShowEvent.registerEnum("Telerik.Web.UI.ToolTipShowEvent",false);


if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();