﻿// JScript File

window.onload = function()
{
    setTargets();
    
}

function setTargets()
{
    var anchors = document.getElementsByTagName("a");
    for(var idx = 0; idx < anchors.length; idx++)
    {
        if (anchors[idx].href.indexOf("#") != 0)
        {
            anchors[idx].target = "_blank";
        }
    }
}