function launch_report(obj) {    var location = obj.options[obj.selectedIndex].value;    if (location) {	document.location.href = location;    }}function menu() {	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=\"http://www.ester.co.jp/nigawa5/index.html\">- アベニュー仁川5期 [残り9邸です！]");	document.write("<option value=\"http://www.ester.co.jp/shukugawa_new/index.html\">- アベニュー夙川II [残り3邸です！]");	document.write("<option value=\"http://www.ester.co.jp/okuhata/index.html\">- アベニュー奥畑 [完売しました]");	document.write("<option value=\"http://www.ester.co.jp/ashiya_higashiyama/index.html\">- アベニュー芦屋東山 [完売しました]");	document.write("<option value=\"http://www.ester.co.jp/nigawa_new/index.html\">- アベニュー仁川第4期 [残り1邸です！]");	document.write("<option value=\"http://www.ester.co.jp/ikeda/index.html\">- アベニュー池田・畑 [完売しました]");	document.write("<option value=\"http://www.ester.co.jp/shukugawa/index.html\">- アベニュー夙川 [完売しました]");	document.write("<option value=\"http://www.ester.co.jp/houbai/index.html\">- アベニュー宝梅III [完売しました]");	document.write("<option value=\"http://www.ester.co.jp/nigawa/index.html\">- アベニュー仁川[完売しました]");	document.write("<option value=\"http://www.ester.co.jp/kurakuen/index.html\">- アベニュー苦楽園 [完売しました]");	document.write("</select>");	document.close();}
