﻿function updateTableGoods()
{
    jQuery('#pop_block_new_order').load('/ajax/load_korzina.htm');
    count_price();
}

function  updateCountGoods(id, count)
{
    jQuery.post('/ajax/add_korzina.htm',{'goods':id, 'count': count}, function(data){
        if(data)
        {
            updateTableGoods();
        }
    });
}

function  updateCountGoodsUniq(id,uniq, count)
{
    jQuery.post('/ajax/add_korzina.htm',{'ugoods':id, 'uniq':uniq, 'count': count}, function(data){
        if(data)
        {
            updateTableGoods();
        }
    });
}



