<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(document).ready(function() { 
    var isShowedDialod = false;
    $(document).mouseout(function(e) {
        if (e.pageY - $(window).scrollTop()&lt;5 &amp;&amp; !isShowedDialod &amp;&amp; !isMobile.any()){
            $( "#dialog-message2" ).dialog({
                width: 450,
                height: 275,
                modal: true,
                create: function (event, ui) {$(event.target).parent().css('position', 'fixed');},
            });
            isShowedDialod = true;
            createCookie('giftemail2', '1', 1);
        }
    });
});</pre></body></html>