popout.js 724 Bytes
jQuery(document).ready(function($) {
    //check for popup cookie if set don't open the dialog.

    // if (!Get_Cookie('popout')) {
    //     $(window).load(function() {
            
    //         setTimeout(function() {
    //             $('#main-pop').modal('show');
    //         }, 10000);
    //     });
    // }

    $('.modal .close').click(function() {
        Set_Cookie('popout', 'it works', '', '/', '', '');
        // $('.popupDiv').fadeOut(1000);
        // $('.overlay').fadeOut(1000);
    });

    // $('.popupDiv .popupBg').click(function () {
    //     Set_Cookie('popout', 'it works', '', '/', '', '');
    //     $('.popupDiv').fadeOut(1000);
    //     $('.overlay').fadeOut(1000);
    // });

});