function emptyCart() {

  if (confirm("You are sure?")) {
     $('#tc_command').val('emptyCart');
     $('#tc_cart').submit();
  }

}

function applyPromoCode() {

  $('#tc_command').val('applyPromoCode');
  $('#tc_cart').submit();

}

function upsellProduct(productId) {

  $('#tc_command').val('upsellProduct');
  $('#tc_command_param1').val(productId);
  $('#tc_cart').submit();

}

function removeProduct(productId) {

  $('#tc_command').val('removeProduct');
  $('#tc_command_param1').val(productId);
  $('#tc_cart').submit();

}