// ウィンドウを開く（トップページ＞ニュース＆イベント）
function OpenNewsWin(URL) {
	Win = window.open(URL, 'news', 'scrollbars=yes,toolbar=no,menubar=no,location=no,resizable=yes,status=yes,width=480,height=350');
	Win.focus();
}


// ウィンドウを開く（トップページ＞トピックス）
function OpenTopicsWin(URL) {
	Win = window.open(URL, 'topics', 'scrollbars=yes,toolbar=no,menubar=no,location=no,resizable=yes,status=yes,width=580,height=500');
	Win.focus();
}


// ウィンドウを閉じる
function CloseWin() {
	window.close();
}
