function cart_add(id, price)
{
$("#cart").hide();
$("#cart_ajax").show();
$.post("/cart.php",{workPOST: "onAddCart", cart_id_one: id, cart_price_one: price}, cart_upload);
}

function cart_clear()
{
if (confirm("Уверены, что хотите полностью очистить корзину ?")){
$("#cart").hide();
$("#cart_ajax").show();
$.post("/cart.php",{workPOST: "onClearCart"}, f5);}
}

function cart_calc()
{
$("#cart").hide();
$("#cart_ajax").show();
$.post("/cart.php",$("form#tcart_form").serialize()+"&workPOST=onCalcCart", f5);
}

function cart_del(id)
{
$("#cart").hide();
$("#cart_ajax").show();
$.post("/cart.php",{workPOST: "onDelCart", cart_id_one: id}, f5);
}


function cart_upload(data)
{
$("#cart").html(data);
$("#cart").show();
$("#cart_ajax").hide();
}

function f5(){
 document.location = document.location;
}
