

function launch_report(obj) {
    var location = obj.options[obj.selectedIndex].value;
    if (location) {
	top.document.location.href = location;
    }
}
function puldown() {
	document.open();
	document.write("<select name=\"hoge\" size=\"1\" style=\"width:171px;\" onChange=\"launch_report\(this\)\">");
	document.write("<option value=\"\">\ メニューを選択\ ");
	document.write("<option value=\"\">\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-");
	document.write("<option value=\"../cooking_goods/index.html\">◆調理便利グッズ");
	document.write("<option value=\"../cookingfoil/index.html\">◆クッキングホイル");
	document.write("<option value=\"../clean_kitchen/index.html\">◆クリーンキッチングッズ");
	document.write("<option value=\"../clean_kitchen/abura/index.html\">　・油ハネをガード!");
	document.write("<option value=\"../clean_kitchen/wall/index.html\">　・壁面に");
	document.write("<option value=\"../clean_kitchen/range/index.html\">　・レンジフードに");
	document.write("<option value=\"../clean_kitchen/kanki/index.html\">　・換気扇に");
	document.write("<option value=\"../clean_kitchen/gasmat/index.html\">　・ビルトインコンロに");
	document.write("<option value=\"../clean_kitchen/gastable/index.html\">　・コンロまわりに");
	document.write("<option value=\"../clean_kitchen/y-goods/index.html\">　・毎日のお掃除に");
	document.write("<option value=\"../clean_kitchen/sink/index.html\">　・調理台・戸棚・流し台に");
	document.write("<option value=\"../clean_kitchen/hard/index.html\">　・何度も洗えるハード品");
	document.write("<option value=\"../lunchbox/index.html\">◆おべんと用小物グッズ");
	document.write("<option value=\"../outdoor/index.html\">◆アウトドアグッズ");
	document.write("<option value=\"../cool_heat/index.html\">◆保冷・保温グッズ");
	document.write("<option value=\"../clean_goods/index.html\">◆エアコングッズ");
	document.write("</select>");
	document.close();
}
