/////////////////////////////////////////////////////////////////////
// Client basket functions
// (c) Copyright 2004 Gyrus Solutions http://www.gyrus.kiev.ua
/////////////////////////////////////////////////////////////////////

if (!_basketURL || _basketURL.length == 0)
{
	alert("Internal site error (_basketURL not set). Please contact support@gyrus.kiev.ua");
}

function AddBasketItem(pricelistposid,amount)
{
	var ref = encodeURIComponent(window.location.href);
	window.location.href = ConcatURL(_basketURL, "action=basket_add&pricelistposid="+pricelistposid+"&amount="+amount+"&ref="+ref);
}
