/*
	Librairie de fonction JavaScript
	lib_1 : ver. 1.0  :: 'target' W3C
	
	./script/lib.js
	---------------------------------------------
	Copyright© 2004-2005 - Toute reproduction interdite
	T.T.P.M. - http://www.ttpm.fr
*/

// fonction pour réglementation de l'attribut 'target' du W3C
function TargetBlank() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank"; 
 } 
} 
window.onload = TargetBlank;