document.onclick = function(e) {
	var url, ie;
	if (document.all) {
		url = window.event.srcElement.href;
		ie = (!window.opera) ? 1 : 0;
	}
	else if (document.getElementById && e.which == 1) {
		url = e.target.href || e.target.parentNode.href;
	}
	if (url && url.match(location.hostname)) {// 自分のサイトのホスト名が含まれるリンクは通常表示
		return true;
	}
	else if (url && url.match(/^(https?|ftp):\/\//)) {// 上記以外のリンクは新しいウインドウ表示
		window.open(url);
		return false;
	}
}
