function setTarget(target) {
	locationHref = location.href;
	var thissite = new Array();
	thissite = locationHref.split('/');
	thissite = thissite[2];
	
	l = document.links
	for(a = 0; a < l.length; a++) {
		lnk = l[a];
		linkhost = lnk.hostname;
		
		if( (thissite != linkhost) && (thissite != linkhost + ':3000') ) {
			lnk.target = target;
		}
	}
}