function add_to_basket(product_id) { 
  window.document.basket.product_id.value = product_id;
  window.document.basket.submit();
}


function remove_from_basket(basket_id) { 
  window.document.remove_item.basket_id.value = basket_id;
  window.document.remove_item.submit();
}