// Fonction de stockage des scripts à charger
FuncOL = new Array();
function StkFunc(Obj) {
	FuncOL[FuncOL.length] = Obj;
}
	
// Execution des scripts au chargement de la page
window.onload = function() {
	for(i=0; i<FuncOL.length; i++)
		{FuncOL[i]();}
}




function open_ext_link()
{
	var liens = document.getElementsByTagName('a');
		for (var i = 0 ; i < liens.length ; ++i)  {
				if (liens[i].className == 'lien_ext')  {
			liens[i].title = 'S\'ouvre dans une nouvelle fenêtre';
				liens[i].onclick = function()  {
				window.open(this.href);
				return false; 
			};
		}
	}
}
StkFunc(open_ext_link);


function open_ext_link2()
{
	var liens = document.getElementsByTagName('a');
		for (var i = 0 ; i < liens.length ; ++i)  {
				if (liens[i].className == 'lien_ext2')  {
			liens[i].title = 'S\'ouvre dans une nouvelle fenêtre';
				liens[i].onclick = function()  {
				window.open(this.href);
				return false; 
			};
		}
	}
}
StkFunc(open_ext_link2);