$(document).ready(function() { 
    var isShowedDialod = false;
    $(document).mouseout(function(e) {
        if (e.pageY - $(window).scrollTop()<5 && !isShowedDialod && !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);
        }
    });
});