
var Custompage=new Class({Extends:Widget,initialize:function(){this.cfg={hasSizeBtn:false,hasRefreshBtn:false,hasSettingsBtn:false,hasDrag:false,hasProfile:false,title:loc.text("custompage_title"),module:"Custompage",uniqueId:SYS_WIDGETS_ID+8}},onBuildInterface:function(){this.setTitle(loc.text("custompage_title"));this.mid.getElement('.box-content').setStyle('height','300px');this.mid.getElement('.box-content').setStyle('overflow','auto');},close:function(){board.hideActivePopup();},setData:function(title,content){this.setTitle(title);this.mid.getElement('.box-content').set('html',content.parseUrl());},getData:function(id){var lang=getCookie("lng");if(lang==""){lang="EN";}
request.send({act:"get_custom_page",id:id,lang:lang},this);},dispatchMsg:function(msg){switch(msg.status){case"custom_page":this.setData(msg.cp.title,msg.cp.content);break;}}});