﻿/////////////////////////////////////////////////////
//          TERMS POPUP FUNCTIONS
/////////////////////////////////////////////////////
function showTermsPopup() {
    var api = $("#ConfirmTermsPopup").overlay();
    api.load();
}
$(function() {
    $("#ConfirmTermsPopup").overlay({
        speed: 'fast',
        onBeforeLoad: function() {
            this.getBackgroundImage().expose({
                color: '#055245',
                opacity: .0
            });
        },
        onClose: function() {
            $.expose.close();
        },
        closeOnClick: false
    });
});
