document.observe('dom:loaded', function(){
		$$('a.target_blank').each(function(el){
				el.observe('click',target_blank);
			}, this);
	});

function target_blank(ev){
	ev.stop();
	window.open(this.href);
}