Type.registerNamespace("Telerik.Web.UI"); $telerik.toWindow=function(a){return a; }; $telerik.findWindow=$find; Telerik.Web.UI.RadWindowControllerClass=function(){this._activeWindow=null; this._historyStack=[]; this._registerGlobalBodyEventHandlers(); }; Telerik.Web.UI.RadWindowControllerClass.prototype={getInstance:function(){return this; },_registerGlobalBodyEventHandlers:function(){var a=Function.createDelegate(null,function(b){if(b.keyCode==27){Telerik.Web.UI.RadWindowController.hideCurrentWindowIfNonModal(); }}); $addHandler(document.documentElement,"keydown",a); Sys.Application.add_unload(function(){$removeHandler(document.documentElement,"keydown",a); }); },hideCurrentWindowIfNonModal:function(){if(this._activeWindow!=null&&this._activeWindow.isModal&&!this._activeWindow.isModal()){this._activeWindow.close(); }this._activeWindow=null; },inactivateCurrentWindow:function(){if(this._activeWindow!=null){this._activeWindow.setActive(false); }this._activeWindow=null; },set_activeWindow:function(a){if(a==this._activeWindow){return; }this.inactivateCurrentWindow(); this._activeWindow=a; Array.remove(this._historyStack,a); Array.add(this._historyStack,a); },notifyWindowClosed:function(a){if(this._activeWindow==a){this._activeWindow=null; }Array.remove(this._historyStack,a); this._activatePreviousWindow(); },_activatePreviousWindow:function(){var a=this._historyStack; var b=a.length-1; for(; b>=0; b--){var c=a[b]; if(!c){return; }if(c.isCreated()&&!c.isClosed()&&!c.isMinimized()){c.setActive(true); break; }else{Array.removeAt(a,b); }}},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(a){Telerik.Web.UI.RadWindow.initializeBase(this,[a]); 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._dockMode=false; this._buttonsElement=null; this._buttonsArray=[]; this.isIE=($telerik.isIE); 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=null; this._top=null; this._formID=null; this._skin="Default"; this._title=""; this._width="300px"; this._minWidth=null; this._minHeight=null; this._handlesWidth=null; this._resizeOverlayElement=null; this._height="300px"; this._opacity=100; this._minimizeZoneID=null; this._restrictionZoneID=""; this._clientCallBackFunction=null; this._reloadOnShow=false; this._visibleOnPageLoad=false; this._showOnTopWhenMaximized=true; this._destroyOnClose=false; this._visibleTitlebar=true; this._visibleStatusbar=true; this._showContentDuringLoad=true; this._modal=false; this._overlay=false; this._keepInScreenBounds=false; this._autoSize=false; this._iconUrl=null; this._minimizeIconUrl=null; this._animation=Telerik.Web.UI.WindowAnimation.None; this._animationDuration=500; 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._browserWindow=window; this._stylezindex=null; this._cssClass=""; 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; },get_stylezindex:function(){return this._stylezindex; },set_stylezindex:function(a){this._stylezindex=a; },_registerIframeLoadHandler:function(a){if(!this._iframe){return; }if(a){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; $clearHandlers(this._iframe); }}},_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,a){if(!b){return; }if(true==a){this._onClickDelegate=Function.createDelegate(this,this._onClick); $addHandler(b,"click",this._onClickDelegate); }else{var c=$removeHandler(b,"click",this._onClickDelegate); this._onClickDelegate=null; }},_registerTitlebarHandlers:function(b){var a=this._titleCell; if(b){this._onTitlebarDblclickDelegate=Function.createDelegate(this,function(){if(this.isMinimized()){this.restore(); }else{if(this.isBehaviorEnabled(Telerik.Web.UI.WindowBehaviors.Maximize)){if(this.isMaximized()){this.restore(); }else{this.maximize(); }}}}); this._onTitlebarClickDelegate=Function.createDelegate(this,function(){this.setActive(true); }); $addHandler(a,"dblclick",this._onTitlebarDblclickDelegate); $addHandler(a,"click",this._onTitlebarClickDelegate); }else{if(a){if(this._onTitlebarDblclickDelegate){$removeHandler(a,"dblclick",this._onTitlebarDblclickDelegate); this._onTitlebarDblclickDelegate=null; }if(this._onTitlebarClickDelegate){$removeHandler(a,"click",this._onTitlebarClickDelegate); this._onTitlebarClickDelegate=null; }$clearHandlers(a); }}},_makeModal:function(a){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(!a){return; }if(typeof(Telerik.Web.UI.RadWindowManager)!="undefined"&&Telerik.Web.UI.RadWindowManager.isInstanceOfType(this)){return; }this._onModalShowHandler=function(c){if(!c._modalExtender){c._modalExtender=new Telerik.Web.UI.ModalExtender(c._popupElement); }c._modalExtender.show(); var d=document.activeElement; if(d&&d.tagName.toLowerCase()!="body"){var b=(!$telerik.isDescendant(this._contentElement,d)&&this._dockMode); if(!(c._isPredefined)||b){c._focusedPageElement=d; d.blur(); }}c.center(); }; this.add_show(this._onModalShowHandler); this._onModalCloseHandler=function(b){window.setTimeout(function(){if(b._modalExtender){b._modalExtender.hide(); }var c=b._focusedPageElement; if(c){try{c.focus(); }catch(d){}b._focusedPageElement=null; }},10); }; this.add_close(this._onModalCloseHandler); },_enableMoveResize:function(b){if(this._resizeExtender){this._resizeExtender.dispose(); this._resizeExtender=null; }if(!b){return; }if(!this._popupElement){return; }var e=this._tableElement.rows; var d={}; var c=this._isWindowRightToLeft(); if(this.isBehaviorEnabled(Telerik.Web.UI.WindowBehaviors.Resize)){if(c){d={nw:e[0].cells[2],n:this._topResizer,ne:e[0].cells[0],w:[e[1].cells[2],e[2].cells[2]],e:[e[1].cells[0],e[2].cells[0]],sw:e[3].cells[2],s:e[3].cells[1],se:[e[3].cells[0],this._bottomResizer]}; }else{d={nw:e[0].cells[0],n:this._topResizer,ne:e[0].cells[2],w:[e[1].cells[0],e[2].cells[0]],e:[e[1].cells[2],e[2].cells[2]],sw:e[3].cells[0],s:e[3].cells[1],se:[e[3].cells[2],this._bottomResizer]}; }}if(this.isBehaviorEnabled(Telerik.Web.UI.WindowBehaviors.Move)){d.move=this._titleCell; }this._resizeExtender=new Telerik.Web.UI.ResizeExtender(this,this._popupElement,d,this._tableElement); var a=this._dockMode?null:this._iframe; this._resizeExtender.set_iframeToSkip(a); },_setResizeOverlayVisible:function(d){if(this._dockMode){return; }var b=this._resizeOverlayElement; if(!b){var c=this._getHandlesWidth(); var a=this._visibleTitlebar?this._tableElement.rows[0].offsetHeight:c; b=document.createElement("div"); b.style.position="absolute"; b.style.zIndex="1"; b.style.top=a+"px"; b.style.left=Math.round(c/2)+"px"; b.style.backgroundColor="White"; b.style.filter="alpha(opacity=0)"; b.style.opacity=0; this._contentCell.appendChild(b); this._resizeOverlayElement=b; }this._setResizeOverlaySize(); b.style.display=d?"":"none"; },_setResizeOverlaySize:function(){var a=this._resizeOverlayElement; if(a){var b=this._contentCell; a.style.width=b.offsetWidth+"px"; a.style.height=b.offsetHeight+"px"; }},onResizeStart:function(){if(this.isMaximized()){return false; }this.setActive(true); this._setResizeOverlayVisible(true); this._cachedDragZoneBounds=this._getRestrictionZoneBounds(); var a=new Sys.CancelEventArgs(); this.raiseEvent("resizeStart",a); if(a.get_cancel()){return false; }},onResizing:function(d){if(!this._cachedDragZoneBounds||this._checkRestrictionZoneBounds(this._cachedDragZoneBounds,d)){if(this._dockMode){this.setWidthDockMode(d.width-1); this.setHeightDockMode(d.height-1); }else{this._setResizeOverlaySize(); }var c=this.get_minWidth(); if(d.width-1){c="&"+c; }else{c="?"+c; }var a=b.indexOf("#"); b=(a>-1)?b.substr(0,a)+c+b.substr(a):b+c; return b; },getWindowBounds:function(){return this._getCalculatedPopupBounds(); },toString:function(){return"[RadWindow id="+this.get_id()+"]"; },center:function(){var a=this._getCentralBounds(); this.moveTo(a.x,a.y); },moveTo:function(b,c){var d=this._popupElement; if(d){var a=$telerik.getBounds(d); var f=this._getRestrictionZoneBounds(); if(f){var e=this._checkRestrictionZoneBounds(null,new Sys.UI.Bounds(b+f.x,c+f.y,a.width,a.height)); if(!e){return false; }}}b=parseInt(b); c=parseInt(c); this._createUI(); this._setPopupVisible(b,c); this._storeBounds(); return true; },setSize:function(a,b){this._firstShow=false; this.set_width(a); this.set_height(b); this._storeBounds(); },autoSize:function(z){if(this.isClosed()){return; }var b=this.get_contentFrame(); var a=this.get_popupElement(); var c=$telerik.getBounds(a); var i=$telerik.getBorderBox(a); c.width-=i.horizontal; c.height-=i.vertical; var x=null; var m; var f; var y=this.get_contentElement(); var g=this.get_minWidth(); var d=this._getTitleElement(); if(d){d.style.width="1px"; }if(this._dockMode&&y){y.style.height="1px"; y.style.width="1px"; Sys.UI.DomElement.addCssClass(this._contentCell,"rwLoading"); m=y.scrollHeight; var w=y.scrollWidth; f=w>g?w:g; }else{try{x=b.contentWindow.document.documentElement; if(!x){return; }}catch(h){return false; }var u=b.contentWindow.document.body; var y=x; if($telerik.isIE||$telerik.isFirefox){y=b; }y.style.width="1px"; m=x.scrollHeight; f=x.scrollWidth; if(f0){this._contentElement.style.width=widthToSet+"px"; }},setHeightDockMode:function(b){if(!this._dockMode||!this.get_contentElement()){return; }var a=b; a-=parseInt($telerik.getCurrentStyle(this._tableElement.rows[3].cells[1],"height")); if(this._visibleTitlebar){a-=parseInt($telerik.getCurrentStyle(this._titlebarElement,"height")); a-=parseInt($telerik.getCurrentStyle(this._topResizer,"height")); }else{a-=parseInt($telerik.getCurrentStyle(this._tableElement.rows[0].cells[1],"height")); }if(this._visibleStatusbar){a-=parseInt($telerik.getCurrentStyle(this._tableElement.rows[2].cells[1],"height")); }if(a>0){this._contentElement.style.height=a+"px"; }},calcPosition:function(a,b,c,e){var d=a+Math.round((b-c)/2); if(d<0||d+b>e){d=Math.round(Math.abs((e-c)/2)); }return d; },_maintainMaximizedSize:function(){if(!this.isMaximized()){return; }var c=this._popupElement; if(!c){return; }var f=this._getViewportBounds(); c.style.top=(f.scrollTop+f.y)+"px"; c.style.left=(f.scrollLeft+f.x)+"px"; $telerik.setSize(c,{width:f.width,height:f.height}); var g=this._getRestrictionZoneBounds(); if(!g){this._enablePageScrolling(false); }var a=this._tableElement; f=$telerik.getContentSize(c); var e=$telerik.getBorderBox(a); var b=$telerik.getPaddingBox(a); var d=f.height-e.vertical-b.vertical; a.style.height=d+"px"; this._fixIeHeight(a,d); if(this._dockMode){this.setWidthDockMode(f.width); this.setHeightDockMode(f.height); }},_enablePageScrolling:function(a){var b=document.body; var c=document.documentElement; if(a){if(null!=this._documentOverflow){c.style.overflow=this._documentOverflow; }if(null!=this._bodyOverflow){b.style.overflow=this._bodyOverflow; }this._documentOverflow=null; this._bodyOverflow=null; }else{if(null==this._documentOverflow){this._documentOverflow=c.style.overflow; }if(null==this._bodyOverflow){this._bodyOverflow=b.style.overflow; }b.style.overflow="hidden"; c.style.overflow="hidden"; }},_getRestrictionZoneBounds:function(){var b=null; if(this.get_restrictionZoneID()){var a=$get(this.get_restrictionZoneID()); if(a){b=$telerik.getBounds(a); b.scrollLeft=0; b.scrollTop=0; }}return b; },_storeBounds:function(){if(!this.isCreated()){return; }var a=this._getCurrentBounds(); if(this.isMaximized()){return false; }if(this.isMinimized()){if(this._restoreRect){a.width=this._restoreRect.width; a.height=this._restoreRect.height; }else{a.width=this.get_width(); a.height=this.get_height(); }}this._restoreRect=a; },_restoreBounds:function(){if(!this._restoreRect){return; }var a=this._restoreRect; this.setSize(a.width,a.height); this.moveTo(a.x,a.y); },_getStoredBounds:function(){if(this._restoreRect){return this._restoreRect; }},_deleteStoredBounds:function(){this._restoreRect=null; },_getCurrentBounds:function(){var a=(this._popupElement.style.display=="none")?true:false; this._popupElement.style.display=""; if(this._firstShow!=true){this._updateWindowSize(this._height); this._firstShow=true; }var c=$telerik.getBounds(this._popupElement); if(a){this._popupElement.style.display="none"; }var b=this._getRestrictionZoneBounds(); if(b){c.x-=b.x; c.y-=b.y; }return c; },_getCentralBounds:function(){var d=this._getCurrentBounds(); var a=this._getViewportBounds(); var c=parseInt((a.width-d.width)/2); var b=parseInt((a.height-d.height)/2); d.x=c+a.scrollLeft; d.y=b+a.scrollTop; return d; },_getViewportBounds:function(){var b=this._getRestrictionZoneBounds(); if(b){return b; }var d=$telerik.getClientBounds(); var a=$telerik.getCorrectScrollLeft(document.documentElement)||$telerik.getCorrectScrollLeft(document.body); var c=document.documentElement.scrollTop||document.body.scrollTop; d.scrollLeft=a; d.scrollTop=c; if(this.isIE){if(d.width==0){d.width=document.body.clientWidth; }if(d.height==0){d.height=document.body.clientHeight; }}return d; },_getCalculatedPopupBounds:function(){var e=this._getStoredBounds(); if(e){return e; }var a=this._getCurrentBounds(); var b=this._offsetElement; if(this._top==null&&this._left==null&&!b){a=this._getCentralBounds(); }else{if(b){a.y=0; a.x=0; }else{var f=this._getViewportBounds(); a.x=f.scrollLeft; a.y=f.scrollTop; }var c=this._left?this._left:0; a.x+=c; var d=this._top?this._top:0; a.y+=d; }return a; },_checkRestrictionZoneBounds:function(a,c){var b=a; if(!b){b=this._getRestrictionZoneBounds(); if(!b){return true; }}return Telerik.Web.UI.ResizeExtender.containsBounds(b,c); },_reSetWindowPosition:function(){var a=this._getCalculatedPopupBounds(); this._setPopupVisible(a.x,a.y); },_fixIeHeight:function(b,a){if("CSS1Compat"==document.compatMode){var c=(b.offsetHeight-parseInt(a)); if(c>0){var d=(parseInt(b.style.height)-c); if(d>0){b.style.height=d+"px"; }}}},_setPopupVisible:function(b,c){var a=this._getRestrictionZoneBounds(); if(a){b+=a.x; c+=a.y; }this._popupBehavior._setCoordinates(b,c); this._popupBehavior.show(); if(!this.get_width()){this._popupElement.style.width=""; }this._updateTitleWidth(); },_createDefaultTable:function(){var a=document.createElement("table"); a.align="left"; a.cellSpacing=0; a.cellPadding=0; a.insertRow(-1); return a; },_isWindowRightToLeft:function(){var a=this._isRightToLeft; if(a==null){var b=this.get_element(); var c=b.parentNode?b:this._getDefaultParent(); a=this._isRightToLeft=$telerik.isRightToLeft(c); }return a; },_createStatusbarResizer:function(b){var a=b.rows[0].insertCell(-1); a.style.width="15px"; var c=document.createElement("div"); a.appendChild(c); this._bottomResizer=c; },_createStatusbarMessageCell:function(a){var b=a.rows[0].insertCell(-1); b.style.width="100%"; var c=this._getStatusMessageElement(); b.appendChild(c); },_createUI:function(){if(!this._popupElement){var w=this.get_id(); var o="RadWindowWrapper_"+w; var x=this._isWindowRightToLeft(); var n=document.createElement("div"); n.id=o; n.className=this._getFullSkinName(); var e=this.get_cssClass(); if(e){Sys.UI.DomElement.addCssClass(n,e); }if(x){Sys.UI.DomElement.addCssClass(n,"RadWindow_rtl"); }if(!this._visibleTitlebar){Sys.UI.DomElement.addCssClass(n,"rwNoTitleBar"); }n.style.width=this._width; n.style.height=this._height; n.setAttribute("unselectable","on"); this._popupElement=n; var f=document.createElement("table"); f.cellSpacing=0; f.cellPadding=0; Sys.UI.DomElement.addCssClass(f,"rwTable"); this._tableElement=f; var d=[]; if(x){d=["rwCorner rwTopRight","rwTitlebar","rwCorner rwTopLeft","rwCorner rwBodyRight","rwWindowContent","rwCorner rwBodyLeft","rwCorner rwBodyRight","rwStatusbar","rwCorner rwBodyLeft","rwCorner rwFooterRight","rwFooterCenter","rwCorner rwFooterLeft"]; }else{d=["rwCorner rwTopLeft","rwTitlebar","rwCorner rwTopRight","rwCorner rwBodyLeft","rwWindowContent","rwCorner rwBodyRight","rwCorner rwBodyLeft","rwStatusbar","rwCorner rwBodyRight","rwCorner rwFooterLeft","rwFooterCenter","rwCorner rwFooterRight"]; }var u=["rwTitleRow","rwContentRow","rwStatusbarRow","rwFooterRow"]; var t=0; for(var r=0; r<4; r++){var l=f.insertRow(-1); l.className=u[r]; for(var s=1; s<=3; s++){var A=l.insertCell(-1); A.innerHTML=" "; A.className=d[t]; t++; }}var p=f.rows[0].cells[1]; p.innerHTML=""; this._titleCell=p; var c=document.createElement("div"); c.className="rwTopResize"; c.innerHTML=""; this._topResizer=c; this._titleCell.appendChild(this._topResizer); var q=this._createDefaultTable(); q.className="rwTitlebarControls"; this._titlebarElement=q; this._titleCell.appendChild(this._titlebarElement); var b=this._getTitleIcon(); var h=this._titlebarElement.rows[0].insertCell(-1); h.appendChild(b); var v=this._getTitleElement(); var p=this._titlebarElement.rows[0].insertCell(-1); p.appendChild(v); this.set_title(this._title); var y=this._titlebarElement.rows[0].insertCell(-1); y.noWrap=true; y.style.whiteSpace="nowrap"; y.appendChild(this._getTitleCommandButtonsHolder()); var k=f.rows[1].cells[1]; k.vAlign="top"; k.innerHTML=""; this._contentCell=k; if(!(this._dockMode||this._isPredefined)){Sys.UI.DomElement.addCssClass(this._contentCell,"rwExternalContent"); }var a=this.get_name(); var z=this._createDefaultTable(); z.style.width="100%"; this._statusCell=f.rows[2].cells[1]; this._statusCell.innerHTML=""; this._statusCell.appendChild(z); if(x){this._createStatusbarResizer(z); this._createStatusbarMessageCell(z); }else{this._createStatusbarMessageCell(z); this._createStatusbarResizer(z); }this._popupElement.appendChild(this._tableElement); this._popupElement.style.display="none"; this._popupElement.style.position="absolute"; this._addWindowToDocument(); this._registerTitlebarHandlers(true); this.set_visibleTitlebar(this._visibleTitlebar); this.set_visibleStatusbar(this._visibleStatusbar); if(this._dockMode){var g=$get(this.get_id()+"_C"); if(g&&g.innerHTML){g.style.overflow="auto"; g.style.border="0px"; this.set_contentElement(g); this.setWidthDockMode(this.get_width()); this.setHeightDockMode(this.get_height()); }}else{var m=($telerik.isIE)?document.createElement("