                                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_rarity = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["C","Common"],["U","Uncommon"],["R","Rare"],["UR","Ultra Rare"],
									 ["P","Promotional"],["DX","Starter Deck Exclusive"] ]
                                } ) ;
				var c_conditions = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["=","="],[">",">"],["<","<"] ]
				} ) ;
				var c_equality = new Ext.data.SimpleStore( {
                                        fields: [ "key" ], data: [ ["="],["!="] ]
				} ) ;
                                var c_difficulty = new Ext.data.Store( {
                                        url: "stores/c_difficulty.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' } ] )
                                } ) ;
                                var c_control = new Ext.data.Store( {
                                        url: "stores/c_control.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' } ] )
                                } ) ;
                                var c_damage = new Ext.data.Store( {
                                        url: "stores/c_damage.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' } ] )
                                } ) ;
                                var c_handsize = new Ext.data.Store( {
                                        url: "stores/c_handsize.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' } ] )
                                } ) ;
                                var c_vitality = new Ext.data.Store( {
                                        url: "stores/c_vitality.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' } ] )
                                } ) ;
				var c_gender = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["?","??"],["M","Male"],["F","Female"] ]
				} ) ;
                                var c_height = new Ext.data.Store( {
                                        url: "stores/c_height.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_weight = new Ext.data.Store( {
                                        url: "stores/c_weight.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_bloodtype = new Ext.data.Store( {
                                        url: "stores/c_bloodtype.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' } ] )
                                } ) ;
                                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"] ]
                                } ) ;
