function replaceTargets() {
	var objects = document.getElementsByTagName('a');
	for (var i = (objects.length-1); i >= 0; i--) {
		var object = objects[i]
		if (!object.href.match('punx') && !object.href.match('localhost') && !object.href.match('192.168')) {
			object.target = '_blank';

			//object.href = object.href + 'tralalla';
           
			//Use Google Analytics _trackPageview 
			object.onclick = function() {pageTracker._trackPageview('/outgoing/' + this.href);}
			
		}
	}	
}