function jsBasketUpdate(theSel, id)
{
	document.location.href = "basket.php?cmd=update&id=" + id + "&qty=" + (theSel.selectedIndex+1);
}

function jsBasketCurrency(theSel)
{
	document.location.href = "basket.php?cmd=" + theSel.options[theSel.selectedIndex].value;
}
