function recalcCart()
{
  var i, total_price, total_qty;
  
  total_price = 0;
  total_qty = 0;
  
  for (i in cart_bank) {
    if (typeof(cart_bank[i]) == 'function') {
      continue;
    }
    total_qty += parseInt($('Qty_' + i).value);
    total_price += $('Qty_' + i).value * cart_bank[i].price;
  }
  //alert(total_price);     
  $('total_price').innerHTML = total_price.toFixed(2);
  $('total_qty').innerHTML = total_qty;
}

