function init(){
	setTarget();
}



/*==========================================================
PDFと外部サイトは新しいウィンドウで開く
==========================================================*/
function setTarget(){
	oLink=document.getElementsByTagName('a');
	for (i=0; i<oLink.length; i++){
		if((oLink[i].href.indexOf("mmkchuck",0)==-1)||(oLink[i].href.indexOf("pdf",0)!=-1)){
			oLink[i].target="_blank";
		}
	}
}
/*==========================================================
oTableテーブルに交互に色を適用
第一引数：ターゲットとなるテーブルのID
第二引数・第三引数：色
==========================================================*/
function setTableColor(oTable,color01,color02){
	targetTable=document.getElementById(oTable);
	targetTr=targetTable.getElementsByTagName('TR');
	for(j=0; j<targetTr.length; j++){
		TrColor = (j%2) ? color01:color02;
		targetTr[j].style.backgroundColor=TrColor;
	}
}

