//*************************************************************************
// メニュー表示スクリプト
//*************************************************************************
function Selection(form, sel) {
	for (i = 0; i < sel.options.length; i++) {
		if (sel.options[i].selected == true) {
			inval = sel.options[i].value;
			top.location.href=inval;
		}
	}
}

document.write("<table cellpadding=0 cellspacing=0 border=0>");
document.write("<tr><td>&nbsp;&nbsp;");
document.write('<SELECT NAME="sel" ONCHANGE="Selection(this.form, this)">');
document.write("<OPTION VALUE=index.html>メニューの選択");
document.write("<OPTION VALUE=index.html>ホーム");
document.write("<OPTION VALUE=about.html>ゆいベース・エルとは");
document.write("<OPTION VALUE=mission.html>ミッション");
document.write("<OPTION VALUE=repo.html>活動報告");
document.write("<OPTION VALUE=sched.html>事業予定");
document.write("<OPTION VALUE=member.html>入会案内");
document.write("<OPTION VALUE=./cgi-local/up/uplist.cgi>資料書庫");
document.write("<OPTION VALUE=dlib.html>デジタルライブラリー");
document.write("<OPTION VALUE=link.html>リンク集");
document.write("<OPTION VALUE=olib.html>沖縄県公共図書館リスト");
document.write("<OPTION VALUE=lalist.html>&nbsp;-全国図書館協会リスト");
document.write("<OPTION VALUE=entlib.html>&nbsp;-全国図書館委託リスト");
document.write("<OPTION VALUE=./cgi-local/wf/wforum.cgi>問い合せ掲示板");
document.write("<OPTION VALUE=./cgi-local/mc/memocal.cgi>イベントカレンダー");
document.write("<OPTION VALUE=./blog/index.php>本の紹介");
document.write("<OPTION VALUE=news.html>ゆいニュース");
document.write("</SELECT>");
document.write("</td></tr></table>");

