// JavaScript Document, ouvrir popup sur lien externe
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 = 'Ouvre dans une nouvelle fenêtre';
                        liens[i].onclick = function()  {
                                window.open(this.href
, 'f100', 'height=420, width=770, top=50, left=5, toolbar=no, menubar=yes, location=no, resizable=yes, scrollbars=yes, status=no' 
											);
                                return false;
                        };
                }
        }
}
window.onload = open_ext_link;
