function processProduct(id)
{
    if (isNaN(id))
    {
        alert("The product was not found.");
        return;
    }

    $("#loading_" + id).fadeIn('fast');
    $.getJSON("review/process/" + id, {} , function(msg)
        {
            $("#loading_" + id).fadeOut('fast');
            if (msg.result == 'added')
            {
                $("#cmd_" + id).val("Remove from Quote request");
            }
            else if (msg.result == "removed")
            {
                $("#cmd_" + id).val("Add to Quote request");
            }               
        }
    );
}
