﻿$("document").ready(function () {

    $("#uiAXAFindOut").click(function () {

        $.alerts.okButton = "I am a retail customer";
        $.alerts.cancelButton = "I am a Financial Adviser or Intermediary";

        jConfirm('To enable us to direct you to the relevant area of the AXA Wealth website please confirm if you are a Financial Adviser/Intermediary', 'Message from webpage',
        function (r) {
            if (r) {
                //var URL = "http://www.axawealth.co.uk/aboutus/legal-information";
                //var Name = "Retail Customer";
                //window.open(URL, name);
                $("#ButtonRetail").click();
            }
            else {
                //var URL = "http://www.axawealth.co.uk/adviser/aboutus/legal-information";
                //var Name = "Financial Adviser";
                //window.open(URL, name);
                $("#ButtonAdviser").click();
            }
        })
    });


    $("#uiWinterthurFindOut").click(function () {


        $.alerts.okButton = "OK";
        $.alerts.cancelButton = "Cancel";

        jConfirm("You are now leaving the website of AXA Wealth Limited (AWL). " +
                "AWL has no control or responsibility over the content of the site you are about to access or to " +
                 "where any of the subsequent links may take you. You can return to the AWL website at any time by closing the window.", 'Message from webpage',

        function (r) {
            if (r) {
                //var URL = "http://www.friendslife.co.uk/winterthur";
                //var Name = "Winterthur";
                //window.open(URL, name);
                $("#ButtonWinterthur").click();
            }
            else {
                //none
            }
        })
    });

});
