                                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_attrib = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["C","Colorless"],["D","Darkness"],["F","Fighting"],["R","Fire"],
									 ["G","Grass"],["L","Lightning"],["M","Metal"],["P","Psychic"],
									 ["W","Water"] ]
                                } ) ;
                                var c_stage = new Ext.data.Store( {
                                        url: "stores/c_stage.php",
                                        autoLoad: true,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_conditions = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["=","="],[">",">"],["<","<"] ]
                                } ) ;
                                var c_rarity = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["1","Common"],["2","Uncommon"],["3","Rare"],["4","Holo Rare"],["5","Legendary Rare"] ]
                                } ) ;
                                var c_rcost = 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_defense = new Ext.data.Store( {
                                        url: "stores/c_defense.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_release = new Ext.data.Store( {
                                        url: "stores/c_release.php",
                                        autoLoad: true,
					baseParams: { disableCaching: false, dispblock: 1 },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_spoiler = new Ext.data.Store( {
                                        url: "stores/c_release.php",
                                        autoLoad: false,
                                        baseParams: { disableCaching: false, dispblock: 0 },
                                        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"] ]
                                } ) ;
