                                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_colors = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["W","White"],["U","Blue"],["B","Black"],["R","Red"],["G","Green"] ]
                                } ) ;
                                var c_conditions = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["=","="],[">",">"],["<","<"] ]
                                } ) ;
                                var c_rarity = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["C","Common"],["U","Uncommon"],["R","Rare"],["M","Mythic Rare"],
									 ["S","Special Release"] ]
                                } ) ;
                                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_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"] ]
                                } ) ;
