Type.registerNamespace("USAirways.Web.Shared.UI.Controls");USAirways.Web.Shared.UI.Controls.PopOverBehavior=function(a){USAirways.Web.Shared.UI.Controls.PopOverBehavior.initializeBase(this,[a]);this._objPopover=null;this._updatePanelID=null;this._offsetX=null;this._offsetY=null;this._pageRequestManager=null;this._calloutWidth=15;this._positionElementID=null;this._timerID=null;this._origeltid=null;this._shown=false;this._pageEndRequestHandler=null;this._windowResizeHandler=null;this._bodyClickHandler=null;this._updatePanelClickHandler=null;this._hideOnEsc=true;this._top=0;this._left=0;this._objPopover=new function(){this.elt=null;this.position="absolute";this.divShadow=null;this.tblCallout=null;this.IframeIE6=null;this.ModalBackground=null;this.divModal=null}};USAirways.Web.Shared.UI.Controls.PopOverBehavior.prototype={initialize:function(){USAirways.Web.Shared.UI.Controls.PopOverBehavior.callBaseMethod(this,"initialize");this._objPopover.elt=this.get_element();this._addHandlers();var a=elt.parentNode;if(a){if(a.style.display=="none"){a.style.display="inline"}if(a.style.visibility=="hidden"){a.style.visibility=""}}if(this._showAfterPostBack&&this._loadVisible){this.show()}else{this.hide()}},dispose:function(){this._clearHandlers();this._hoverCloseHandlers();USAirways.Web.Shared.UI.Controls.PopOverBehavior.callBaseMethod(this,"dispose")},positionPopover:function(){var d=this._objPopover.elt;this._objPopover.divShadow=(this._showDropShadow)?this._initializeShadowDiv():null;this._objPopover.tblCallout=(this._iCallOutDisplay())?this._initializeCalloutTable():null;this._objPopover.IframeIE6=(this._iframeRequiredIE6())?this._initializeIframeIE6():null;this._objPopover.ModalBackground=(this._iModalDisplay())?this._initializeModalBackground():null;d.style.position=this._objPopover.position;d.style.zIndex=this._calloutZindex;var c=this._positionEltLocation();var a=c.x;var h=c.y;this._top=h;this._left=a;Sys.UI.DomElement.setLocation(d,a,h);var f=this._getbounds(d);var g=f.width;var e=f.height;if(this._objPopover.divShadow!=null){if(this._horizontalAlign==USAirways.Web.Shared.UI.Controls.HorizontalAlign.Left){Sys.UI.DomElement.setLocation(this._objPopover.divShadow,a-3,h+3)}else{Sys.UI.DomElement.setLocation(this._objPopover.divShadow,a+3,h+3)}this._setVisible(this._objPopover.divShadow,true);this._objPopover.divShadow.style.width=g+"px";this._objPopover.divShadow.style.height=e+"px"}if(this._objPopover.tblCallout!=null){if(this._horizontalAlign==USAirways.Web.Shared.UI.Controls.HorizontalAlign.PopupLeft||this._horizontalAlign==USAirways.Web.Shared.UI.Controls.HorizontalAlign.PopupRight){Sys.UI.DomElement.setLocation(this._objPopover.tblCallout,a+g,h)}else{Sys.UI.DomElement.setLocation(this._objPopover.tblCallout,a-this._calloutWidth,h)}this._setVisible(this._objPopover.tblCallout,true)}if(this._objPopover.IframeIE6!=null){if(this._objPopover.divShadow==null){if(this._horizontalAlign==USAirways.Web.Shared.UI.Controls.HorizontalAlign.Left){Sys.UI.DomElement.setLocation(this._objPopover.IframeIE6,a-3,h)}else{Sys.UI.DomElement.setLocation(this._objPopover.IframeIE6,a+3,h)}this._objPopover.IframeIE6.style.width=g+6+"px";this._objPopover.IframeIE6.style.height=e+3+"px"}else{Sys.UI.DomElement.setLocation(IframeIE6,a,h);this._objPopover.IframeIE6.style.width=g+3+"px";this._objPopover.IframeIE6.style.height=e+3+"px"}this._setVisible(this._objPopover.IframeIE6,true)}if(this._objPopover.ModalBackground!=null){Sys.UI.DomElement.setLocation(this._objPopover.ModalBackground,0,0);this._objPopover.ModalBackground.style.width=this.documentWidth()+"px";this._objPopover.ModalBackground.style.height=this.documentHeight()+"px";if(this._objPopover.divModal==null){var b=document.createElement("div");b.innerHTML="&nbsp;";b.style.zIndex=this._calloutZindex-5;b.style.position="absolute";b.style.display="none";b.style.border="none";d.parentNode.insertBefore(b,d);this._objPopover.divModal=b}Sys.UI.DomElement.setLocation(this._objPopover.divModal,0,0);this._objPopover.divModal.className=this._modalBackgroundCSS;this._objPopover.divModal.style.width=this._objPopover.ModalBackground.style.width;this._objPopover.divModal.style.height=this._objPopover.ModalBackground.style.height;this._setVisible(this._objPopover.ModalBackground,true);this._setVisible(this._objPopover.divModal,true)}},show:function(){if(this._preDisplayScript!==null&&this._preDisplayScript!==undefined){eval(this._preDisplayScript)}if(this._blockHover&&this._iHoverDisplay()){return}if(!this._positionElementExists()){alert("Error Code: 100: No popover postioning element exists. Method: Show()");return}var elt=this._objPopover.elt;if(elt==null||elt==undefined){elt=this._objPopover.elt=this.get_element()}this._setVisible(elt,true);this._loadVisible=true;this.positionPopover();this._shown=true;if(this._postDisplayScript!==null&&this._postDisplayScript!==undefined){eval(this._postDisplayScript)}this._objPopover.elt=elt},hide:function(){var a=this._objPopover.elt;this._setVisible(a,false);this._loadVisible=false;if(this._objPopover.divShadow!=null){this._setVisible(this._objPopover.divShadow,false)}if(this._objPopover.tblCallout!=null){this._setVisible(this._objPopover.tblCallout,false)}if(this._objPopover.IframeIE6!=null){this._setVisible(this._objPopover.IframeIE6,false)}if(this._objPopover.ModalBackground!=null){this._setVisible(this._objPopover.ModalBackground,false)}if(this._objPopover.divModal!=null){this._setVisible(this._objPopover.divModal,false)}this._objPopover.divShadow=null;this._objPopover.tblCallout=null;this._objPopover.IframeIE6=null;this._objPopover.ModalBackground=null;this._objPopover.divModal=null;this.fireClosed()},add_closed:function(a){this.get_events().addHandler("closed",a)},remove_closed:function(a){this.get_events().removeHandler("closed",a)},fireClosed:function(){var a=this.get_events().getHandler("closed");if(a){a(this,Sys.EventArgs.Empty)}},windowHeight:function(){var a=0;try{return $(window).height()}catch(b){return 768}},windowWidth:function(){try{return $(window).width()}catch(a){return 1024}},documentHeight:function(){try{return $(document).height()}catch(a){return 768}},documentWidth:function(){try{return $(document).width()}catch(a){return 1024}},windowScrollLeft:function(){try{return $(window).scrollLeft()}catch(a){}return 0},windowScrollTop:function(){try{return $(window).scrollTop()}catch(a){}return 0},_createboundsobject:function(){var a=new Object();a.left=0;a.top=0;a.width=0;a.height=0;a.rightx=0;a.bottomy=0;return a},_getbounds:function(b){var c=this._createboundsobject();try{var f=$("#"+b.id).position();var a=$("#"+b.id).offset({border:true,padding:true});c.left=c.x=parseInt((f.left>=a.left?f.left:a.left));c.top=c.y=parseInt((f.top>=a.top?f.top:a.top));c.width=parseInt($("#"+b.id).outerWidth());c.height=parseInt($("#"+b.id).outerHeight());c.rightx=c.left+c.width;c.bottomy=c.top+c.height}catch(d){}return c},_onHover:function(){this.show()},_onUnhover:function(){this.hide()},_addHandlers:function(){this._pageRequestManager=Sys.WebForms.PageRequestManager.getInstance();elt=this._objPopover.elt;this._pageEndRequestHandler=Function.createDelegate(this,this._onEndRequest);this._pageRequestManager.add_pageLoaded(this._pageEndRequestHandler);this._pageInitRequestHandler=Function.createDelegate(this,this._onInitRequest);this._pageRequestManager.add_initializeRequest(this._pageInitRequestHandler);this._updatePanelClickHandler=Function.createDelegate(this,this._onClick);$addHandler(elt,"click",this._updatePanelClickHandler);this._updatePanelKeyPressHandler=Function.createDelegate(this,this._onKeyPress);$addHandler(elt,"keypress",this._updatePanelKeyPressHandler);this._windowResizeHandler=Function.createDelegate(this,this._onWindowResize);$addHandler(window,"resize",this._windowResizeHandler);this._bodyClickHandler=Function.createDelegate(this,this._onBodyClick);$addHandler(document,"click",this._bodyClickHandler);if(this._iHoverDisplay()){this._hoverHandlers()}this._postBackDelegate=Function.createDelegate(this,this._doPostBack)},_hoverHandlers:function(){this._hoverCloseHandlers();var a=$get(this._positionElementID);this._hoverHandler=Function.createDelegate(this,this._onHover);$addHandler(a,"mouseover",this._hoverHandler);$addHandler(a,"focus",this._hoverHandler);this._unhoverHandler=Function.createDelegate(this,this._onUnhover);$addHandler(a,"mouseout",this._unhoverHandler);$addHandler(a,"blur",this._unhoverHandler)},_hoverCloseHandlers:function(){try{var b=$get(this._positionElementID);if(this._hoverHandler){$removeHandler(b,"mouseover",this._hoverHandler);$removeHandler(b,"focus",this._hoverHandler);this._hoverHandler=null}if(this._unhoverHandler){$removeHandler(b,"mouseout",this._unhoverHandler);$removeHandler(b,"blur",this._unhoverHandler);this._unhoverHandler=null}}catch(a){}},_clearHandlers:function(){elt=this._objPopover.elt;try{if(this._pageRequestManager){if(this._pageEndRequestHandler){this._pageRequestManager.remove_pageLoaded(this._onEndRequest);this._pageEndRequestHandler=null;this._pageRequestManager.remove_initializeRequest(this._onInitRequest);this._pageInitRequestHandler=null}this._pageRequestManager=null}}catch(a){}try{if(this._updatePanelClickHandler){$removeHandler(elt,"click",this._updatePanelClickHandler);this._updatePanelClickHandler=null}}catch(a){}try{if(this._updatePanelKeyPressHandler){$removeHandler(elt,"keypress",this._updatePanelKeyPressHandler);this._updatePanelKeyPressHandler=null}}catch(a){}try{if(this._windowResizeHandler){$removeHandler(window,"resize",this._windowResizeHandler);this._windowResizeHandler=null}}catch(a){}try{if(this._bodyClickHandler){$removeHandler(document,"click",this._bodyClickHandler);this._bodyClickHandler=null}}catch(a){}this._postBackDelegate=null},_positionEltLocation:function(){var g=$get(this._positionElementID);elt=this._objPopover.elt;var d=this._getbounds(elt);var b=this._getbounds(g);var e;if(this._parentContainerID!=null&&this._parentContainerID!=undefined){var c=$get(this._parentContainerID);if(c!=null){e=this._getbounds(c);b.x=b.x-e.x;b.y=b.y-e.y}}var a=0;var h=0;if(this._useOffsetPositionOnly){a=this._offsetX;h=this._offsetY}else{switch(this._horizontalAlign){case USAirways.Web.Shared.UI.Controls.HorizontalAlign.Left:a=b.x-this._offsetX;if(this._iCallOutDisplay()){a+=this._calloutWidth}break;case USAirways.Web.Shared.UI.Controls.HorizontalAlign.Center:a=b.x+this._offsetX;a+=parseInt(b.width/2);if(this._iCallOutDisplay()){a+=this._calloutWidth}break;case USAirways.Web.Shared.UI.Controls.HorizontalAlign.Right:a=b.x+this._offsetX+b.width;if(this._iCallOutDisplay()){a+=this._calloutWidth}break;case USAirways.Web.Shared.UI.Controls.HorizontalAlign.CenterScreen:a=this._offsetX+(parseInt((this.windowWidth()/2))-parseInt((d.width/2)));if(this._iCallOutDisplay()){a+=this._calloutWidth}a+=this.windowScrollLeft();if(a<0){a=0}break;case USAirways.Web.Shared.UI.Controls.HorizontalAlign.CenterPage:a=this._offsetX+(parseInt((this.documentWidth()/2))-parseInt((d.width/2)));if(this._iCallOutDisplay()){a+=this._calloutWidth}break;case USAirways.Web.Shared.UI.Controls.HorizontalAlign.PopupLeft:a=b.x-this._offsetX;a-=d.width;if(this._iCallOutDisplay()){a-=this._calloutWidth}break;case USAirways.Web.Shared.UI.Controls.HorizontalAlign.PopupRight:a=b.x-this._offsetX;a-=d.width;a+=b.width;if(this._iCallOutDisplay()){a-=this._calloutWidth}break}h=b.y+this._offsetY;switch(this._verticalAlign){case USAirways.Web.Shared.UI.Controls.VerticalAlign.Middle:h+=parseInt(b.height/2);break;case USAirways.Web.Shared.UI.Controls.VerticalAlign.Top:break;case USAirways.Web.Shared.UI.Controls.VerticalAlign.Bottom:h+=b.height;break;case USAirways.Web.Shared.UI.Controls.VerticalAlign.MiddleScreen:h=this._offsetY+(parseInt((this.windowHeight()/2))-parseInt((d.height/2)));h+=this.windowScrollTop();if(h<0){h=0}break;case USAirways.Web.Shared.UI.Controls.VerticalAlign.MiddlePage:h=this._offsetY+(parseInt((this.documentHeight()/2))-parseInt((d.height/2)));break;case USAirways.Web.Shared.UI.Controls.VerticalAlign.Above:h-=d.height;break}}if(this._keepInView){var f=this._checkforinview(e,d,a,h);if(f.x>0){a-=f.x}if(f.y>0){h-=f.y}}return new Sys.UI.Point(a,h)},_checkforinview:function(d,c,o,n){var p=0;var f=0;var k=this.windowWidth();var e=this.windowHeight();var b=0;var a=0;var j=0;var g=0;var m=(o+c.width);var l=(n+c.height);if(this._parentContainerID!=null&&this._parentContainerID!=undefined){p=d.width;f=d.height;if(p>k){p=k}if(f>e){f=e}b=p+d.x;a=f+d.y;m+=d.x;l+=d.y}else{p=k;f=e;b=p;a=f}b+=this.windowScrollLeft();a+=this.windowScrollTop();if(m>b){j=(m-b+15)}if(l>a){g=(l-a+20)}if(o<0){j=(o+15)}if(n<0){g=(n+20)}return new Sys.UI.Point(j,g)},_positionElementExists:function(){if(this._positionElementID){var a=$get(this._positionElementID);if(a!=null){return true}}return false},_isInsideUpdatePanel:function(a){while(a){if(a.id&&a.id===this.get_element().id){return true}a=a.parentNode}return false},_iCallOutDisplay:function(){return(this._calloutType!==USAirways.Web.Shared.UI.Controls.CalloutType.None)},_iModalDisplay:function(){return(this._displayType===USAirways.Web.Shared.UI.Controls.DisplayTypes.Modal)},_iHoverDisplay:function(){return(this._displayType===USAirways.Web.Shared.UI.Controls.DisplayTypes.Hover)},_iframeRequiredIE6:function(){return((Sys.Browser.agent===Sys.Browser.InternetExplorer)&&(Sys.Browser.version<7))},_updatePanelVisible:function(){return this._getVisible(this.get_element())},_initializeShadowDiv:function(){var a=this._objPopover.divShadow;if(a==null){a=document.createElement("div");a.innerHTML="&nbsp;";a.style.zIndex=this._calloutZindex-1;a.style.position="absolute";a.style.display="none";a.style.backgroundColor=(this._calloutDropShadowColor)?this._calloutDropShadowColor:"#999999";a.style.opacity=0.5;a.style.MozOpacity=0.5;a.style.KhtmlOpacity=0.5;a.style.filter="alpha(opacity=50)";a.id=this._objPopover.elt.id+"_divshadow";this._objPopover.elt.parentNode.insertBefore(a,this._objPopover.elt)}return a},_initializeIframeIE6:function(){var a=this._objPopover.IframeIE6;if(a==null){a=document.createElement("iframe");a.style.zIndex=this._calloutZindex-3;a.src="javascript:false";a.style.position="absolute";a.style.display="none";a.style.margin="0px";a.style.padding="0px";a.style.opacity=0;a.style.MozOpacity=0;a.style.KhtmlOpacity=0;a.style.filter="alpha(opacity=0)";a.style.border="none";a.id=this._objPopover.elt.id+"_iframeIE6";this._objPopover.elt.parentNode.insertBefore(a,this._objPopover.elt)}return a},_initializeModalBackground:function(){var a=this._objPopover.ModalBackground;if(a==null){if(this._iframeRequiredIE6()){a=document.createElement("iframe");a.src="javascript:false"}else{a=document.createElement("div")}a.style.zIndex=this._calloutZindex-7;a.style.position="absolute";a.style.display="none";a.style.margin="0px";a.style.padding="0px";a.style.opacity=0;a.style.MozOpacity=0;a.style.KhtmlOpacity=0;a.style.filter="alpha(opacity=0)";a.style.border="none";a.id=this._objPopover.elt.id+"_ModalBackground";this._objPopover.elt.parentNode.insertBefore(a,this._objPopover.elt)}return a},_initializeCalloutTable:function(){var c=this._objPopover.tblCallout;if(c==null){var h=document.createElement("table");var b=document.createElement("tbody");h.style.position="absolute";h.style.display="none";h.border="0px";h.cellPadding="0px";h.cellSpacing="0px";h.style.zIndex=this._calloutZindex+10;if(this._horizontalAlign==USAirways.Web.Shared.UI.Controls.HorizontalAlign.PopupLeft||this._horizontalAlign==USAirways.Web.Shared.UI.Controls.HorizontalAlign.PopupRight){for(var f=0;f<this._calloutWidth;f++){var g=document.createElement("tr");for(var e=this._calloutWidth;e>0;e--){var a=document.createElement("td");if(e>f-1){a.style.backgroundColor=(this._calloutDropShadowColor)?this._calloutDropShadowColor:"#999999";var d=(1-e/this._calloutWidth);if(this._calloutType===USAirways.Web.Shared.UI.Controls.CalloutType.TransparentGradient){a.style.filter="alpha(opacity="+d*100+")";a.style.opacity=d;a.style.MozOpacity=d;a.style.KhtmlOpacity=d;a.style.MozOpacity=d}}if((e==f)||(f==0)){a.style.backgroundColor=(this._calloutBorderColor)?this._calloutBorderColor:this._calloutColor}a.style.width="1px";a.style.height="1px";g.appendChild(a)}b.appendChild(g)}}else{for(var f=0;f<this._calloutWidth;f++){var g=document.createElement("tr");for(var e=0;e<this._calloutWidth;e++){var a=document.createElement("td");if(e>f-1){a.style.backgroundColor=(this._calloutDropShadowColor)?this._calloutDropShadowColor:"#999999";var d=(1-e/this._calloutWidth);if(this._calloutType===USAirways.Web.Shared.UI.Controls.CalloutType.TransparentGradient){a.style.filter="alpha(opacity="+d*100+")";a.style.opacity=d;a.style.MozOpacity=d;a.style.KhtmlOpacity=d;a.style.MozOpacity=d}}if((e==f)||(f==0)){a.style.backgroundColor=(this._calloutBorderColor)?this._calloutBorderColor:this._calloutColor}a.style.width="1px";a.style.height="1px";g.appendChild(a)}b.appendChild(g)}}h.appendChild(b);c=h;this._objPopover.elt.parentNode.insertBefore(c,this._objPopover.elt)}return c},_getVisible:function(a){try{return(a.style.display!=="none")}catch(b){return false}},_setVisible:function(a,b){if(b){a.style.display=""}else{a.style.display="none"}},_doPostBack:function(){if(this.get_fireCloseEvent()){var a=Sys.WebForms.PageRequestManager.getInstance();a.abortPostBack();__doPostBack(this.get_uniqueID(),"")}this.hide()},_onInitRequest:function(c,a){var b=a.get_postBackElement();if(this._updatePanelVisible()&&this.get_fireCloseEvent()){if(this.get_clientID()!==b.id){if(!this._isInsideUpdatePanel(b)){a.set_cancel(true)}}}},_onEndRequest:function(e,b){var d=this.get_element();if(!d){return}if(this._iHoverDisplay()){this._hoverHandlers()}var c=b.get_dataItems()[this.get_clientID()];if(c!==undefined){if(typeof(c)==="object"){this._positionElementID=c[0].Value;if(c[1].Value){this.show()}else{this.hide()}}}else{if(this._updatePanelVisible()){var a=b.get_panelsUpdated();for(i=0;i<a.length;i++){if(a[i].id===d.id){this.show()}}}}if(this._timerID){window.clearTimeout(this._timerID);this._timerID=null}},_onBodyClick:function(b){if(this._updatePanelVisible()){var a=b.target?b.target:b.srcElement;if(!this._isInsideUpdatePanel(a)){if(this.get_fireCloseEvent()){this._timerID=window.setTimeout(this._postBackDelegate,50)}else{if(this._hideOnBlur&&!this._shown){this.hide()}this._shown=false}}}},_onWindowResize:function(){if(this._updatePanelVisible()){this.show()}},_onKeyPress:function(a){try{if(a.charCode==27){if(this._hideOnEsc==true){this.hide()}else{a.cancel=true;a.cancelBubble=true;a.returnValue=false;a.stopPropagation();a.preventDefault();return false}}}catch(a){}},_onClick:function(b){if(this._updatePanelVisible()){var a=b.target?b.target:b.srcElement;if(b.target){if(b.target.nodeType==3){a=a.parentNode}}if((a.getAttribute("uppHide")=="true")&&(a.getAttribute("uppTarget")==this.get_element().id)){if(this.get_fireCloseEvent()){this._doPostBack()}else{this.hide()}}}},get_topPosition:function(){return this._top},get_leftPosition:function(){return this._left},get_behaviorID:function(){return this._behaviorID},set_behaviorID:function(a){this._behaviorID=a},get_offsetX:function(){return this._offsetX},set_offsetX:function(a){this._offsetX=a},get_offsetY:function(){return this._offsetY},set_offsetY:function(a){this._offsetY=a},get_clientID:function(){return this._clientID},set_clientID:function(a){this._clientID=a},get_uniqueID:function(){return this._uniqueID},set_uniqueID:function(a){this._uniqueID=a},get_calloutColor:function(){return this._calloutColor},set_calloutColor:function(a){this._calloutColor=a},get_calloutBorderColor:function(){return this._calloutBorderColor},set_calloutBorderColor:function(a){this._calloutBorderColor=a},get_calloutDropShadowColor:function(){return this._calloutDropShadowColor},set_calloutDropShadowColor:function(a){this._calloutDropShadowColor=a},get_showDropShadow:function(){return this._showDropShadow},set_showDropShadow:function(a){this._showDropShadow=a},get_calloutType:function(){return this._calloutType},set_calloutType:function(a){this._calloutType=a},get_displayType:function(){return this._displayType},set_displayType:function(a){this._displayType=a},get_horizontalAlign:function(){return this._horizontalAlign},set_horizontalAlign:function(a){this._horizontalAlign=a},get_verticalAlign:function(){return this._verticalAlign},set_verticalAlign:function(a){this._verticalAlign=a},get_loadVisible:function(){return this._loadVisible},set_loadVisible:function(a){this._loadVisible=a},get_positionElementID:function(){return this._positionElementID},set_positionElementID:function(a){this._positionElementID=a},get_fireCloseEvent:function(){return this._fireCloseEvent},set_fireCloseEvent:function(a){this._fireCloseEvent=a},get_calloutWidth:function(){return this._calloutWidth},set_calloutWidth:function(a){this._calloutWidth=a},get_showAfterPostBack:function(){return this._showAfterPostBack},set_showAfterPostBack:function(a){this._showAfterPostBack=a},get_preDisplayScript:function(){return this._preDisplayScript},set_preDisplayScript:function(a){this._preDisplayScript=a},get_postDisplayScript:function(){return this._postDisplayScript},set_postDisplayScript:function(a){this._postDisplayScript=a},get_keepInView:function(){return this._keepInView},set_keepInView:function(a){this._keepInView=a},get_calloutZindex:function(){return this._calloutZindex},set_calloutZindex:function(a){this._calloutZindex=a},get_hideOnBlur:function(){return this._hideOnBlur},set_hideOnBlur:function(a){this._hideOnBlur=a},get_parentContainerID:function(){return this._parentContainerID},set_parentContainerID:function(a){this._parentContainerID=a},get_useOffsetPositionOnly:function(){return this._useOffsetPositionOnly},set_useOffsetPositionOnly:function(a){this._useOffsetPositionOnly=a},get_calloutColor:function(){return this._calloutColor},set_calloutColor:function(a){this._calloutColor=a},get_blockHover:function(){return this._blockHover},set_blockHover:function(a){this._blockHover=a},get_modalBackgroundCSS:function(){return this._modalBackgroundCSS},set_modalBackgroundCSS:function(a){this._modalBackgroundCSS=a}};USAirways.Web.Shared.UI.Controls.PopOverBehavior.registerClass("USAirways.Web.Shared.UI.Controls.PopOverBehavior",Sys.UI.Behavior);USAirways.Web.Shared.UI.Controls.HorizontalAlign=function(){throw Error.invalidOperation()};USAirways.Web.Shared.UI.Controls.HorizontalAlign.prototype={Right:0,Center:1,Left:2,CenterScreen:3,PopupLeft:4,CenterPage:5,PopupRight:6};USAirways.Web.Shared.UI.Controls.HorizontalAlign.registerEnum("USAirways.Web.Shared.UI.Controls.HorizontalAlign");USAirways.Web.Shared.UI.Controls.VerticalAlign=function(){throw Error.invalidOperation()};USAirways.Web.Shared.UI.Controls.VerticalAlign.prototype={Middle:0,Top:1,Bottom:2,MiddleScreen:3,Above:4,MiddlePage:5};USAirways.Web.Shared.UI.Controls.VerticalAlign.registerEnum("USAirways.Web.Shared.UI.Controls.VerticalAlign");USAirways.Web.Shared.UI.Controls.CalloutType=function(){throw Error.invalidOperation()};USAirways.Web.Shared.UI.Controls.CalloutType.prototype={TransparentGradient:0,Solid:1,None:2};USAirways.Web.Shared.UI.Controls.CalloutType.registerEnum("USAirways.Web.Shared.UI.Controls.CalloutType");USAirways.Web.Shared.UI.Controls.DisplayTypes=function(){throw Error.invalidOperation()};USAirways.Web.Shared.UI.Controls.DisplayTypes.prototype={Modal:0,Hover:1,Popout:2};USAirways.Web.Shared.UI.Controls.DisplayTypes.registerEnum("USAirways.Web.Shared.UI.Controls.DisplayTypes");if(typeof(Sys)!=="undefined"){Sys.Application.notifyScriptLoaded()};