/* =========================================================
 ExternalLink バージョン検出設定
========================================================= */
window.onload = function() {
	var dn = document.domain;
	var isIE = (document.documentElement.getAttribute('style') == document.documentElement.style);
	var externalLink = document.getElementsByTagName('a');
	for (var i = 0, len = externalLink.length; i < len; i++) {
		var a = externalLink[i];
		if (a.getAttribute('href').match("^http") && !a.getAttribute('href').match(dn)) {
		//IEの場合
		isIE ? a.setAttribute("onclick", new Function("return confirm('これより、他社のサイトへ移動します。よろしいですか？')")):
		//IE以外 
		a.setAttribute("onclick", "return confirm('これより、他社のサイトへ移動します。よろしいですか？')");
		a.setAttribute("target", "_blank");
       }
    }
}