function ValidateQty(theForm){
	var Qty = parseInt(theForm.Qty.value);
  if ((Qty < 1)  || (isNaN(Qty))) {
    document.getElementById("msg").innerHTML = "Please enter a quantity greater than 0 (zero).";
    theForm.Qty.focus();
    return (false);
  }
  return (true);
}