﻿
$(document).ready(function () {

    $(".selectCur").click(function () {


        var type = $(this).attr('lang');
        var url = window.location.href.split('aspx');
        var urlPart = "";
        var locat = window.location.pathname;
        if (url[1] == undefined) {
            urlPart = "";
        }
        else {
            urlPart = url[1];
        }

        $.ajax({
            type: "POST",
            url: "GetCentralData.asmx/SetCurrencie",
            data: "{'type' : '" + type + "' }",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {
                if (msg.d["Error"] == "") {

                    //                    window.location.replace(window.location.href);
                    //                    window.location.href = "http:\\www.google.be";

                    //                    var url = window.location.href.split('aspx');

                    ////                    window.location.href = window.location.pathname + url[1];
                    //                    window.location.replace(window.location.pathname + url[1]);

                    window.location.replace(locat + urlPart);
                    return true;
                }
                else {
                    return false;
                }
            }
        });


    });

});
