function addToBasket(id) {
	var qty = document.getElementById("item_"+id).value;
	window.location.href="/AddToBasket.php?id="+id+"&qty="+qty;
}

