//=======================
// BASKET JS
//=======================
function addToBasket(id)
{
	var quantity = eval('document.b_'+id+'.quantity_'+id+'.value');
	var item_id = id;
	
	if(isNaN(quantity) || quantity == null || quantity == '')
	{
		alert("Please enter quantity");
		return;
	}
	
	document.basket.item_id.value = id;
	document.basket.quantity.value = quantity;
	document.basket.submit();
}