Bill.reg.Ip = 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-fio'
                }]
            },{
                xtype: 'bill-reg-login'
            },{
                xtype: 'bill-reg-spam-filter'
            }]
        });
        Bill.reg.Ip.superclass.initComponent.apply(this, arguments);   
        this.spamFilter = this.items.itemAt(3); 
    }
});
Ext.reg('bill-reg-ip', Bill.reg.Ip);


