var PopOver={ToggleVisibility:function(a,b){var c=$get(a);if(c&&c!=undefined&&c!=null){if(b){c.PopOverBehavior.show()}else{c.PopOverBehavior.hide()}}return false},Show:function(b){var a=$get(b);if(a&&a!=undefined&&a!=null&&a.PopOverBehavior){a.PopOverBehavior.show()}return false},ShowByClassName:function(b){var c=$("."+b+" > [id*='update']:first");if(c!=null&&c!=undefined){var a=c.attr("id");this.Show(a)}return false},Hide:function(b){var a=$get(b);if(a&&a!=undefined&&a!=null&&a.PopOverBehavior){a.PopOverBehavior.hide()}return false},HideByClassName:function(b){var c=$("."+b+" > [id*='update']:first");if(c!=null&&c!=undefined){var a=c.attr("id");this.Hide(a)}return false}};