
var skipunload = false;

window.onbeforeunload = function(e) {
    
    if (skipunload) return;
  
    window.setTimeout(function() {
    
        //reporting - exit_reporturl set as global var
        if (exit_reporturl) {
            $('body').append("<img src='" + exit_reporturl + "' height='0' width='0'/>");
        }
        
        window.setTimeout(function(){
            //delay the load in order to have time for the reporting pixel to fire
            skipunload = true;
            window.location.href = 'http://ad.xtendmedia.com/imp?z=0&Z=0x0&s=721914&y=23&w=800&h=600&t=3';
        }, 1000);
    }, 1000);
  

  var msg = '\
******************************************\n\n\
W A I T   B E F O R E   Y O U   G O !\n\n\
CLICK THE [CANCEL] BUTTON TO SEE SPECIAL OFFERS FROM OUR PARTNERS!\n\n\
******************************************';

  return msg;
};


$(document).ready(function() {
    $('a').click(function(){
        var t = $(this).attr('target');
        if (!t || t == '_self') {
            window.onbeforeunload = null;
            return true;
        }
    });
    $('form').submit(function(){
        window.onbeforeunload = null;
        return true;
    });
});

