// 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("newmastersounds.") == -1) || (anchor.getAttribute("rel") == "external") ) 
				&& (anchor.href.indexOf("localhost") == -1)
				&& (anchor.href.indexOf("groovejazz") == -1)
			   )
			{
				anchor.setAttribute('target', '_blank');
anchor.setAttribute('onclick', 'event.cancelBubble=true;');
			}
		}
	}
}
window.onload = function() { outLinks(); }


