Syn.TvPopup=Syn.Component.extend({init:function(config){if(config){this._super(config)}},showPopup:function(asset,component){this.removePopups();var asset_id=($(asset).attr("rel"))?$(asset).attr("rel"):asset;var asset_type=($(asset).attr("id"))?$(asset).attr("id"):null;var component_string="{layout=doublewide}"+component+":asset_id="+asset_id;component_string+=(asset_type)?"&asset_type="+asset_type:"";this.popup({component:component_string,draggable:true,closeable:true,resizable:false,show_title:false,show_loading:true,close_on_blur:true,center:"screen"},this,"popupReady");return false},popupReady:function(element){Syn.TvPopup.current_popup=element},removePopups:function(){if($(Syn.TvPopup.current_popup).size()&&Syn.TvPopup.current_popup){$(Syn.TvPopup.current_popup).remove()}return true}});
