jQuery('a.popup').live('click', function(){
    newwindow=window.open($(this).attr('href'),'','height=300,width=500');
    if (window.focus) {newwindow.focus()}
    return false;
});
