// links that require leaving this domain will be opened in a new window

function outLinks() 
{
	var outLink;
	if (document.getElementsByTagName('a')) {
		for (var i = 0; (anchor = document.getElementsByTagName('a')[i]); i++) {
			if (
//				( (anchor.href.indexOf("nopasf.") == -1) || (anchor.getAttribute("rel") == "external") ) 
				( (anchor.href.indexOf("nopasf.") == -1) 
				&& (anchor.href.indexOf("nopasfco") == -1)
				&& (anchor.href.indexOf("localhost") == -1)
				&& (anchor.href.indexOf("fcgrx") == -1) )
				
				|| (anchor.getAttribute("rel") == "external") 
				|| (anchor.href.indexOf(".pdf") != -1) 
			   )
			{
				anchor.setAttribute('target', '_blank');
anchor.setAttribute('onclick', 'event.cancelBubble=true;');
			}
		}
	}
}
window.onload = function() {outLinks();}