$(document).ready(function(){
  
  $('a.external-article').click(function(event) {
    event.preventDefault();
    window.open(this.href + '?layout=popup', '_blank', 'toolbar = 0, height = 450, width = 600, scrollbars = 1');
  });
  
});