jQuery.fn.popup = function() {
    $(this).click(function() {
        var href = $(this).attr('href');
        window.open(href, 'popup', 'scrollbars=yes,location=yes,toolbar=yes');
        return false;
    });
};
