﻿/////////////////////////////////////////////////////
//             SETS ISI POPUP API
/////////////////////////////////////////////////////
function showSafetyPopup() {
    
    var api = $("#SafetyPopup").overlay();
    api.load();
}
$(function() {
    var OpenPosition = [{ top: 80}]; 
    $("#SafetyPopup").overlay({
        speed: 'fast',
        finish: OpenPosition[0]
    });
});


/////////////////////////////////////////////////////
//             SETS ISI POPUP API
/////////////////////////////////////////////////////
function openRegistrationPopup() {
    
    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();
        } 
    });
});



/////////////////////// ClobexSprayCommercial ///////////////////////
$(function() {
$("#popup_ClobexSprayCommercial").overlay({
        speed: 'fast',
        onBeforeLoad: function() {
            this.getBackgroundImage().expose({
                color: '#000000',
                opacity: .75
            });
        },
        onClose: function() {
            $.expose.close();
        }
    });
});
function openPopup_ClobexSprayCommercial() {
    var api = $("#popup_ClobexSprayCommercial").overlay();
    api.load();
    
}
function closePopup_ClobexSprayCommercial() {
    $("#popup_ClobexSprayCommercial").overlay().close();
    
}
