function add_position(preffix, id) {
var kol = $("#"+preffix+id).val();
$.get("/files/php/applications/basket.php", "basket_action=add&item_id="+id+"&item_kol="+kol, function(data){window.alert("Товар успешно добавлен в корзину!");});
}


function view_basket()
{
$("#view_basket_list").load("/files/php/applications/basket.php");
}

function del_item(id)
{
$.get("/files/php/applications/basket.php", "basket_action=del&item_id="+id, function(data){view_basket()});
}

function update_session(id, kol) {
$.get("/files/php/applications/basket.php", "basket_action=update_session&item_id="+id+"&kol="+kol, function(data){return true});

}


function set_new_price(id, start_price, start_kol)
{

start_price = parseFloat(start_price);

start_kol  = parseInt(start_kol);

var price = start_price/start_kol;

var kol = parseInt($("#basket-kol-tov-"+id).val());

var new_price = price*kol;

$("#basket-price-tov-"+id).html(new_price);

update_session(id, kol);

}


