// JavaScript Document

// セレクトメニューでリンクへ飛ぶ（同ウインドウ）
function LinkSelect(form, sel)
{
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs != "-" ) location.href = adrs;
}

// セレクトメニューでリンクへ飛ぶ（別ウインドウ）
function LinkSelect2(form, sel)
{
	c = sel.selectedIndex;
	adrs = sel.options[c].value;
	if (adrs != "-" )
	{
		LinkWin=window.open("","NewPage","width=340,height=340, status=no, toolbar=no, location=no, menubar=no, scrollbars=no, resizable=yes");
		LinkWin.location.href=adrs;
	}
}

// ついでに更新履歴一覧表示（別ウインドウ）
function ichiran(){ 
window.open('','ichiran','width=350,height=400, status=no, toolbar=no, location=no, menubar=no, scrollbars=no, resizable=yes');
}