
/* 一覧切り替え関数
------------------------------------------------------------------------------*/
var setword   = 1;
var setillust = 2;
var list_num  = 4;
function switchDisp(category, id){
	for (i = 1; i < list_num; i++) {
    document.getElementById(category+"-"+i).style.display = "none";
	}
  document.getElementById(category+"-"+id).style.display = "block";
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
