﻿

function SetLanguage(tlanguage) {
    
    var host = document.location.host;

    location = document.location.href.replace(host, tlanguage);
}



function signout() {

    $.ajax({ type: "post",
        url: "MemberBookLogout.ashx",
        dataType: "json",
        data: {},
        success: function(v_return) {
            if (v_return != null || v_return != "") {
                location = document.location.href;
            }
            

        }
    });
}
