$(document).ready(function() {
    $('.popup').each(function() {
        $(this).bind('click',function(){
            window.open(this.href,'name','height=618, resizable=0, width=500');
            return false;
        });
    });
});
