$(document).ready(function()
{
    $('a.popup').click(function(){
        win = window.open($(this).attr('href'));
        return false;
    });
});