﻿
function disableButton(button, text)
{
    $(button).val(text);
    //$(button).attr("disabled", "disabled");
    return true;
}