function HoverPanelGlobals(c,a,e,b,d){this.BehaviorID=c;this.CurrentHoverLinkID="";this.HorizontalAlign=a;this.VerticalAlign=e;this.XOffset=b;this.YOffset=d;this.getBehavior=function(){return $get(this.BehaviorID)};this.Show=ShowHoverPanel;this.Hide=HideHoverPanel}function ShowHoverPanel(){var a=this.getBehavior();if(a!=null){a.PopOverBehavior.set_positionElementID(this.CurrentHoverLinkID);a.PopOverBehavior.set_horizontalAlign(this.HorizontalAlign);a.PopOverBehavior.set_verticalAlign(this.VerticalAlign);a.PopOverBehavior.set_offsetX(this.XOffset);a.PopOverBehavior.set_offsetY(this.YOffset);a.PopOverBehavior.show();var b=a.PopOverBehavior.get_topPosition();return b}}function HideHoverPanel(){var a=this.getBehavior();if(a!=null){a.PopOverBehavior.hide()}};