function targetLinks(boNew) {
        if (boNew) 
                where = "_blank";
        else
                where = "_self";
        for (var i=0; i<=(document.links.length-1); i++) {
                document.links[i].target = where;
        }
}

// thanks to randomwalks.com for this code
