
function delete_product(cart_product_id)
{
	cart.remove_item(cart_product_id, cart.view);
}


function check_out(check_out_url)
{
    window.location = check_out_url;
}

