$(document).ready(function(){
	$(".target").click(function(){
		window.open(this.href,'_blank');
			return false;
	});
});
