<!-- 
function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "externalfed") {
anchor.target = "_blank";
anchor.title = "Opens in a new window";
} 
if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
anchor.target = "_blank";
anchor.title = "Opens in a new window";
anchor.onclick=function(){alert("You are now leaving TSWG.gov. Thank you for visiting our site.  We welcome your comments on how we can make this site more useful.  You are now leaving this site to link to another location that is not maintained by the Federal Government.  The Federal Government takes no responsibility for and exercises no control over non-government sites, the view that may be represented, or the accuracy, privacy policies, copyright or trademark compliance, or the legality of any material contained on those sites.")}
} 
if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "pdf") {
anchor.target = "_blank";
anchor.title = "Opens in a new window";
} 
}
}
window.onload = externalLinks;
// -->