﻿function ShowProgress() {
    $('#LoginDiv').hide();
    $('#ProgressDiv').show();
    $('.validation-summary-errors').hide();

    var dots = '';
    var f = function () {
        if (dots.length >= 3)
            dots = '';
        else
            dots = dots + '.';
        $('.loading').text(dots);
    };
    setInterval(f, 500);

    return true;
}
