// sets up new window link for print friendly version of the page
function externalLinks() {

	if(!document.getElementById('pagetools')) // a page without the print link
		return;

	var x = document.getElementById('pagetools');
	var aAnchors = x.getElementsByTagName('a');
	var anchor = aAnchors[1]; // print friendly anchor
	anchor.target = "_blank";
	anchor.title = (anchor.title != "") ? anchor.title+" (opens in a new window)" : "opens in a new window";
}

function fnRunOnload(){
	externalLinks();
}
window.onload = fnRunOnload;