function popup(event) {
  event.stop();
  window.open(this.href);
}

Event.observe(window, 'load', function() {
  blanks = $$('a.blank');
  if (blanks) {
    blanks.each(function(blank) {blank.observe('click', popup.bindAsEventListener(blank))});
  }
});