var t;

function initializePopup(target, time) {
    t = setTimeout(function() {
        popup(target)
    }, time * 1000);
}

function popup(target) {
    clearTimeout(t);
    $.get("/popup.php", {
        set: true
    }, function() {
        $.facebox({
            ajax: target
        })
    });
}

