function launch_report(obj) {    var location = obj.options[obj.selectedIndex].value;    if (location) {	document.location.href = location;    }}function backnumber() {	document.open();	document.write("<select name=\"hoge\" class=\"form\" onChange=\"launch_report\(this\)\">");	document.write("<option value=\"\">\ ↓他の月の記念日あれこれ \ ");	document.write("<option value=\"\">\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-");	document.write("<option value=\"../01/index\.html\">●1月の記念日あれこれ");	document.write("<option value=\"../02/index\.html\">●2月の記念日あれこれ");	document.write("<option value=\"../03/index\.html\">●3月の記念日あれこれ");	document.write("<option value=\"../04/index\.html\">●4月の記念日あれこれ");	document.write("<option value=\"../05/index\.html\">●5月の記念日あれこれ");	document.write("<option value=\"../06/index\.html\">●6月の記念日あれこれ");	document.write("<option value=\"../07/index\.html\">●7月の記念日あれこれ");	document.write("<option value=\"../08/index\.html\">●8月の記念日あれこれ");	document.write("<option value=\"../09/index\.html\">●9月の記念日あれこれ");	document.write("<option value=\"../10/index\.html\">●10月の記念日あれこれ");	document.write("<option value=\"../11/index\.html\">●11月の記念日あれこれ");	document.write("<option value=\"../12/index\.html\">●12月の記念日あれこれ");	document.write("</select>");	document.close();}