                                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: true,
                                        baseParams: { disableCaching: false },
                                        reader: new Ext.data.JsonReader( {
                                                totalProperty: "results", root: "rows", id: "key" }, [ { name: 'key' }, { name: 'val' } ] )
                                } ) ;
                                var c_civilization = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ [1,"Darkness"],[2,"Fire"],[3,"Light"],[4,"Nature"],[5,"Water"] ]
                                } ) ;
                                var c_keyword = new Ext.data.SimpleStore( { fields: [ "key","val" ], data: [ 
                                                        ["{ACCELERATOR}", "Accelerator"],
                                                        ["Bio Kick","Bio Kick"],
                                                 	["Bio Tackle","Bio Tackle"],
                                                        ["{BLOCKER}","Blocker"],
							["{BB}","Break Bonus"],
                                                        ["Deck Evolution","Deck Evolution"],
                                                        ["Double Breaker","Double Breaker"],
                                                        ["Double Evolution Burst","Double Evolution Burst"],
                                                        ["G Zero","G Zero"],
                                                        ["God Link","God Link"],
                                                        ["Grave Evolution","Grave Evolution"],
                                                        ["Hand Evolution","Hand Evolution"],
							["{KM}","Knight Magic"],
                                                        ["Launcher E","Launcher E"],
							["Life Gate","Life Gate"],
                                                        ["Lost Prism","Lost Prism"],
                                                        ["Mana Evolution","Mana Evolution"],
                                                        ["{METAMORPH}","Metamorph"],
                                                        ["Meteorburn","Meteorburn"],
							["Ninja Strike","Ninka Strike #"],
                                                        ["{OD}","Overdrive"],
							["{PE}","Photo E"],
                                                        ["Samurai Generation","Samurai Generation"],
							["Saver","Saver"],
                                                        ["{SF}","Shield Force"],
							["Shield Plus","Shield Plus"],
                                                        ["{ST}","Shield Trigger"],
							["{SILENT}","Silent Skill"],
                                                        ["Soulshift","Soulshift"],
                                                        ["{SB}","Strike Back"],
							["Super Accelerator","Super Accelerator"],
                                                        ["{SURVIVOR}","Survivor"],
							["Sympathy","Sympathy"],
                                                        ["{TAP}","Tap"],
							["{TR}","Turbo Rush"],
                                                        ["Ultimate Evolution","Ultimate Evolution"],
                                                        ["{WAVE}","Wave Striker"] ]
                                } ) ;
                                var c_rarity = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["C","Common"],["U","Uncommon"],["R","Rare"],["V","Very Rare"],
                                                                         ["S","Super Rare"],["P","Promotional"] ]
                                } ) ;
                                var c_conditions = new Ext.data.SimpleStore( {
                                        fields: [ "key","val" ], data: [ ["=","="],[">",">"],["<","<"] ]
                                } ) ;
                                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_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"] ]
                                } ) ;
