Ставить куку, иначе никак :) Я делал так:
if (!$.cookie("popup")) {
$.cookie("popup", true,{
expires:1, path: '/'}
);
$(document).ready(function() {
$(document).mousemove(function(pos) {
if(pos.pageY <= 70) {
$('#promo_popup').modal('show');
}
}
);
}
);
}