function calculate()
{
    location.replace(
        "/order/basket/calculate/"
        + reduce(
             function(n, s){ return s + "." + n.getAttribute("NodId") + ":" + n.value; },
             filter(
                 function(n){return n.getAttribute("isItCnt") && n.getAttribute("NodId");},
                 document.getElementsByTagName("input")),
             "1:0")
        + ".htm");
}

function resetcart()
{
    if(confirm("Вы действительно желаете полностью очистить корзину?"))
    {
        foreach(
            function(n){ n.value = 0; },
            filter(
                function(n){return n.getAttribute("isItCnt") && n.getAttribute("NodId");},
                document.getElementsByTagName("input")));
    }
    calculate();
}