
	function chk_product_qty (x)
	{

		if (x.ht_qty.value == "")
		{
			alert("Please specify a quantity");
			x.focus();
			return false;
		}

		return true;
	}
