
/*========== 目次 ==========

	1.新規ウィンドウ設定

============================*/

//ポップアップ
function openwin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/*======================================================
	■1.新規ウィンドウ設定
======================================================*/

function externalLinks() {
	if (!document.getElementsByTagName) return;
		var anchors = document.getElementsByTagName("a");
		for (var i=0; i<anchors.length; i++) {
			var anchor = anchors[i];
			if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external")
			anchor.target = "_blank";
		}
}
window.onload=externalLinks;

/*=============================================
	■2.copyrightの日付表示
	WriteCopyYear
=============================================*/
function WriteCopyYear() 
{
	document.write(new Date().getFullYear());
}

/********************************************

	onloadで一度に実行する
	
	・1.新規ウィンドウ設定
	・6.copyrightの日付表示
	
********************************************/
function onloadEvent(){
	externalLinks();
}

window.onload=onloadEvent;