dojo.addOnLoad(function() {
	var host = window.location.protocol+'//'+window.location.host;
	dojo.query('a').forEach(function(elem) {
		if (elem.href != '' && elem.href.search(host) == -1 && elem.href.search('javascript') == -1 && elem.href.search('mailto') == -1 && elem.href.search('#') == -1) {
			elem.target = '_blank';
			if (dojo.isIE) {
				dojo.addClass(elem, 'externalLink');
			}
		}
	});
});
