function jump(obj) {
    var location = obj.options[obj.selectedIndex].value;
    if (location) {
	top.document.location.href = location;
    }
}
function direct_jump() {
	document.open();
	document.write("<form name=\"form\">");
	document.write("<select name=\"hoge\" size=\"1\" onChange=\"jump\(this\)\">");
	document.write("<option value=\"\">\お選びください");
	document.write("<option value=\"index.shtml\">　トップページ");
	document.write("<option value=\"oshirase_neo.shtml\">　本会からのお知らせ");
	document.write("<option value=\"goannai_neo.shtml\">　本会のご案内");
	document.write("<option value=\"kenpoku_neo.shtml\">　各地区だより - 県北");
	document.write("<option value=\"kenchu_neo.shtml\">　各地区だより - 県中");
	document.write("<option value=\"kennan_neo.shtml\">　各地区だより - 県南");
	document.write("<option value=\"aizu_neo.shtml\">　各地区だより - 会津");
	document.write("<option value=\"sousou_neo.shtml\">　各地区だより - 相双");
	document.write("<option value=\"iwaki_neo.shtml\">　各地区だより - いわき");
	document.write("<option value=\"jihei_neo.shtml\">　自閉症をご存知ですか？");
	document.write("<option value=\"nyukai_neo.shtml\">　入会のご案内");
	document.write("<option value=\"toiawase_neo.shtml\">　問い合わせ先");
	document.write("<option value=\"link_neo.shtml\">　リンク");
	document.write("<option value=\"mailto:info@asj-fukushima.com\">　メール");
	document.write("");
	document.write("</select>");
	document.write("</form>");
	document.close();
}