﻿/////////////////////////////////////////////////////
//             ISI POPUP FUNCTIONS
/////////////////////////////////////////////////////
function showSafetyPopup() {
    
    var api = $("#SafetyPopup").overlay();
    api.load();
}
$(function() {
    var OpenPosition = [{ top: 80}];
    $("#SafetyPopup").overlay({
        speed: 'fast',
        finish: OpenPosition[0]
    });
});


function showRegistrationPopupDelay(time) {
    var t = setTimeout("showRegistrationPopup()", time);
}
/////////////////////////////////////////////////////
//          REGISTRATION POPUP FUNCTIONS
/////////////////////////////////////////////////////
function showRegistrationPopup() {
    var api = $("#RegistrationPopup").overlay();
    api.load();
}
$(function() {
    $("#RegistrationPopup").overlay({
        speed: 'fast',
        onBeforeLoad: function() {
            this.getBackgroundImage().expose({
                color: '#333333',
                opacity: .8
            });
        },
        onClose: function() {
            $.expose.close();
            
        },
        closeOnClick: true
    });
});
/////////////////////////////////////////////////////
//          VIEW BENEFITS POPUP FUNCTIONS
/////////////////////////////////////////////////////
function showViewBenefitsPopup() {
    var api = $("#BenefitsPopup").overlay();
    api.load();
}
$(function () {
    $("#BenefitsPopup").overlay({
        speed: 'fast',
        onBeforeLoad: function () {
            this.getBackgroundImage().expose({
                color: '#333333',
                opacity: .8
            });
        },
        onClose: function () {
            $.expose.close();
        },
        closeOnClick: true
    });
});

