Bill.reg.Org = Ext.extend(Bill.reg.FormPanel, {
    initComponent: function() {
        Ext.apply(this, {
            items: [{
                xtype: 'bill-reg-fieldset',
                title: 'Представьтесь пожалуйста:',
                items: [{
                    xtype: 'textfield',
                    name: 'orgName',                 
                    fieldLabel: 'Организация',
                    allowBlank: false
                },{
                    xtype: 'bill-reg-org-info'
                }]
            },{ 
                xtype: 'bill-reg-login'
            },{
                xtype: 'bill-reg-spam-filter'
            }]
        });
        Bill.reg.Org.superclass.initComponent.apply(this, arguments);
        this.spamFilter = this.items.itemAt(3); 
    }
});
Ext.reg('bill-reg-org', Bill.reg.Org);        

