//-------------------------------------------------------
//	記事種別を選択して記事リスト表示
//-------------------------------------------------------
function NewsList(){

	theForm					= document.form1;
	theForm.target			= "_self";
	theForm.method			= "POST";
	theForm.action			= "/news/index.do";

	date = new Date();
	if( theForm.year.value == "" ){
		yy = date.getYear();
		if (yy < 2000) { yy += 1900; }
		theForm.year.value = yy;
	}
//	theForm.month.value			= date.getMonth() + 1;
	theForm.month.value			= 0;

	theForm.submit();

}

//-------------------------------------------------------
//	記事詳細の表示へ
//-------------------------------------------------------
function NewsDetail( id, code ){

	theForm					= document.form1;
	theForm.target			= "_self";
	theForm.method			= "POST";
	theForm.action			= "/news/syousai.do";

	theForm.news_type_code.value	= code;
	theForm.news_id.value			= id;

	theForm.submit();

}

//-------------------------------------------------------
//	ページを選択して更新履歴リスト表示
//-------------------------------------------------------
function RirekiPage( page ){

	theForm					= document.form1;
	theForm.target			= "_self";
	theForm.method			= "POST";
	theForm.action			= "/news/rireki.do";

	theForm.page.value		= page;

	theForm.submit();

}


