
function CheckA2B()
{

	var MyCounter=0

	for(i=0; i<document.Add2Basket.elements.length; i++)
	{
		var MyName = document.Add2Basket.elements[i].name

		MyName = MyName.substring(0,3);

		if(MyName=="Qty")
		{
			var MyValue=String(document.Add2Basket.elements[i].value)
			if (MyValue!="" && MyValue!="0")
			{
				MyCounter=MyCounter+1
			}

		}

	}
	
	if(MyCounter==0)
	{
		alert("Please enter the quantities of items you wish to purchase before pressing the Add to Basket button");
		return false;
	}

return true;

}



