function isNotSubmitted(aButton)
{
    var vIsNotSubmitted = false;
    if(!aButton.isSubmitted){
        aButton.isSubmitted = true;
        vIsNotSubmitted = true;
    }

    return vIsNotSubmitted;
}