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