/**
* Exit script popup
*/
var showPopup = true;
$(document).ready(function() {    
    $('a').bind('click', function(e) {
        if($(this).attr('target') !== '_blank') showPopup = false;    
    })
 
    window.onbeforeunload = function(e) {
        if (showPopup) {
            showPopup = false;
            new Boxy("<p><a href='http://www.web20images.com/sitepoint.php'>Click here to see my offer</a></p>", { modal: true, title: 'Special Offer' });
            return 'WAIT! WAIT!\nBEFORE YOU GO, I WOULD LIKE TO OFFER\nYOU THIS AMAZING DISCOUNT!\n\nCLICK CANCEL TO SEE MY OFFER';
        }
    }    
});