function addToBasket(ProductID,Quantity)
{
    if ((Quantity * 1) >= 1)
	{
		$('_Product').value = ProductID;
		$('_Quantity').value = Quantity;
		$('_URL').value = document.location.href;
		$('BasketMethod').value = "add";
		$('frmBasket').submit();
	}
	else
	{
		alert('Agera Online:\n\nYou must enter the number of items you wish to add to your basket');
	}
		
}

function removeFromBasket(ProductID)
{
    $('_Product').value = ProductID;
	$('_URL').value = document.location.href;
	$('BasketMethod').value = "remove";
	$('frmBasket').submit();
}