function putInBasket( productId, productType, amount, beekeeperId ) 
{
	jQuery.post( "/basket/put-in-basket/", { productId: productId, productType: productType, amount: amount, beekeeperId: beekeeperId }, 
		function(data) {
			location.href=location.href;
		});
}


function putInBasketAndRedirect( productId, productType, amount, beekeeperId, redirect ) 
{
	jQuery.post( "/basket/put-in-basket/", { productId: productId, productType: productType, amount: amount, beekeeperId: beekeeperId }, 
		function(data) {
			location.href=redirect;
		});
}
