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