function new_window(anchor) { window.open(anchor.href); return false; }

/* Configure all external links to open in a new window */
function config_ext_links() {
    var anchors = document.getElementsByTagName('a');
    for ( var i=0; i < anchors.length; i++ ) {
        var anchor = anchors[i];
        var rel = anchor.getAttribute('rel');
        if ( rel && rel.match(/\bext\b/) ) {
            anchor.onclick = new Function('return new_window(this);');
        }
    }
}

