<!-- Check Quantity in Cart
function checkquantity(theqty) {
if (theqty < 4) {
alert('Minimum order per tea is 4 ounces.\n\nYour entered '+ theqty + ' ounces.')
return false;
}
}
// -->

