Type.registerNamespace("Telerik.Web.UI"); Telerik.Web.UI.RadWindowControllerClass=function(){ this._activeWindow=null; this._historyStack=[]; this._registerGlobalBodyEventHandlers(); }; Telerik.Web.UI.RadWindowControllerClass.prototype={getInstance:function(){ return this; },_registerGlobalBodyEventHandlers:function(){ var _1=Function.createDelegate(null,function(e){ if(e.keyCode==27){ Telerik.Web.UI.RadWindowController.hideCurrentWindowUnconditionally(); } }); $addHandler(document.body,"keydown",_1); Sys.Application.add_unload(function(){ $removeHandler(document.body,"keydown",_1); }); },hideCurrentWindowUnconditionally:function(){ if(this._activeWindow!=null){ this._activeWindow.hide(); } this._activeWindow=null; },inactivateCurrentWindow:function(){ if(this._activeWindow!=null){ this._activeWindow.setActive(false); } this._activeWindow=null; },set_activeWindow:function(_3){ if(_3==this._activeWindow){ return; } this.inactivateCurrentWindow(); this._activeWindow=_3; Array.remove(this._historyStack,_3); Array.add(this._historyStack,_3); },notifyWindowClosed:function(_4){ if(this._activeWindow==_4){ this._activeWindow=null; } Array.remove(this._historyStack,_4); this._activatePreviousWindow(); },_activatePreviousWindow:function(){ var _5=this._historyStack; var i=_5.length-1; for(;i>=0;i--){ var _7=_5[i]; if(!_7){ return; } if(_7.isCreated()&&!_7.isClosed()&&!_7.isMinimized()){ _7.setActive(true); break; }else{ Array.removeAt(_5,i); } } },get_activeWindow:function(){ return this._activeWindow; }}; Telerik.Web.UI.RadWindowControllerClass.registerClass("Telerik.Web.UI.RadWindowControllerClass",null); if(!Telerik.Web.UI.RadWindowController){ Telerik.Web.UI.RadWindowController=new Telerik.Web.UI.RadWindowControllerClass(); } Type.registerNamespace("Telerik.Web.UI"); Type.registerNamespace("Telerik.Web.UI.RadWindowUtils"); Telerik.Web.UI.RadWindowUtils.Localization={"Close":"Close","Minimize":"Minimize","Maximize":"Maximize","Reload":"Reload","PinOn":"Pin on","PinOff":"Pin off","Restore":"Restore","OK":"OK","Cancel":"Cancel","Yes":"Yes","No":"No"}; Telerik.Web.UI.RadWindow=function(_8){ Telerik.Web.UI.RadWindow.initializeBase(this,[_8]); this._eventNames=["resize","activate","dragStart","dragEnd","show","pageLoad","close","command"]; this._bodyElement=(Telerik.Web.Browser.renderMode==Telerik.Web.Browser.StandardsMode)?document.documentElement:document.body; this._openerElement=null; this._offsetElement=null; this._popupElement=null; this._tableElement=null; this._contentElement=null; this._contentCell=null; this._titleElement=null; this._titleCell=null; this._titlebarElement=null; this._statusCell=null; this._statusMessageElement=null; this._iframe=null; this._buttonsElement=null; this._buttonsArray=[]; this.isIE=(Telerik.Web.Browser.agent==Telerik.Web.Browser.InternetExplorer); this._openerElementID=null; this._offsetElementID=null; this._behaviors=Telerik.Web.UI.WindowBehaviors.Default; this._initialBehaviors=Telerik.Web.UI.WindowBehaviors.None; this._navigateUrl=null; this._left=""; this._top=""; this._formID=null; this._skin="Default"; this._title=""; this._width="300px"; this._height="300px"; this._minimizeZoneID=null; this._clientCallBackFunction=null; this._reloadOnShow=false; this._visibleOnPageLoad=false; this._destroyOnClose=false; this._visibleTitlebar=true; this._visibleStatusbar=true; this._showContentDuringLoad=true; this._modal=false; this._iconUrl=null; this._minimizeIconUrl=null; this._animation=Telerik.Web.UI.WindowAnimation.None; this._windowAnimation=null; this._onMouseDownDelegate=null; this._onClickDelegate=null; this._onTitlebarDblclickDelegate=null; this._onTitlebarClickDelegate=null; this._onWindowResizeDelegate=null; this._onIframeLoadDelegate=null; this._onChildPageUnloadDelegate=null; this._onChildPageClickDelegate=null; this._onModalShowHandler=null; this._onModalCloseHandler=null; this._loaded=false; this._isCloned=false; this._restoreRect=null; this._popupBehavior=null; this._popupVisible=false; this._windowManager; this.GetWindowManager=this.get_windowManager; this.BrowserWindow=window; this.GetContentFrame=this.get_contentFrame; this.GetLeftPosition=function(){ this.getWindowBounds().x; }; this.GetTopPosition=function(){ this.getWindowBounds().y; }; this.GetTitlebar=function(){ return this._titleCell; }; this.GetStatusbar=function(){ return this._statusCell; }; this.SetOpenerElementId=this.set_openerElementID; this.SetStatus=this.set_status; this.GetStatus=this.get_status; this.SetModal=this.set_modal; this.SetWidth=this.set_width; this.SetHeight=this.set_height; this.GetWidth=this.get_width; this.GetHeight=this.get_height; this.SetOffsetElementId=this.set_offsetElementID; this.SetTitle=this.set_title; this.MoveTo=this.moveTo; this.Center=this.center; this.SetVisible=this.setVisible; this.SetSize=this.setSize; this.Show=this.show; this.Hide=this.hide; this.GetUrl=this.get_navigateUrl; this.SetUrl=this.setUrl; this.Reload=this.reload; this.SetActive=this.setActive; this.Minimize=this.minimize; this.Restore=this.restore; this.Maximize=this.maximize; this.Close=this.close; this.TogglePin=this.togglePin; this.IsMaximized=this.isMaximized; this.IsMinimized=this.isMinimized; this.IsModal=this.isModal; this.IsClosed=this.isClosed; this.IsPinned=this.isPinned; this.IsVisible=this.isVisible; this.IsActive=this.isActive; this.IsBehaviorEnabled=this.isBehaviorEnabled; }; Telerik.Web.UI.RadWindow.prototype={_getLocalization:function(){ return Telerik.Web.UI.RadWindowUtils.Localization; },_registerIframeLoadHandler:function(_9){ if(!this._iframe){ return; } if(_9){ this._onIframeLoadDelegate=Function.createDelegate(this,this._onIframeLoad); $addHandler(this._iframe,"load",this._onIframeLoadDelegate); }else{ if(this._onIframeLoadDelegate){ $removeHandler(this._iframe,"load",this._onIframeLoadDelegate); this._onIframeLoadDelegate=null; } } },_registerWindowResizeHandler:function(_a){ if(_a){ this._onWindowResizeDelegate=Function.createDelegate(this,this._maintainMaximizedSize); $addHandler(window,"resize",this._onWindowResizeDelegate); }else{ if(this._onWindowResizeDelegate){ $removeHandler(window,"resize",this._onWindowResizeDelegate); this._onWindowResizeDelegate=null; } } },_registerOpenerElementHandler:function(_b,_c){ if(!_b){ return; } if(true==_c){ this._onClickDelegate=Function.createDelegate(this,this._onClick); $addHandler(_b,"click",this._onClickDelegate); }else{ var _d=$removeHandler(_b,"click",this._onClickDelegate); this._onClickDelegate=null; } },_registerTitlebarHandlers:function(_e){ var _f=this._titleCell; if(_e){ this._onTitlebarDblclickDelegate=Function.createDelegate(this,function(){ if(this.isMinimized()||this.isMaximized()){ this.restore(); }else{ this.maximize(); } }); this._onTitlebarClickDelegate=Function.createDelegate(this,function(){ this.setActive(true); }); $addHandler(_f,"dblclick",this._onTitlebarDblclickDelegate); $addHandler(_f,"click",this._onTitlebarClickDelegate); }else{ if(this._titleCell){ if(this._onTitlebarDblclickDelegate){ $removeHandler(_f,"dblclick",this._onTitlebarDblclickDelegate); this._onTitlebarDblclickDelegate=null; } if(this._onTitlebarClickDelegate){ $removeHandler(_f,"click",this._onTitlebarClickDelegate); this._onTitlebarClickDelegate=null; } } } },_makeModal:function(_10){ if(this._onModalShowHandler){ this.remove_show(this._onModalShowHandler); this._onModalShowHandler=null; } if(this._onModalCloseHandler){ this.remove_close(this._onModalCloseHandler); this._onModalCloseHandler=null; } if(this._modalExtender){ this._modalExtender.dispose(); this._modalExtender=null; } if(!_10){ return; } if(typeof (Telerik.Web.UI.RadWindowManager)!="undefined"&&Telerik.Web.UI.RadWindowManager.isInstanceOfType(this)){ return; } this._onModalShowHandler=function(_11){ if(!_11._modalExtender){ _11._modalExtender=new Telerik.Web.UI.ModalExtender(_11._popupElement); } _11._modalExtender.show(); _11.center(); }; this.add_show(this._onModalShowHandler); this._onModalCloseHandler=function(_12){ window.setTimeout(function(){ if(_12._modalExtender){ _12._modalExtender.hide(); } },10); }; this.add_close(this._onModalCloseHandler); },_makeResizeable:function(_13){ if(this._resizeExtender){ this._resizeExtender.dispose(); this._resizeExtender=null; } if(!_13){ return; } if(!this._popupElement){ return; } if(!this.isBehaviorEnabled(Telerik.Web.UI.WindowBehaviors.Resize)){ return; } var _14=this._tableElement.rows; var _15={nw:_14[0].cells[0],n:this._topResizer,ne:_14[0].cells[2],w:[_14[1].cells[0],_14[2].cells[0]],e:[_14[1].cells[2],_14[2].cells[2]],sw:_14[3].cells[0],s:_14[3].cells[1],se:[_14[3].cells[2],this._bottomResizer]}; this._resizeExtender=new Telerik.Web.UI.ResizeExtender(this,this._popupElement,_15,this._tableElement); },onResizeEnd:function(){ var _16=this._getCurrentBounds(); this.moveTo(_16.x,_16.y); this.raiseEvent("resize",new Sys.EventArgs()); },_setIframesVisible:function(_17){ var _18=document.getElementsByTagName("IFRAME"); for(var i=0;i<_18.length;i++){ _18[i].style.visibility=_17?"":"hidden"; } },_makeMoveable:function(_1a){ var _1b=this._titleCell; if(_1a&&this.isBehaviorEnabled(Telerik.Web.UI.WindowBehaviors.Move)){ _1b.style.cursor="move"; this._onMouseDownDelegate=Function.createDelegate(this,this._mouseDownHandler); $addHandler(_1b,"mousedown",this._onMouseDownDelegate); }else{ if(_1b&&this._onMouseDownDelegate){ _1b.style.cursor=""; $removeHandler(_1b,"mousedown",this._onMouseDownDelegate); this._onMouseDownDelegate=null; } } },_mouseDownHandler:function(e){ window._event=e; var _1d=(0>Array.indexOf(["input","button","select","textarea","label","a"],e.target.tagName.toLowerCase())); if(_1d){ this._cancelEvent(e); var _1e=this._popupElement; _1e.removeAttribute("unselectable"); this._startDragDrop(_1e); } },_startDragDrop:function(_1f){ if(this.isPinned()){ return; } var _20=$telerikCommon.getLocationWithScrollOffset(_1f); Telerik.Web.DomElement.setLocation(_1f,_20); Telerik.Web.DragDropManager.startDragDrop(this,_1f,null); },get_dragDataType:function(){ return Telerik.Web.UI.RadWindowUtils.DragDataType; },getDragData:function(_21){ return this; },get_dragMode:function(){ return Telerik.Web.DragMode.Move; },onDragStart:function(){ this._setIframesVisible(false); this.raiseEvent("dragStart",new Sys.EventArgs()); },onDrag:function(e){ },onDragEnd:function(_23){ this._setIframesVisible(true); this.raiseEvent("dragEnd",new Sys.EventArgs()); this._storeBounds(); this.setActive(true); },initialize:function(){ Telerik.Web.UI.RadWindow.callBaseMethod(this,"initialize"); if(this._visibleOnPageLoad){ this.show(); } this._registerWindowResizeHandler(true); },dispose:function(){ var _24=this.get_windowManager(); if(_24){ if(_24.get_preserveClientState()){ _24.saveWindowState(this); } if(this._destroyOnClose){ _24.removeWindow(this); } } if(this._windowAnimation){ this._windowAnimation.dispose(); } if(this._popupBehavior){ this._popupBehavior.dispose(); this._popupBehavior=null; } this._makeMoveable(false); this._makeResizeable(false); this._makeModal(false); this._registerTitlebarHandlers(false); this._registerWindowResizeHandler(false); this._registerIframeLoadHandler(false); if(this._openerElement){ this._registerOpenerElementHandler(this._openerElement,false); } this.set_behaviors(Telerik.Web.UI.WindowBehaviors.None); if(this._iframe){ this._iframe.src="javascript:'';"; } if(this._contentElement){ this._contentElement.innerHTML=""; } Telerik.Web.UI.RadWindow.callBaseMethod(this,"dispose"); },hide:function(){ this._hide(); return true; },clone:function(_25,_26){ if(!_25){ alert("Telerik.Web.UI.RadWindow.clone called without providing a name argument"); return; } var evs=(_26!=false)?this._getEventsParameter():null; var _28=this._getPropertiesParameter(); var _29=document.createElement("SPAN"); _29.setAttribute("id",_25); var wnd=$create(Telerik.Web.UI.RadWindow,_28,evs,null,_29); wnd.set_name(_25); wnd._isCloned=true; return wnd; },set_contentElement:function(_2b){ this._createUI(); if(this._iframe){ this._iframe.style.display="none"; } if(_2b.parentNode&&_2b.parentNode.removeChild){ _2b.parentNode.removeChild(_2b); } this._contentCell.appendChild(_2b); _2b.style.display=""; this._contentElement=_2b; },get_contentElement:function(){ return this._contentElement; },isCreated:function(){ return this._popupElement!=null; },show:function(){ var _2c=this.isCreated(); this._createUI(); if(this._navigateUrl&&(!_2c||this._reloadOnShow)){ this.setUrl(this._navigateUrl); } if(!_2c&&(this._initialBehaviors!=Telerik.Web.UI.WindowBehaviors.None)){ this._show(); this._afterShow(); if(this.isInitialBehaviorEnabled(Telerik.Web.UI.WindowBehaviors.Minimize)){ this.minimize(); } if(this.isInitialBehaviorEnabled(Telerik.Web.UI.WindowBehaviors.Maximize)){ this.maximize(); } if(this.isInitialBehaviorEnabled(Telerik.Web.UI.WindowBehaviors.Pin)){ this.togglePin(); } return; } if(this._animation==Telerik.Web.UI.WindowAnimation.None){ this._show(); this._afterShow(); }else{ this._playAnimation(); } },_show:function(){ this.raiseEvent("beforeShow",new Sys.EventArgs()); if(this.get_offsetElementID()&&!this._offsetElement){ var _2d=$get(this.get_offsetElementID()); if(_2d){ this._offsetElement=_2d; } } this._popupBehavior.set_parentElement(this._bodyElement); if(this._offsetElement&&!this._offsetSet){ this._popupBehavior.set_parentElement(this._offsetElement); this._offsetSet=true; } this.set_visibleTitlebar(this._visibleTitlebar); this.set_visibleStatusbar(this._visibleStatusbar); var _2e=this._getCalculatedPopupBounds(); this._setPopupVisible(_2e.x,_2e.y); this._popupBehavior.set_parentElement(this._bodyElement); this._popupVisible=true; },_hide:function(){ if(this._windowAnimation){ this._windowAnimation.stop(); } if(this._windowAnimation){ this._windowAnimation.play(true); }else{ this._afterHide(); } },_afterHide:function(){ if(!this._popupBehavior){ return; } if(this.isMaximized()){ this._restoreBounds(); } this._popupBehavior.hide(true); this._popupVisible=false; this._getWindowController().notifyWindowClosed(this); this.raiseEvent("close",new Sys.EventArgs()); },_afterShow:function(){ this.setActive(true); this._storeBounds(); this.raiseEvent("show",new Sys.EventArgs()); },_playAnimation:function(){ var _2f=function(){ var wnd=this.controller; var _31=wnd._getCalculatedPopupBounds(); wnd._setPopupVisible(_31.x,_31.y); var _32=Telerik.Web.DomElement.getBounds(wnd._popupElement); wnd._popupBehavior.hide(); this.set_endBounds(_32); }; if(!this._windowAnimation){ if(this._animation==Telerik.Web.UI.WindowAnimation.Fade){ this._windowAnimation=new Telerik.Web.UI.Animations.FadeAnimation(this,0.4,null,this._popupElement,null,this._openerElement); this._windowAnimation.onShowStart=function(){ this.controller._show(); }; }else{ if(this._animation==Telerik.Web.UI.WindowAnimation.Slide){ this._windowAnimation=new Telerik.Web.UI.Animations.SlideAnimation(this,0.2,null,this._popupElement,null,this._openerElement); this._windowAnimation.onShowStart=_2f; }else{ if(this._animation==Telerik.Web.UI.WindowAnimation.FlyIn){ this._windowAnimation=new Telerik.Web.UI.Animations.FlyInAnimation(this,null,null,this._popupElement,null,this._openerElement); this._windowAnimation.onShowStart=_2f; }else{ if(this._animation==Telerik.Web.UI.WindowAnimation.Resize){ this._windowAnimation=new Telerik.Web.UI.Animations.ResizeAnimation(this,0.2,50,this._popupElement,null,this._openerElement); this._windowAnimation.onShowStart=_2f; } } } } } if(this._windowAnimation){ this._windowAnimation.onShowEnd=function(){ this.controller._show(); this.controller._afterShow(); }; this._windowAnimation.onHideEnd=function(){ this.controller._afterHide(); }; this._windowAnimation.play(); } },_onClick:function(e){ this.show(); return this._cancelEvent(e); },_cancelEvent:function(e){ if(e){ e.returnValue=false; e.cancelBubble=true; e.preventDefault(); e.stopPropagation(); } return false; },_getWindowController:function(){ return Telerik.Web.UI.RadWindowController.getInstance(); },_getReloadOnShowUrl:function(_35){ var str="rwndrnd="+Math.random(); if(_35.indexOf("?")>-1){ str="&"+str; }else{ str="?"+str; } _35+=str; return _35; },_getPropertiesParameter:function(){ if(!this._propertiesParameter){ var _37={}; for(var _38 in Telerik.Web.UI.RadWindow.prototype){ var _39=this[_38]; if(typeof (_39)=="function"&&_38.indexOf("get_")==0){ var _3a=_38.substring(4); if(null==this["set_"+_3a]){ continue; } var _3b=_39.call(this); if((typeof (_3b)!="boolean")&&(null==_3b||""==_3b)){ continue; } _37[_3a]=_3b; if(_3a=="skin"){ break; } } } this._propertiesParameter=_37; } var _3c=this._cloneObject(this._propertiesParameter); return _3c; },_getEventsParameter:function(){ if(!this._eventsParameter){ var _3d={}; var _3e=this.get_events(); var _3f=this._eventNames; for(var i=0;i<_3f.length;i++){ var _41=_3f[i]; var _42=_3e._getEvent(_41); if(_42&&typeof (eval(_42)=="function")){ _3d[_41]=eval(_42[0]); } } this._eventsParameter=_3d; } return this._eventsParameter; },_cloneObject:function(_43){ var _44={}; for(var _45 in _43){ _44[_45]=_43[_45]; } return _44; },getWindowBounds:function(){ return this._getCalculatedPopupBounds(); },toString:function(){ return "[RadWindow for Prometheus id="+this.get_id()+"]"; },center:function(){ var _46=this._getCentralBounds(); this.moveTo(_46.x,_46.y); },moveTo:function(x,y){ x=parseInt(x); y=parseInt(y); this._setPopupVisible(x,y); this._storeBounds(); },setSize:function(_49,_4a){ this.set_width(_49); this.set_height(_4a); this._storeBounds(); },_maintainMaximizedSize:function(){ if(!this.isMaximized()){ return; } var _4b=this._popupElement; if(!_4b){ return; } var _4c=this._getViewportBounds(); _4b.style.top=_4c.scrollTop+"px"; _4b.style.left=_4c.scrollLeft+"px"; this._enablePageScrolling(false); var _4d=this._tableElement; _4c=this._getViewportBounds(); _4d.style.height=_4c.height+"px"; this._fixIeHeight(_4d,_4c.height); },_enablePageScrolling:function(_4e,_4f){ if(_4e){ document.body.style.overflow=_4f?_4f:""; document.documentElement.style.overflow=_4f?_4f:""; }else{ document.body.style.overflow="hidden"; document.documentElement.style.overflow="hidden"; } },_storeBounds:function(){ if(!this.isCreated()){ return; } var _50=this._getCurrentBounds(); if(this.isMaximized()){ return false; } if(this.isMinimized()){ if(this._restoreRect){ _50.width=this._restoreRect.width; _50.height=this._restoreRect.height; }else{ _50.width=this.get_width(); _50.height=this.get_height(); } } this._restoreRect=_50; },_restoreBounds:function(){ if(!this._restoreRect){ return; } var _51=this._restoreRect; this.setSize(_51.width,_51.height); this.moveTo(_51.x,_51.y); },_getStoredBounds:function(){ if(this._restoreRect){ return this._restoreRect; } },_getCurrentBounds:function(){ var _52=(this._popupElement.style.display=="none")?true:false; this._popupElement.style.display=""; var _53=Telerik.Web.DomElement.getBounds(this._popupElement); if(_52){ this._popupElement.style.display="none"; } return _53; },_getCentralBounds:function(){ var _54=this._getCurrentBounds(); var _55=this._getViewportBounds(); var x=parseInt((_55.width-_54.width)/2); var y=parseInt((_55.height-_54.height)/2); _54.x=x+_55.scrollLeft; _54.y=y+_55.scrollTop; return _54; },_getViewportBounds:function(){ var _58=TelerikCommonScripts.getClientBounds(); var _59=document.documentElement.scrollLeft||document.body.scrollLeft; var _5a=document.documentElement.scrollTop||document.body.scrollTop; _58.scrollLeft=_59; _58.scrollTop=_5a; return _58; },_getCalculatedPopupBounds:function(){ var _5b=this._getStoredBounds(); if(_5b){ return _5b; } var _5c=this._getCurrentBounds(); var _5d=this._offsetElement; if(!this._top&&!this._left&&!_5d){ _5c=this._getCentralBounds(); }else{ if(_5d){ _5c.y=0; _5c.x=0; }else{ var _5e=this._getViewportBounds(); _5c.x=_5e.scrollLeft; _5c.y=_5e.scrollTop; } var _5f=this._left?this._left:0; _5c.x+=_5f; var top=this._top?this._top:0; _5c.y+=top; } return _5c; },_fixIeHeight:function(_61,_62){ if("CSS1Compat"==document.compatMode){ var _63=(_61.offsetHeight-parseInt(_62)); if(_63>0){ var _64=(parseInt(_61.style.height)-_63); if(_64>0){ _61.style.height=_64+"px"; } } } },_createDefaultTable:function(){ var _65=document.createElement("TABLE"); _65.align="left"; _65.cellSpacing=0; _65.cellPadding=0; _65.insertRow(-1); return _65; },_createUI:function(){ if(!this._popupElement){ var _66=this.get_id(); var _67="RadWindowWrapper_"+_66; var _68=document.createElement("DIV"); _68.id=_67; _68.className=this._getFullSkinName(); _68.style.width=this._width; _68.style.height=this._height; _68.setAttribute("unselectable","on"); this._popupElement=_68; var _69=document.createElement("TABLE"); _69.cellSpacing=0; _69.cellPadding=0; this._tableElement=_69; var _6a=["corner topleft","titlebar","corner topright","corner bodyleft","windowcontent","corner bodyright","corner bodyleft","statusbar","corner bodyright","corner footerleft","footercenter","corner footerright"]; var _6b=["titlerow","contentrow","statusbarrow","footerrow"]; var _6c=0; for(var i=0;i<4;i++){ var row=_69.insertRow(-1); row.className=_6b[i]; for(var j=1;j<=3;j++){ var _70=row.insertCell(-1); _70.innerHTML=" "; _70.className=_6a[_6c]; _6c++; } } var _71=_69.rows[0].cells[1]; _71.innerHTML=""; this._titleCell=_71; var _72=document.createElement("DIV"); _72.className="topresize"; _72.innerHTML=""; this._topResizer=_72; this._titleCell.appendChild(this._topResizer); var _73=this._createDefaultTable(); _73.className="titlebarcontrols"; this._titlebarElement=_73; this._titleCell.appendChild(this._titlebarElement); var _74=this._getTitleIcon(); var _75=this._titlebarElement.rows[0].insertCell(-1); _75.appendChild(_74); var _76=this._getTitleElement(); var _71=this._titlebarElement.rows[0].insertCell(-1); _71.appendChild(_76); this.set_title(this._title); var _77=this._titlebarElement.rows[0].insertCell(-1); _77.noWrap=true; _77.style.whiteSpace="nowrap"; _77.appendChild(this._getTitleCommandButtonsHolder()); var _78=_69.rows[1].cells[1]; _78.vAlign="top"; _78.innerHTML=""; this._contentCell=_78; var _79=this.get_name(); var _7a=(Telerik.Web.Browser.agent==Telerik.Web.Browser.InternetExplorer)?document.createElement("