jQuery(function($) {

  //TODO: Make this (or find and replace with) a plugin
  $('a.popup').click(function() {
    var options = $(this).attr('opts') ? $(this).attr('opts') : 'height=650,width=750,scrollbars=1';
    var newwindow = window.open(this.href, $(this).attr('name'), options);
    if (window.focus) {
      newwindow.focus()
    }
    return false;
  });
});