//「2006春 桜だより」
CNT = 7;
INF = new Array(CNT)
INF[1]  = "10sakura060315.htm	2006.3.15／高知城お堀周り・城西公園"
INF[2]  = "10sakura060324.htm	2006.3.24／鏡川周辺・かるぽーと"
INF[3]  = "10sakura060325-2.htm	2006.3.25／針木浄水場"
INF[4]  = "10sakura060325.htm	2006.3.25／高知城お堀周り・城西公園"
INF[5]  = "10sakura060326.htm	2006.3.26／仁淀川周辺"
INF[6]  = "10sakura060401.htm	2006.4.1／横浜周辺"
INF[7]  = "10sakura060404.htm	2006.4.4／高知城 〜土佐二十四万石博開催中〜"

/*
'==============================================================================
' もーり娘が行く！「2006春 桜だより」画面遷移用コンボボックスの表示
'==============================================================================
*/
//目次を作成
function DrawSakuraCmb (idx) {
    var wInfoArray;
    var wBuf;

    wBuf = "";
    for (i=1;i<CNT+1;i++) {
        wInfoArray = INF[i].split("\t");
        if (i == idx) {
            wBuf = wBuf + "<OPTION value=\"" + wInfoArray[0] + "\" selected>" + wInfoArray[1] +  "</OPTION>\n"
        } else {
            wBuf = wBuf + "<OPTION value=\"" + wInfoArray[0] + "\">" + wInfoArray[1] +  "</OPTION>\n"
  	    }
    }
    //オプションボタンを編集
    if (wBuf != null) {
        wBuf = "<SMALL>過去の桜だよりを見る：</SMALL><SELECT name=\"select\" onChange=\"clkSelect(this);\">\n" + wBuf + "</SELECT>\n"
        wBuf = wBuf + "<BR>\n"
        wBuf = wBuf + "<IMG src=\"/dmr/images/ico_mark.gif\" width=\"9\" height=\"9\" hspace=\"2\">\n"
        wBuf = wBuf + "<A href=\"08sakuratop.htm\"><SMALL>2005年の桜だよりを見る</SMALL></A>\n"
    }

    //書き出し
    document.write("<FORM name=\"sakura2006\">");
    document.write(wBuf);
    document.write("</FORM>");
}

//プルダウン項目の選択されたページに遷移する
function clkSelect (seldata) {
	if (seldata.value != "") {
		window.location = seldata.options[seldata.selectedIndex].value;
	}
}


