$(function() {

    // Strict fix for target = _blank
    $('a[rel$="external"]').click(function(e){
		e.preventDefault();
        window.open(this.href, 'popUp');
    });
	
});
