document.observe('dom:loaded',function(){
	$$('a.targetBlank').each(function(link){
	  link.onclick=function(){
	    window.open(this.href);
	    return false;
	  };
	});
});