// Fonction ouvrant les liens de type rel="external", rel="printable"
// ou rel="example" ou rel="help"
function processLinks() {
	// Il faut que le navigateur supporte le DOM
	if (!document.getElementsByTagName) return;
	
	var anchors = document.links;
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
				(    anchor.getAttribute("rel") == "external"
				  || anchor.getAttribute("rel") == "printable"
				  || anchor.getAttribute("rel") == "example"
				  || anchor.getAttribute("rel") == "help")) {
			anchor.target = "_blank";
		}
	}
}

window.onload = processLinks;

