

function lien_ext() {
	var liens = document.getElementsByTagName('a');
	for (var i = 0 ; i < liens.length ; ++i)  {
		if (liens[i].className == 'doc_out')  {
			liens[i].title = '-->';
			liens[i].onclick = function()  {
				window.open(this.href);
				return false; 
			};
		};
		if (liens[i].className == 'spip_out')  {
			liens[i].title = '-->';
			liens[i].onclick = function()  {
				window.open(this.href);
				return false; 
			};
		};
	};
};

function montre(id) {
	var d = document.getElementById(id);
	if (document.getElementById('trier')) {document.getElementById('trier').style.display='none';}
	if (d) {d.style.display='block';}
}


window.onload = function() {
lien_ext();
montre();
}
