function getBasketID()
		{
		var	id;

		id = getCookie("basketid");

		//alert('read basket id '+id);

		return id;
		}


function setBasketID(id)
		{
		setCookie("basketid", id, 1, "/");

		//alert('wrote basket id '+id);
		}


function doAddToBasket(id)
		{
		shop.returnurl.value = document.URL;
		shop.quantity.value = 1;
		shop.item.value = id;
		shop.action.value = "add";
		shop.basket.value = getBasketID();
		shop.submit();
		}

