﻿
function ValidateQuantity(txtQuantity) {
    if ($("#" + txtQuantity).val()=="") {
        alert("Please enter the quantity.");
        $("#" + txtQuantity).focus();
        return false;
    }
    else
        return true;
}
