/*  NayanGhosh.com
*   Written by Nayan Ghosh
*   All rights reserved.
*   Common client-side scripting
*/
//everything thats executed on page load
function doOnLoad()
{
    extLinks();
}

//set all external (rel="external") links to target="_blank"
function extLinks()
{
    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 = doOnLoad;