                                var c_type = new Ext.data.Store( {
                                        url: "stores/c_type.php",
                                        autoLoad: true,
					baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_subtype = new Ext.data.Store( {
                                        url: "stores/c_subtype.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_faction = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ [1,"Arcanist"],[2,"Banker"],[3,"Gearsmith"],[4,"Rogue"],
									 [5,"Warlord"] ]
                                } ) ;
                                var c_convcost = new Ext.data.Store( {
                                        url: "stores/c_convcost.php",
                                        autoLoad: false,
					baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_cost = new Ext.data.Store( {
                                        url: "stores/c_cost.php",
                                        autoLoad: false,
					baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_power = new Ext.data.Store( {
                                        url: "stores/c_power.php",
                                        autoLoad: false,
					baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_tough = new Ext.data.Store( {
                                        url: "stores/c_tough.php",
                                        autoLoad: false,
					baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_speed = new Ext.data.Store( {
                                        url: "stores/c_speed.php",
                                        autoLoad: false,
					baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_rarity = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["C","Common"],["U","Uncommon"],["R","Rare"],["S","Staple"] ] 
				} ) ;
				var c_conditions = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["=","="],[">",">"],["<","<"] ]
				} ) ;
                                var c_release = new Ext.data.Store( {
                                        url: "stores/c_release.php",
                                        autoLoad: true,
					baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_format = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["txt","Plain Text"],["xls","Excel Spreadsheet"],["xml","XML"] ]
                                } ) ;
