(function(a){a.widget("ui.popup",a.ui.dialog,{options:{titre:"Edition",width:300,height:400,url:"",modal:false},_init:function(){a.ui.dialog.prototype._init.apply(this,arguments);},_create:function(){a.ui.dialog.prototype._create.apply(this,arguments);this._setOption("autoOpen",false);this._setOption("dialogClass","ui-popup");this._setOption("resizable",false);var b=this;},instance:function(){return this;},_setOption:function(b,c){a.ui.dialog.prototype._setOption.apply(this,arguments);},ouvrir:function(){this._vider();this._setOption("width",this.options.width);this._setOption("height",this.options.height);this._setOption("title",this.options.titre);this._setOption("modal",this.options.modal);this.myFrame=a("<iframe/>",{src:this.options.url,css:{width:"97%",height:"97%",border:0}});this.element.append(this.myFrame);a.ui.dialog.prototype.open.apply(this,arguments);},fermer:function(){a.ui.dialog.prototype.close.apply(this,arguments);this._vider();},_vider:function(){this.element.html("");}});})(jQuery);
