/**
 * @author Darathor < darathor@free.fr > http://admforum.edforum.net 
 */

var lang_openInNewWindow = 'Ouvrir ce lien dans une nouvelle fenêtre';
var image_path = '';

/**
 * External links management.
 */
$(document).ready(function(){
    $("a[@href^=\"http\"]").each(function(i){$(this).not("[@href*=\""+document.domain+"\"]").not(":has(img)").after(" <a href=\""+$(this).attr("href")+"\" class=\"external-link\" onclick=\"window.open(this.href); return false;\" style=\"border: none;\"><img src=\"http://" + document.domain + image_path + "/external-link.gif\" alt=\"\" title=\"" + lang_openInNewWindow + "\" /></a>");});
});
