function popup()
{
    window.open(this.href);
    return false;
}

$(document).ready(function() {
    $('a.popup').bind('click', popup);
});