window.addEvent('domready', function() {
	$(document).getElements('a.externallink').addEvent('click', function(e) {
		e.stop();
		window.open(this.href);
	});
});

