	var store = new Ext.data.Store({
        proxy: new Ext.data.HttpProxy({
            url: '/php_bin/modules/order_system/jsonProductServer.php'
        }),
        reader: new Ext.data.JsonReader({
            root: 'productList',
            totalProperty: 'total'
	        }, [
	             {name: 'article_id'}
					,{name: 'order_number'}
					,{name: 'article_name'}
					,{name: 'article_name2'}
					,{name: 'article_description'}
					,{name: 'article_long_description'}
					,{name: 'article_size'}
					,{name: 'article_quantity_unit'}
					,{name: 'article_packageInfo'}
					,{name: 'article_online'}
					,{name: 'article_rabatt'}
					,{name: 'article_lager'}
					,{name: 'article_prov'}
					,{name: 'article_ek_price'}
					,{name: 'article_vk_price'}
					,{name: 'article_ean'}
					,{name: 'article_hsp'}
					,{name: 'article_prov_price'}
					,{name: 'article_storage'}
					,{name: 'active'}
					,{name: 'id'}
					,{name: 'id_article'}
					,{name: 'id_cat'}
	        	])
//            ,
//        baseParams: {isAdmin: document.getElementById('isAdmin').value}
    });
    
    
    
    var customer_list_grid_store = new Ext.data.Store({
	    proxy: new Ext.data.HttpProxy({url:ServerUrl + '' + modul_orderSystem + '/customers.php'}),
	    id:'customer_grid_store',
	    autoLoad:false,
	    remoteSort:true,
	    reader: new Ext.data.JsonReader({
	        totalProperty: 'totalCount',
		    root:'results'
	    }, [
	    	{name: 'id_leadtype'}, 
	    	,{name: 'customer_no'} 
	    	,{name: 'lead_salutation'} 
	    	,{name: 'first_name'} 
	    	,{name: 'last_name'} 
	    	,{name: 'customer'}
	    	,{name: 'street'} 
	    	,{name: 'street_no'} 
	    	,{name: 'country'} 
	    	,{name: 'zip'} 
	    	,{name: 'city'} 
	    	,{name: 'active'} 
	    ])
	    ,baseParams:{prog_lang: params.lang}
	});