/* Project settings */
var hmAnimate = true;
var hmPopupSticky = true;
var hmImageLightbox = true;
var hmVideoLightbox = true;
var hmLightboxConstrained = true;
var hmForceRedirect = false;
var hmTocSingleClick = true;
var autocollapse = true;
var gaaccount = "";
var initialtocstate = "collapsed";

window.setInterval(function () {
    CheckSession();
}, 1000);
function CheckSession() {
    $.ajax({
        type: "POST",
        url: window.location.origin + "/Common/CheckPracticeSession",
        data: "{}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (msg) {
            if (msg.ReturnValue == "0")
                window.parent.parent.window.location = "../../../Account";
            else
                return true;
        },
        error: function (xhr, ajaxOptions, thrownError) {
            window.parent.parent.window.location = "../../../Account";
        }
    });
}
