/**
 * イベントカレンダー表示切替(月切替)
 */
function changeDisplay(m) {
	document.getElementById("month_all").style.display = "none";
	// 全て非表示
	for (i=1; i<=12; i++) {
		if (document.getElementById("month_"+i)) {
			document.getElementById("month_"+i).style.display = "none";
		}
	}
	// 指定月表示
	document.getElementById("month_"+m).style.display = "block";
}

/**
 * レイヤー表示(lightwindow.js読込必須)
 */
function displayLayerWindow(m) {
	myLightWindow.activateWindow({
		href : m,
		title : "",
		width : 720,
		type: "external"
	});
}

