﻿var submitted = false;

function CanSubmit() {
    if (!submitted) {
        submitted = true;
        return true
    }
    else {
        alert('Your application is being processed and depending on how fast the internet monkeys are pedaling today this may take a few seconds.  No need to click submit several times.');
        return false;
    }


}
