Ext.ns('division');

division.emptyPanel = Ext.extend(Ext.Panel,{
  height:430,
  bodyCfg: {cls:'x-panel-body-em' },
  headerCfg:{
    cls:'x-panel-header-em2'
  }
  ,width: 308
  ,initComponent:function() {
    // hard coded config - cannot be changed from outside
    var config = {};
     // apply config
    Ext.apply(this, Ext.apply(this.initialConfig, config));
    // call parent initComponent
    division.emptyPanel.superclass.initComponent.call(this);
  } // end of function initComponent
  ,onRender:function() {
    // call parent
    division.emptyPanel.superclass.onRender.apply(this, arguments);
    // after parent code, e.g. install event handlers on rendered components
  } // eo function onRender

});

Ext.reg('divisionemptypanel', division.emptyPanel);



