﻿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;
}
if(this._popupElement){
var _2=this.get_id();
if(_2){
var _3=$get(_2);
if(_3){
_3.appendChild(this._popupElement);
}
}
}
Telerik.Web.UI.RadToolTip.callBaseMethod(this,"dispose");
},requestShow:function(){
this._resetShowDelay();
},hide:function(_4){
if(true==_4&&this._manualClose){
return false;
}
this._hide();
return true;
},clone:function(_5,_6){
if(!_5){
alert("clone error: No target element specified");
return;
}
var _7=this._getEventsParameter();
var _8=this._getPropertiesParameter();
_8["TargetControlID"]=_5.getAttribute("id");
if(!_8["TargetControlID"]){
_8["TargetControl"]=_5;
}
if(_6){
_8["Text"]=_6;
}
var _9=$create(Telerik.Web.UI.RadToolTip,_8,_7,null,document.createElement("SPAN"));
return _9;
},show:function(){
this._createUI();
if(!this._targetControl){
return;
}
var _a=new Sys.CancelEventArgs();
this.raiseEvent("BeforeShow",_a);
if(_a.get_cancel()){
return;
}
this._registerPopupHandlers(true);
this._getToolTipController().set_ActiveToolTip(this);
if(this._animation==Telerik.Web.UI.ToolTipAnimation.None){
this._show();
this._afterShow();
}else{
this._playAnimation();
}
},showLoadingMessage:function(_b){
if(_b){
var _c=document.createElement("DIV");
_c.className=this._getFullSkinName()+" LoadingSign";
this._contentCell.appendChild(_c);
}else{
this._contentCell.innerHTML="";
}
},set_ContentElement:function(_d){
this._contentCell.innerHTML="";
if(_d.parentNode&&_d.parentNode.removeChild){
_d.parentNode.removeChild(_d);
}
this._contentCell.appendChild(_d);
_d.style.display="";
this._contentElement=_d;
},get_ContentElement:function(){
return this._contentElement;
},set_Content:function(_e){
_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 _f=this;
this._autoCloseRef=window.setTimeout(function(){
_f.hide(true);
},this._autoCloseDelay);
}
},_resetShowDelay:function(){
this.cancelShowDelay();
var _10=this;
var _11=function(){
_10._getToolTipController().showTootlip(_10);
_10.cancelShowDelay();
};
this._showDelayRef=window.setTimeout(_11,this._showDelay);
},_show:function(){
var _12=null;
try{
_12=this._getCalculatedPopupBounds();
}
catch(e){
var _13=this;
window.setTimeout(function(){
_13._addToolTipToDocument();
},10);
return;
}
var x=_12.x;
var y=_12.y;
this._setPopupVisible(x,y);
this._resetAutoCloseDelay();
this._popupVisible=true;
},_hide:function(){
if(this._tooltipAnimation){
this._tooltipAnimation.stop();
}
this.cancelShowDelay();
this.cancelAutoCloseDelay();
var _16=new Sys.CancelEventArgs();
this.raiseEvent("BeforeHide",_16);
if(_16.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._fixIeHeight(this._tableElement,this._height);
this.raiseEvent("Show");
},_playAnimation:function(){
var _17=function(){
var _18=this.controller;
var _19=_18._getCalculatedPopupBounds();
_18._setPopupVisible(_19.x,_19.y);
var _1a=Telerik.Web.DomElement.getBounds(_18._popupElement);
_18._popupBehavior.hide();
this.set_EndBounds(_1a);
};
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=_17;
}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=_17;
}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=_17;
}
}
}
}
}
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,_1c){
var _1d=null;
try{
_1d=Telerik.Web.DomElement.getBounds(_1c);
}
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 _20=TelerikCommonScripts.containsPoint(_1d,x,y);
return _20;
},_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 _24=this._isMouseOverElement(e,this._targetControl);
if(!_24){
this.cancelShowDelay();
if(!this._sticky){
if(this._hideDelay>0){
var _25=this;
window.setTimeout(function(){
_25.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(_28,_29){
if(true==_29){
var _2a={};
var _2b=Telerik.Web.UI.ToolTipShowEvent;
if(this._showEvent==_2b.OnMouseOver){
_2a["mouseover"]=this._onMouseOver;
_2a["mousemove"]=this._onMouseMove;
_2a["mouseout"]=this._onMouseOut;
}
if(this._showEvent==_2b.OnClick){
_2a["click"]=this._onClick;
}
if(this._showEvent==_2b.OnRightClick){
_2a["contextmenu"]=this._onRightClick;
}
if(this._showEvent==_2b.OnFocus){
_2a["focus"]=this._onMouseOver;
_2a["blur"]=this._onMouseOut;
}
$addHandlers(_28,_2a,this);
}else{
if(_28){
$clearHandlers(_28);
}
}
},_registerPopupHandlers:function(_2c){
if(true==_2c){
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 _2e=this._isMouseOverElement(e,this._tableElement);
if(!_2e&&!this._manualClose){
this.hide();
}
},_getPropertiesParameter:function(){
if(!this._propertiesParameter){
var _2f={};
for(var _30 in Telerik.Web.UI.RadToolTip.prototype){
var _31=this[_30];
if(typeof (_31)=="function"&&_30.indexOf("get_")==0){
var _32=_30.substring(4);
if(null==this["set_"+_32]){
continue;
}
var _33=_31.call(this);
if((typeof (_33)!="boolean")&&(null==_33||""==_33)){
continue;
}
_2f[_32]=_33;
if(_32=="Skin"){
break;
}
}
}
this._propertiesParameter=_2f;
}
var _34=this._cloneObject(this._propertiesParameter);
return _34;
},_getEventsParameter:function(){
if(!this._eventsParameter){
var _35={};
var _36=this.get_events();
var _37=["BeforeShow","Show","BeforeHide","Hide"];
for(var i=0;i<_37.length;i++){
var _39=_37[i];
var _3a=_36._getEvent(_39);
if(_3a&&typeof (eval(_3a)=="function")){
_35[_39]=eval(_3a[0]);
}
}
this._eventsParameter=_35;
}
return this._eventsParameter;
},_cloneObject:function(_3b){
var _3c={};
for(var _3d in _3b){
_3c[_3d]=_3b[_3d];
}
return _3c;
},_getPosRelativeToMouse:function(){
var loc=Telerik.Web.DomElement.getLocation(this._targetControl);
var _3f=loc.x;
var _40=loc.y;
var pos=this._getMousePosition();
var _42=pos.clientX;
var _43=pos.clientY;
if(Telerik.Web.Browser.renderMode!=Telerik.Web.Browser.QuirksMode){
_3f-=document.documentElement.scrollLeft;
_40-=document.documentElement.scrollTop;
}
var _44=_42-_3f;
var _45=_43-_40;
return {x:_44,y:_45};
},_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 _4a=0;
var _4b=0;
var _4c=(this._popupElement.style.display=="none")?true:false;
var _4d=this._popupElement.style.left;
var _4e=this._popupElement.style.top;
this._popupElement.style.display="";
this._setOverflow();
var _4f=Telerik.Web.DomElement.getBounds(this._popupElement);
var _50=parseInt(TelerikCommonScripts.getCurrentStyle(this._calloutElement,"marginLeft"));
var _51=parseInt(TelerikCommonScripts.getCurrentStyle(this._calloutElement,"marginTop"));
if(isNaN(_50)){
_50=0;
}
if(isNaN(_51)){
_51=0;
}
var _52=0;
var _53=0;
if(this._calloutElement){
var _54=Telerik.Web.DomElement.getBounds(this._calloutElement);
if(_54){
if(_54.width){
_52=_54.width;
}
if(_54.height){
_53=_54.height;
}
}
}
if(_4c){
this._popupElement.style.display="none";
}
var _55=_4f.width;
var _56=_4f.height;
var _57=this._horizontalPosition;
var _58=this._verticalPosition;
var _59=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{
_4a=_59.width;
_4b=_59.height;
}
switch(_57){
case 2:
x+=-parseInt(_55/2-_4a/2);
x+=this._offsetX;
break;
case 3:
x+=_4a;
x-=_50;
x+=this._offsetX;
break;
case 1:
default:
x+=-_55;
x+=(-_52-_50);
x-=this._offsetX;
break;
}
switch(_58){
case 2:
y+=-parseInt(_56/2-_4b/2);
y+=this._offsetY;
break;
case 1:
y-=_56;
y-=_53+_51;
y-=this._offsetY;
break;
case 3:
default:
y+=_4b;
y-=_51;
y+=this._offsetY;
break;
}
var obj={};
obj.x=x;
obj.y=y;
obj.width=_4f.width;
obj.height=_4f.height;
return obj;
},_fixIeHeight:function(_5c,_5d){
if("CSS1Compat"==document.compatMode){
var _5e=(_5c.offsetHeight-parseInt(_5d));
if(_5e>0){
var _5f=(parseInt(_5c.style.height)-_5e);
if(_5f>0){
_5c.style.height=_5f+"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 _60=this.get_id();
var _61="RadToolTipWrapper_"+_60;
var _62=document.createElement("DIV");
_62.id=_61;
_62.className=this._getFullSkinName()+(this.get_ShowCallout()?" visiblecallout":"");
_62.setAttribute("unselectable","on");
this._popupElement=_62;
var _63=document.createElement("DIV");
_63.className="ToolTipCallout "+this._getCalloutPosition(this._position);
_63.innerHTML="&nbsp;";
this._calloutElement=_63;
var _64=document.createElement("TABLE");
_64.className="ToolTipWrapper";
_64.style.width=this._width;
_64.style.height=this._height;
this._tableElement=_64;
var _65=["ToolTipTopLeft","ToolTipTopCenter","ToolTipTopRight","ToolTipLeftMiddle","ToolTipContent","ToolTipRightMiddle","ToolTipBottomLeft","ToolTipBottomCenter","ToolTipBottomRight"];
var _66=0;
for(var i=1;i<=3;i++){
var _68=_64.insertRow(-1);
for(var j=1;j<=3;j++){
var _6a=_68.insertCell(-1);
_6a.innerHTML="&nbsp;";
_6a.className=_65[_66];
_66++;
}
}
var _6b=_64.rows[0].cells[1];
_6b.innerHTML="";
var _6c=document.createElement("DIV");
_6c.className="ToolTipTitlebar VisibleTitlebar";
_6c.style.display="none";
this._titleElement=_6c;
this._refreshTitle();
_6b.appendChild(_6c);
if(this._manualClose){
var _6d=document.createElement("A");
_6d.href="javascript: void(0);";
_6d.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(_6d,"click",this._closeLinkHandler);
this._closeLink=_6d;
var _6f=document.createElement("SPAN");
_6f.innerHTML="Close";
_6d.title="Close";
_6d.appendChild(_6f);
_6b.appendChild(_6d);
}
var _70=_64.rows[1].cells[1];
_70.vAlign="top";
_70.innerHTML="";
this._contentCell=_70;
var _71=this.get_Text();
if(this._targetControl&&!_71){
_71=this._targetControl.getAttribute("title");
if(_71){
this._targetControl.removeAttribute("title");
}
this._text=_71;
}
if(this._text){
this.set_Content(this._text);
}else{
var _72=null;
var _73=this.get_id();
if(_73){
_72=$get(_73);
}
if(_72&&_72.innerHTML){
var _74=this._transferNodeChildren(_72);
this.set_ContentElement(_74);
}
}
_62.appendChild(_63);
_62.appendChild(_64);
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);
}
},_transferNodeChildren:function(_75){
if(!_75){
return null;
}
var _76=_75.ownerDocument.createElement(_75.tagName);
while(_75.childNodes&&_75.childNodes.length>0){
var _77=_75.childNodes[0];
_75.removeChild(_77);
_76.appendChild(_77);
}
return _76;
},_addToolTipToDocument:function(){
var _78=document.getElementById(this._formID);
if(!_78){
_78=document.forms[0];
}
_78.appendChild(this._popupElement);
},_getParentByTagName:function(_79,_7a){
var _7b=_79;
_7a=_7a.toUpperCase();
while(_7b.tagName.toUpperCase()!=_7a){
_7b=_7b.parentNode;
if(!_7b){
break;
}
}
return _7b;
},_getFullSkinName:function(){
return "radtooltip_"+this._skin;
},_getUniqueString:function(){
return ""+(new Date()-100);
},_getCalloutPosition:function(_7c){
with(Telerik.Web.UI.ToolTipPosition){
switch(_7c){
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(_7d){
return parseInt((_7d+"").charAt(1));
},_getVerticalSide:function(_7e){
return parseInt((_7e+"").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 _81=this._contentScrolling;
if(_81==Telerik.Web.UI.ToolTipScrolling.Auto){
return;
}
var el=this._contentElement;
if(!el){
return;
}
var _83="";
with(Telerik.Web.UI.ToolTipScrolling){
switch(_81){
case Auto:
_83="auto";
break;
case None:
_83="hidden";
break;
case X:
_83="";
el.style.overflowX="scroll";
break;
case Y:
_83="";
el.style.overflowY="scroll";
break;
case Both:
_83="scroll";
}
}
var _84=el.parentNode;
el.style.display="none";
var _85=Telerik.Web.DomElement.getBounds(_84).height;
el.style.height=_85+"px";
if(!el.style.overflowX&&!el.style.overflowY){
el.style.overflow=_83;
}
el.style.display="";
},_getLeftOffset:function(){
var _86=Telerik.Web.UI.ToolTipPosition;
if(_86.Left==this._position){
return (-1*this._targetControl.offsetWidth)+this._offsetX;
}else{
if(_86.Right==this._position){
return this._targetControl.offsetWidth+this._offsetX;
}else{
return this._offsetX;
}
}
},_getTopOffset:function(){
var _87;
var _88=Telerik.Web.UI.ToolTipPosition;
if(_88.Top==this._position){
_87=(-1*this._targetControl.offsetHeight)+this._offsetY;
}else{
if(_88.Bottom==this._position){
_87=this._targetControl.offsetHeight+this._offsetY;
}else{
_87=this._offsetY;
}
}
return _87;
},isVisible:function(){
return this._popupVisible;
},get_TargetControlID:function(){
return this._targetControlID;
},set_TargetControlID:function(_89){
if(this._targetControlID!=_89){
this._targetControlID=_89;
var _8a=(this._targetControlID?$get(this._targetControlID):null);
this.set_TargetControl(_8a);
}
},get_TargetControl:function(){
return this._targetControl;
},set_TargetControl:function(_8b){
if(this._targetControl!=_8b){
if(this._targetControl&&(this._targetControl!=_8b)){
this._registerMouseHandlers(this._targetControl,false);
}
this._targetControl=_8b;
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(_8c){
this._serverTargetControlID=_8c;
},get_FormID:function(){
return this._formID;
},set_FormID:function(_8d){
if(this._formID!=_8d){
this._formID=_8d;
}
},get_Position:function(){
return this._position;
},set_Position:function(_8e){
if(this._position!=_8e){
this._position=_8e;
}
this._horizontalPosition=this._getHorizontalSide(this._position);
this._verticalPosition=this._getVerticalSide(this._position);
},get_OffsetX:function(){
return this._offsetX;
},set_OffsetX:function(_8f){
if(this._offsetX!=_8f){
this._offsetX=_8f;
}
},get_OffsetY:function(){
return this._offsetY;
},set_OffsetY:function(_90){
if(this._offsetY!=_90){
this._offsetY=_90;
}
},get_Title:function(){
return this._title;
},set_Title:function(_91){
if(this._title!=_91){
this._title=_91;
}
this._refreshTitle();
},get_Text:function(){
return this._text;
},set_Text:function(_92){
if(this._text!=_92){
this._text=_92;
}
},get_Width:function(){
return this._width;
},set_Width:function(_93){
if(this._width!=_93){
this._width=_93;
}
},get_Height:function(){
return this._height;
},set_Height:function(_94){
if(this._height!=_94){
this._height=_94;
}
},get_RelativeTo:function(){
return this._relativeTo;
},set_RelativeTo:function(_95){
if(this._relativeTo!=_95){
this._relativeTo=_95;
}
},get_ContentScrolling:function(){
return this._contentScrolling;
},set_ContentScrolling:function(_96){
if(this._contentScrolling!=_96){
this._contentScrolling=_96;
}
},get_Sticky:function(){
return this._sticky;
},set_Sticky:function(_97){
if(this._sticky!=_97){
this._sticky=_97;
}
},get_ManualClose:function(){
return this._manualClose;
},set_ManualClose:function(_98){
if(this._manualClose!=_98){
this._manualClose=_98;
}
},get_ShowCallout:function(){
return this._showCallout;
},set_ShowCallout:function(_99){
if(this._showCallout!=_99){
this._showCallout=_99;
}
},get_ShowDelay:function(){
return this._showDelay;
},set_ShowDelay:function(_9a){
if(this._showDelay!=_9a){
this._showDelay=_9a;
}
},get_AutoCloseDelay:function(){
return this._autoCloseDelay;
},set_AutoCloseDelay:function(_9b){
if(this._autoCloseDelay!=_9b){
this._autoCloseDelay=_9b;
}
},get_HideDelay:function(){
return this._hideDelay;
},set_HideDelay:function(_9c){
if(this._hideDelay!=_9c){
this._hideDelay=_9c;
}
},get_MouseTrailing:function(){
return this._mouseTrailing;
},set_MouseTrailing:function(_9d){
if(this._mouseTrailing!=_9d){
this._mouseTrailing=_9d;
if(true==_9d){
this.set_RelativeTo(Telerik.Web.UI.ToolTipRelativeDisplay.Mouse);
}
}
},get_Animation:function(){
return this._animation;
},set_Animation:function(_9e){
if(this._animation!=_9e){
this._animation=_9e;
}
},get_ShowEvent:function(){
return this._showEvent;
},set_ShowEvent:function(_9f){
if(this._showEvent!=_9f){
this._showEvent=_9f;
}
},get_Skin:function(){
return this._skin;
},set_Skin:function(_a0){
if(_a0&&this._skin!=_a0){
this._skin=_a0;
}
},get_PopupElement:function(){
return this._popupElement;
},add_BeforeShow:function(_a1){
this.get_events().addHandler("BeforeShow",_a1);
},remove_BeforeShow:function(_a2){
this.get_events().removeHandler("BeforeShow",_a2);
},add_Show:function(_a3){
this.get_events().addHandler("Show",_a3);
},remove_Show:function(_a4){
this.get_events().removeHandler("Show",_a4);
},add_BeforeHide:function(_a5){
this.get_events().addHandler("BeforeHide",_a5);
},remove_BeforeHide:function(_a6){
this.get_events().removeHandler("BeforeHide",_a6);
},add_Hide:function(_a7){
this.get_events().addHandler("Hide",_a7);
},remove_Hide:function(_a8){
this.get_events().removeHandler("Hide",_a8);
},saveClientState:function(){
var _a9=["Text","Position"];
var _aa={};
for(var i=0;i<_a9.length;i++){
_aa[_a9[i]]=this["get_"+_a9[i]]();
}
return Sys.Serialization.JavaScriptSerializer.serialize(_aa);
}};
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();