function input(){
var menu = new Array();
menu[1] = '教えて！サプリメントメニュー';
menu[2] = 'サプリメントの背景';
menu[3] = '保健機能食品制度について';
menu[4] = 'サプリメントQ&A';

	for(i=1; i<menu.length; i++){
		document.Form.sel.options[i] = new Option(menu[i]);
	}
}

function goPage(){
var URL = new Array();
URL[0] = '';
URL[1] = '/hc/supple/index.html';
URL[2] = '/hc/supple/supple_01.html';
URL[3] = '/hc/supple/supple_03.html';
URL[4] = '/hc/supple/supple_02.html';

select=document.Form.sel.selectedIndex;
	if(URL[select] != ''){
		location.href=URL[select];
	}
}
