var therules = {
	'a.newwindow' : function(element) {
		element.onclick = function() {
			window.open(this.href, '_blank');
			return false;
		}
	}
};

Behaviour.register(therules);