function launch_report(obj) {    var location = obj.options[obj.selectedIndex].value;    if (location) {	document.location.href = location;    }}function other_customer() {	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=\"./index\.html\">乗子衣装トップページ");	document.write("<option value=\"\">\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-");	document.write("<option value=\"./02\.html\">[姫路市勝原区] 合田 真一様");	document.write("<option value=\"./06\.html\">[姫路市網干区] 畠中 教員様");	document.write("<option value=\"./01\.html\">[姫路市網干区] 和田 智様");	document.write("<option value=\"./03\.html\">[姫路市勝原区] 内海 隆宜様");	document.write("<option value=\"./04\.html\">[姫路市網干区] 宮田 幸二様");	document.write("<option value=\"./05\.html\">[姫路市網干区] 三枝 誠一様");	document.write("<option value=\"./07\.html\">[姫路市網干区] 濱中公聡様");	document.write("</select>");	document.close();}
