/* Génération des targer blank sur les liens ===================== */
function genere_target_blank(){
	$('.open_blank').each(function(){
		var link	= $(this).attr('href');
		var cont	= $(this).html();
		
		$(this).replaceWith('<a href="' + link + '" onclick="window.open(this.href, \'_blank\'); return false;">' + cont + '</a>');
	});
}



