onload=function(){
	var tmp=document.getElementsByTagName('a');
	for(var i=0;i<tmp.length;i++){
		if(tmp[i].hostname!=location.hostname){
			tmp[i].onclick=function(){
				return !window.open(this.href);
			}
		}
	}
}