// 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("chuckprophet.com") == -1) 
				&& (anchor.href.indexOf("localhost") == -1)
				&& (anchor.href.indexOf("chuckprophet.com") == -1) )

				|| (anchor.href.indexOf("ee_system") != -1)
				|| (anchor.href.indexOf(".pdf") != -1)
				|| (anchor.href.indexOf(".mp3") != -1)
				
				|| (anchor.getAttribute("rel") == "external") 
			   )
			{
				anchor.setAttribute('target', '_blank');
anchor.setAttribute('onclick', 'event.cancelBubble=true;');
			}
		}
	}
}
window.onload = function() {outLinks();}