﻿/////////////////////////////////////////////////////
//             SETS ISI POPUP API
/////////////////////////////////////////////////////
function showSafetyPopup() {
    dcsCall('global-safetyinformation-link');
    var api = $("#SafetyPopup").overlay();
    api.load();
}
$(function() {
    var OpenPosition = [{ top: 80}]; 
    $("#SafetyPopup").overlay({
        speed: 'fast',
        finish: OpenPosition[0]
    });
});


/////////////////////////////////////////////////////
//             SETS ISI POPUP API
/////////////////////////////////////////////////////
function openRegistrationPopup() {
    dcsCall('getsavings-submit-link');
    var api2 = $("#RegistrationPopup").overlay();
    api2.load();
}
$(function() {
    $("#RegistrationPopup").overlay({
        speed: 'fast',
        onBeforeLoad: function() {
            this.getBackgroundImage().expose({
                color: '#055245',
                opacity: 0.7
            });
        },
        onClose: function() {
            $.expose.close();
        } 
    });
});
