-
Notifications
You must be signed in to change notification settings - Fork 0
/
baolihuadu.html
6316 lines (2858 loc) · 233 KB
/
baolihuadu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>【保利华都租房,保利华都房价】东湖高新区虎泉街下马庄车站旁 - 武汉租房网-搜房网</title>
<meta name="keywords" content="武汉,保利华都租房源汇总,武汉,保利华都个人精选房源出租,武汉,保利华都整租合租房源汇总" />
<meta name="description" content="搜房武汉租房网为您提供最新、最真实的保利华都出租房源信息,每天更新大量优质保利华都租房信息,100%审核。查找武汉保利华都租房信息、个人房屋出租,就到搜房武汉租房网!" />
<link type="text/css" href="http://img1.soufun.com/rent/image/rent/styles/head20120821.css" rel="stylesheet" media="all" />
<link rel="stylesheet" type="text/css" href="http://img1.soufun.com/rent/image/rent/styles/rentlist20120821.css" />
<script type="text/javascript">
var isTSearch = 'N'; var jp = 'WUHAN'; var IsBestView = '0'; var IsCondition = '';
var url = 'wuhan.soufun.com';
var cityname = '%ce%e4%ba%ba';
var OnlyHaveImgurl = '/house-xm2610337706/x21/'; var OnlyJXurl = '/house-xm2610337706/b26/';
var jsShortDomain = 'wuhan.soufun.com';
var IsJxView = '0';
var HouseRowStyle = 'bkyellow'; var priceurl = '/house-xm2610337706/c2100-d2100-l300/'; var roomurl = '/house-xm2610337706/g2100-h2100-i2100-l300/';
var isNorth = 'N'; var str = "出租房源"; var district = ''; var purpose = '住宅';
var room = '-100' == '-100' ? '' : '-100';
var k = ''; var pricemin = '-100' == '-100' ? '0' : '-100'; var pricemax = '-100' == '-100' ? '0' : '-100'; var comerea = ''; var IsTriRa = '0'; var shortcity = "WUHAN"; var BBsDomainPersonal = "http://whbbs.soufun.com/board/esf/1006_1"; var BBsDomainAgent = "http://whbbs.soufun.com/"; var isopenshow = 'False'; var keywordurl = "/house-xm2610337706/kwnothing/"; var IsUseDelegate = 'True'; var IsUseDelegateRequire = 'True';
var isBigMap = "False"; var NoFollow = ' rel="nofollow" '; var isNoFollow = false; if (NoFollow != '') { isNoFollow = true }
function OnMouseOverStyle(obj) {
if (isBigMap == "True") {
obj.className = "picbox blueborder"
}
else {
obj.className = 'bkyellow1';
}
if (isBigMap == "True") {
obj.getElementsByTagName('div')[0].style.display = '';
}
}
function OnMouseOutStyle(obj) {
if (isBigMap == "True") {
obj.className = "picbox grayborder"
}
else {
obj.className = 'bkyellow';
}
if (isBigMap == "True") {
obj.getElementsByTagName('div')[0].style.display = 'none';
}
}
function OnMouseOverStyle1(obj) { obj.className = 'bkyellow1_new'; }
function OnMouseOutStyle1(obj) { obj.className = 'bkyellow_new'; }
</script>
<script type="text/javascript" src="http://img1.soufun.com/rent/image/rent/scripts/rentinfo/xmlhttp.js"></script>
<script type="text/javascript" src="http://img2s.soufun.com/js_ub/_ub.js?v=201211151835"></script>
<script type="text/javascript" language="javascript">
_ub.city = '武汉';
</script>
<script type="text/javascript" language="javascript">
_ub.location = 1;
_ub.biz ='z';
_ub.collect(1, {"z1":2610337706,"zc":1});
</script>
<script type="text/javascript" src="http://img1.soufun.com/rent/image/rent/scripts/scroll.js"></script>
</head>
<body style="padding: 0pt; margin: 0pt;">
<div class="wrap">
<div class="floatl">
<!-- AFP Control Code/Caption.顶部旗帜左-->
<SCRIPT LANGUAGE="JavaScript1.1" SRC="http://shows1.soufun.com/adpolestar/door/;ap=03FC26FD_865C_1531_EAC2_389D44F9A2FD;ct=js;pu=soufun;/?">
</SCRIPT>
<NOSCRIPT>
<IFRAME SRC="http://shows1.soufun.com/adpolestar/door/;ap=03FC26FD_865C_1531_EAC2_389D44F9A2FD;ct=if;pu=soufun;/?" NAME="adFrame_03FC26FD_865C_1531_EAC2_389D44F9A2FD" WIDTH="475" HEIGHT="60" FRAMEBORDER="no" BORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="no">
</IFRAME>
</NOSCRIPT>
<!-- AFP Control Code End/No.-->
<style="MARGIN: 0px 0px 0px 6px">
</div>
<div class="floatr">
<!-- AFP Control Code/Caption.顶部旗帜右-->
<SCRIPT LANGUAGE="JavaScript1.1" SRC="http://shows1.soufun.com/adpolestar/door/;ap=B59791CF_DF80_0DF6_9721_DC91912CC0D0;ct=js;pu=soufun;/?">
</SCRIPT>
<NOSCRIPT>
<IFRAME SRC="http://shows1.soufun.com/adpolestar/door/;ap=B59791CF_DF80_0DF6_9721_DC91912CC0D0;ct=if;pu=soufun;/?" NAME="adFrame_B59791CF_DF80_0DF6_9721_DC91912CC0D0" WIDTH="475" HEIGHT="60" FRAMEBORDER="no" BORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="no">
</IFRAME>
</NOSCRIPT>
<!-- AFP Control Code End/No.-->
</div>
<div class="clear"></div>
<div class="topheader">
<div class="navself1" id="navself1" >
<dl id="mainmenu"><dt><a id="rentid_01" href="http://www.soufun.com" target="_blank">搜房首页</a> | <a id="rentid_02" href="" target="_blank">资讯</a> | <a id="rentid_03" href="http://newhouse.wuhan.soufun.com/" target="_blank">新房</a> <a id="rentid_04" href="http://esf.wuhan.soufun.com" target="_blank">二手房</a> <a href="/" id="rentid_05" target="_blank">租房</a> |<span id="rentid_06"> <a href="http://home.wh.soufun.com/" target="_blank">装修</a><a href="http://home.wh.soufun.com/" target="_blank">家居</a></span> | <a id="rentid_07" href="http://whbbs.soufun.com/" target="_blank">业主论坛</a> | <a href="http://fdc.soufun.com/" id="rentid_08" target="_blank">地产数据</a></dt><dd> <span id="loginBar"></span> | <a href='http://agent.soufun.com/' id="rentid_11" target="_blank">经纪人登录</a> 客服:<span class="orange">400-630-6888 </span> | <a href="http://zu1.soufun.com" target='_blank' id="rentid_12">北京</a> <a href="http://zu.sh.soufun.com" id="rentid_13" target='_blank'>上海</a> <a href="http://zu.gz.soufun.com" id="rentid_14" target='_blank'>广州</a> <a href="http://zu.sz.soufun.com" id="rentid_15" target='_blank'>深圳</a> <a id="rentid_16" href="http://www.hkproperty.com" target="_blank">香港</a> <a href="/cities.aspx" id="rentid_17" target='_blank'>[310城市]</a></dd></dl>
</div>
<script type="text/javascript"> var jsShortDomain = 'wuhan.soufun.com';
var bbsDomain = 'http://whbbs.soufun.com/';
var city = '武汉';
var shortcity = 'WUHAN';
var newurl = "http://www.soufun.com/news/";
if (shortcity == 'NJ') {
shortcity = "nanjing";
}
if (shortcity == 'cc') {
shortcity = "changchun";
}
if (shortcity == 'SHAOXING') {
shortcity = "sx";
}
if (city == "北京") {
newurl = "http://news.soufun.com/";
}
else if (city == "滨州") {
newurl = "http://news.jn.soufun.com/";
}
else {
newurl = "http://news." + shortcity + ".soufun.com/";
}
function getObject(objectId) {
if (document.getElementById && document.getElementById(objectId)) {
return document.getElementById(objectId);
} else if (document.all && document.all(objectId)) {
return document.all(objectId);
} else if (document.layers && document.layers[objectId]) {
return document.layers[objectId];
} else {
return false;
}
}
var objbar1 = getObject("rindex");
var aid = document.getElementById('rentid_02')
if (aid) {
aid.href = newurl;
}
</script>
</div>
<!--搜索头文件开始-->
<div class="soufunsearch110615" style="margin-top:30px;margin-bottom:21px; ">
<div class="soufunsearch110615logo" id="rentid_31"><a href="http://www1.soufun.com/" target="_blank"><img src="http://img.soufun.com/rent/image/logo1.gif" alt="" /></a></div>
<div class="soufunsearch110615city" id="rentid_32" style="position:relative;">
<p>武汉</p>
<p class="zilink" >[<a href="/cities.aspx">切换</a>]</p>
</div>
<div class="soufunsearch110615right">
<div class="soufunsearch110615rightnav">
<div class="navtd">
<a id="rentid_33" target="_blank" href="http://wuhan.soufun.com/">新房</a>
</div>
<div class="navtd"><a id="rentid_34" href="http://esf.wuhan.soufun.com" target="_blank">二手房</a></div>
<div class="navtdup"><a id="rentid_35" target="_blank">租房</a></div>
<div class="navtd"><a id="rentid_40" href="http://www.youtx.com" target="_blank">短租</a></div>
<div class="navtd"><a id="rentid_36" href="http://home.wh.soufun.com/" target="_blank">装修家居</a></div>
<div class="navtd">
<a id="rentid_37" href="/map/"
target="_blank">地图</a>
</div>
<div class="navtd">
<a href="/house/a21/" target="_blank" id="rentid_38">
个人房源</a></div>
<div id="rentid_40" style="position:relative;z-index:999;left:60px;" class="navtd"><a onmouseover="moreBoxto(1112)" onmouseout="hidden_moreBoxto(1112)" href="#"><em>更多</em></a>
<div style="display: none;" id="moreBox1112" onmouseover="show_moreBoxto(1112)" onmouseout="hidden_moreBoxto(1112)" class="more0413pm">
<ul>
<li><a target="_blank" href="http://whbbs.soufun.com/">业主论坛</a></li>
<li><a target="_blank" id="pagesearch" href="http://search.soufun.com/new-house/?">网页搜索</a></li>
<li><a target="_blank" href="http://www.soufun.com/ask/">问答</a></li>
</ul>
</div>
</div>
</div>
<div class="soufunsearch110615rightform">
<form id="form_rent" name="form_rent" onsubmit="return form_action2()" action="/rent/rent_info/SearchList_New.aspx" method="get">
<div class="tr01">
<input type="text" id="input_keyw1" class="inputstyle_out" autocomplete= "off" value="输入关键字(楼盘名或地段名)" />
<input type="submit" value="" class="button" id="rentid_39" />
</div>
<div style="position: absolute; z-index:50;float:left;">
<table id="Suggestion2" bgcolor="#FFFFFF" cellpadding="4" cellspacing="0" border="0"
style="border: 1px solid #666666; position: absolute; width:800px;z-index: 100; display: none;"
class="search_select">
<tbody>
<tr>
</tr>
</tbody>
</table>
</div>
<div class="tr02" style="*padding-top:3px;">
<input type="hidden" id="strCity2" name="city" value="武汉" />
<input type="hidden" id="strDistrict2" name="district" value="" />
<input type="hidden" id="strPurpose2" name="purpose" />
<input type="hidden" id="strRoom2" name="room" />
<input type="hidden" id="strPriceMin2" name="pricemin" />
<input type="hidden" id="strPriceMax2" name="pricemax" />
<input type="hidden" id="strTrackLine2" name="trackLine" />
<input type="hidden" id="strKeyword2" name="keyword" value="" />
<input type="hidden" id="renTtype22" name="renttype" />
<input type="hidden" id="strCity22" name="strCity" value="武汉" />
<input type="hidden" id="strDistrict22" name="strDistrict" value="" />
<input type="hidden" id="strPrice22" name="Strprice" />
<input type="hidden" id="strNameKeyword22" name="StrNameKeyword" />
<input type="hidden" id="houseType222" name="houseType" value="" />
<input type="hidden" id="isfromhead" name="isfromhead" value="1" />
<input type="hidden" id="hppurpose" name="hppurpose" value="" />
<div>
<a href="javascript:;" target="_self" class="menubarnew" style="cursor:pointer;" id="strDistrictnew_a" >区县/地铁</a>
<div id="_divCityShow" class="showsearchdiv">
<div style="color:#FF6600;font-weight:bold;padding-left:5px;">按区县查询</div>
<div class="showitem" id="div_districtlist">
<table id="table_districtlist">
</table>
</div>
</div>
</div>
<div>
<a href="javascript:;" target="_self" class="menubarnew" style="cursor:pointer;" id="strPurposenew_a" >住宅</a>
<div id="_divPurposeShow" class="showsearchPurpose">
<div class="showitempurpose" id="div_purpose"></div>
</div>
</div>
<div>
<a href="javascript:;" target="_self" class="menubarnew" style="cursor:pointer;" value='' id="strPricenew_a" >价格范围</a>
<input type="hidden" value='' id="strPricenew_v" />
<div id="_divPriceShow" class="showsearchPrice">
<div style="color:#FF6600;font-weight:bold;padding-left:5px;" id="div_unit">总价(元/月)</div>
<div class="showitemprice" id="div_price"></div>
<div style="margin:3px;">
<table><tr><td><input type="text" class="searchInput" id="search_priceMin" /> - <input type="text" class="searchInput" id="search_priceMax" /></td>
<td style="cursor:pointer;"> <img id="btn_PriceConfirm" src="http://img.soufun.com/rent/image/btn-confirm.png" alt="确定" />
</td></tr></table>
</div>
</div>
</div>
<div id="_RoomBlock">
<a href="javascript:;" target="_self" class="menubarnew" style="cursor:pointer;" id="strRoomnew_a" >居室</a>
<input type="hidden" value='' id="strRoomnew_v" />
<div id="_divRoomShow" class="showsearchRoom">
<div class="showitempurpose" id="div_room"></div>
</div>
</div>
<span id="rentid_42" class="mobile"><a target="_blank" href="http://wap.soufun.com/xc/mobile.html">手机搜房</a></span>
<span id="rentid_41" class="searchmap"><a href="javascript:form_action2('map');document.getElementById('form_rent').submit();">在地图上找</a></span>
<div style="clear:both;"></div>
</div>
</form>
</div>
</div>
</div>
<script type="text/javascript">
var keywordSearch = document.getElementById('input_keyw1');
var oldpurpose = "";
function moreBoxto(numcss1112) {
document.getElementById('moreBox' + numcss1112).style.display = 'block';
}
function hidden_moreBoxto(numcss1112) {
timeoutmoreBoxto = setTimeout(function () { document.getElementById("moreBox" + numcss1112).style.display = "none"; }, 100);
}
function show_moreBoxto(numcss1112) {
window.clearTimeout(timeoutmoreBoxto);
document.getElementById("moreBox" + numcss1112).style.display = "";
}
document.getElementById("pagesearch").href = "http://search.soufun.com/new-house/?from=" + document.URL.toString();
</script>
<!--搜索End-->
<!--意见反馈1029 begin-->
<style type="text/css">
.feedback1029{width:14px;height:70px;background-color:#FFF;position:fixed;_position:absolute;_margin-bottom:30px;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));left:2px;top:85%}
.feedback1029 .feedback{position:absolute;width:15px;height:70px;color:#028ad8;font-size:12px;line-height:15px;text-decoration:none;padding:27px 6px 0 6px;text-aling:center;background:url(http://imgs.soufun.com/news/2012_10/29/1351499774687.png) no-repeat;font-family:"宋体";}
.feedback1029 .feedback:hover{color:#e1f4ff;background:url(http://imgs.soufun.com/news/2012_10/29/1351499774687.png) 0px -97px no-repeat;text-decoration:none;}
</style>
<div class="feedback1029">
<a title="" class="feedback" href="http://www.soufun.com/service/feedback/LeaveMess.aspx" target="_blank">意见反馈</a>
</div>
<!--意见反馈1029 end-->
<!--nav begin-->
<div class="nav">
<ul>
<li><a id="rentid_251" target="_self" href="/"><span>首 页</span></a></li>
<li><a class="li_on" id="rentid_252" ><span>出租房源</span></a></li>
<li><a id="rentid_253" target="_blank" href="/house/a21/"><span>个人房源</span></a></li>
<li><a id="rentid_254" target="_blank" href="/house/n32/"><span>合 租</span></a></li>
<li><a id="A1" href="/kuaizu/" target="_blank"><span>快租</span></a></li>
<li>
<a id="rentid_255" href="http://www.youtx.com/wuhan/" target="_blank"><span>短 租</span></a>
</li>
<li><a id="rentid_256" target="_blank" href="/qiuzu/"><span>求 租</span></a></li>
<li class="last"><a id="rentid_257" target="_blank" href="/villa/"><span>别 墅</span></a></li>
<li class="other blue">
<a id="rentidnew_60" href="http://esf.wuhan.soufun.com" target="_blank">二手房网</a>
<a id="rentid_258" target="_blank" href="http://shop.wuhan.soufun.com">商 铺</a>
<a id="rentid_259" target="_blank" href="http://office.wuhan.soufun.com">写字楼</a>
<a id="rentidnew_61" href="http://mall.wuhan.soufun.com" target="_blank"><strong>搜房网店</strong></a>
</li>
</ul>
</div>
<script type="text/javascript">
var _dctc = _dctc || {};
_dctc._account = _dctc._account || ['UA-24140496-1','UA-24830445-1','UA-24830823-1'];
_dctc.bid = 13;
_dctc.isNorth = _dctc.isNorth || 'N';
(function() {
var script = document.createElement('script'); script.type = 'text/javascript'; script.async = true;
script.src = 'http://js.soufunimg.com/count/load.min.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(script, s);
})();
</script>
<!--nav end-->
</div>
<div id="wrap">
<div class="guide mb10 mt10" id="rentid_83"><a href="http://www.soufun.com/" target="_blank">搜房网</a> > <a href="/" target="_blank">武汉租房</a> > <a href="/house/" target="_blank">住宅</a></div>
<div class="clear">
</div>
<div class="btu-search">
<a class="btuon" href="javascript:void(0);"><strong class="qycx">按区域查询</strong></a>
<a href="/house1/"><strong class="wuhandtcx">按地铁查询</strong></a>
<a href="/house3/" class="btu-search"><strong class="bus">按公交查询</strong></a>
<a href="/school/" class="btu-search"><strong class="xxcx">按学校查询</strong></a>
<div id="rentid_59" class="btn_gomap floatl">
<a href="/map/default.aspx?businesstype=cz&housetype=&purpose=住宅&sortby=-100&district=&comarea=&room=-100&pricemin=-100&pricemax=-100&areamin=-100&areamax=-100&keywordtype=qz&isbest=0&keyword=" rel="nofollow" target="_blank">切换到地图搜索</a></div>
</div>
<script type="text/javascript">
function dvmouseout(obj, ulid) {
document.getElementById(ulid).style.display = 'none';
obj.className = "tag_select";
}
function LocationHrefReplace(url) {
if (navigator.userAgent.indexOf("MSIE") > 0) {
var referLink = document.createElement('a');
referLink.href = url;
document.body.appendChild(referLink);
referLink.click();
} else {
window.location.replace(url);
}
}
function dvmouseover(obj, ulid) {
document.getElementById(ulid).style.display = '';
obj.className = "tag_select_hover";
}
function limouseover(obj)
{
if (obj.className != "open_selected") {
obj.className = 'open_hover';
}
}
function limouseout(obj) {
if (obj.attributes["selected"] == "true") {
obj.className = 'open_selected';
}
else {
if (obj.className != "open_selected") {
obj.className = 'open';
}
}
}
var timeout;
function hiddenPt(dl) {
var citychange = document.getElementById(dl.id);
citychange.style.display = "none";
timeout = setTimeout("hiddenPt", 100)
}
function showPt(dl) {
var citychange = document.getElementById(dl.id);
window.clearTimeout(timeout);
citychange.style.display = "block";
}
function hsetclick() {
var cb = document.getElementsByName("cb_hset");
var cbvalue = '';
for (var i = 0; i < cb.length; i++) {
if (cb[i].checked) {
cbvalue += cb[i].value + ',';
}
}
if (cbvalue != '') {
cbvalue = cbvalue.substring(0, cbvalue.length - 1);
}
var hset = '';
var href = window.location.href;
if (href.indexOf('u2') > 0) {
if (cbvalue != '') {
href = href.replace('u2' + hset, 'u2' + cbvalue);
}
else {
href = href.replace('/u2' + hset, '').replace('-u2' + hset, '').replace('-u2' + hset, '');
}
LocationHrefReplace(href);
} else {
if (cbvalue != '') {
if (href.indexOf('/house1') > 0) {
href = href.replace('/house1', '/house1-u2' + cbvalue);
}
else {
href = href.replace('/house', '/house-u2' + cbvalue);
}
LocationHrefReplace(href);
}
}
}
</script>
<div id="search">
<ul class="floatl">
<li id="rentid_47">
<dl class="quxian" id="dl_quxian">
<dd>
区<span class="pl5" />域:</dd>
<dd >
<a href="javascript:void(0);" class="orange" style="font-weight:700;" onclick='clearviewed()'>
不限</a></dd>
<dd >
<a href="/house-a0494/" >
武昌</a></dd>
<dd >
<a href="/house-a0495/" >
洪山</a></dd>
<dd >
<a href="/house-a0491/" >
江岸</a></dd>
<dd >
<a href="/house-a0490/" >
江汉</a></dd>
<dd >
<a href="/house-a0492/" >
硚口</a></dd>
<dd >
<a href="/house-a0493/" >
汉阳</a></dd>
<dd >
<a href="/house-a0934/" >
沌口</a></dd>
<dd >
<a href="/house-a0497/" >
东西湖</a></dd>
<dd >
<a href="/house-a0496/" >
青山</a></dd>
<dd >
<a href="/house-a0652/" >
江夏</a></dd>
<dd >
<a href="/house-a0651/" >
黄陂</a></dd>
<dd >
<a href="/house-a01158/" >
蔡甸</a></dd>
<dd >
<a href="/house-a0935/" >
阳逻</a></dd>
<dd >
<a href="/house-a0689/" >
新洲</a></dd>
<dd >
<a href="/house-a0759/" >
汉南</a></dd>
</dl>
<div class="shangquan" id="div_shangquan">
<div class="top">
</div>
<div class="mid" id="tagContent0">
</div>
</div>
<script type="text/javascript">if(document.getElementById("tagContent0").innerHTML.replace(/(^\s*)|(\s*$)/g, "")=="") {document.getElementById("div_shangquan").style.display='none';document.getElementById("dl_quxian").getElementsByTagName("dd")[0+1].className="";}</script>
</li>
<div class="clear">
</div>
<li id="rentid_48"><span>租<span class="pl5" />金:</span><a rel="nofollow" href="/house-xm2610337706/" class="orange bold" >不限</a><a rel="nofollow" href="/house-xm2610337706/c20-d21000/">1000元以下</a><a rel="nofollow" href="/house-xm2610337706/c21000-d22000/">1000-2000元</a><a rel="nofollow" href="/house-xm2610337706/c22000-d24000/">2000-4000元</a><a rel="nofollow" href="/house-xm2610337706/c24000-d26000/">4000-6000元</a><a rel="nofollow" href="/house-xm2610337706/c26000-d28000/">6000-8000元</a><a rel="nofollow" href="/house-xm2610337706/c28000-d20/">8000元以上</a>
<span class="set" style="">
<input id="cminPrice" type="text" size="4" value=""
title="请输入最低价格" class="input20100722" />
-
<input id="cmaxPrice" type="text" size="4" value=""
title="请输入最高价格" class="input20100722" />元
<input id="pConfirmButton" type="button" style="cursor:pointer;height:24px;height:23px\9;"
value="确定" class="input20100722" /></span></li>
<li id="rentid_50"><span>方<span class="pl5" />式:</span><a rel="nofollow" href="/house-xm2610337706/" class="orange" style="font-weight:700;">不限</a><a rel="nofollow" href="/house-xm2610337706/n31/">整租</a><a rel="nofollow" href="/house-xm2610337706/n33/">合租单间</a><a rel="nofollow" href="/house-xm2610337706/n34/">合租床位</a><a rel="nofollow" href="/room/">日租周租</a>
</li>
<li id="rentid_49"><span>户<span class="pl5" />型:</span><a rel="nofollow" href="/house-xm2610337706/" class="orange" style="font-weight:700;">不限</a><a rel="nofollow" href="/house-xm2610337706/g21/">一居</a><a rel="nofollow" href="/house-xm2610337706/g22/">二居</a><a rel="nofollow" href="/house-xm2610337706/g23/">三居</a><a rel="nofollow" href="/house-xm2610337706/g24/">四居</a><a rel="nofollow" href="/house-xm2610337706/g299/">四居以上</a>
<span class="set" style="">
<input id="_room" type="text" size="4" maxlength="1" value=""
title="请输入您想要的户型" class="input20100722" />
室
<input id="_knum" type="text" size="4" maxlength="1" value=""
title="请输入您想要的户型" class="input20100722" />
厅
<input id="_wnum" type="text" size="4" maxlength="1" value=""
title="请输入您想要的户型" class="input20100722" />
卫
<input id="RoomButton" type="button" style="cursor:pointer;height:24px;height:23px\9;"
value="确定" class="input20100722" /></span></li>
<li id="rentid_68">
<span>配<span class="pl5" />套:</span><a rel="nofollow" href="/house-xm2610337706/u21/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u21/');" value=1/>拎包入住</a><a rel="nofollow" href="/house-xm2610337706/u22/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u22/');" value=2/>家电齐全</a><a rel="nofollow" href="/house-xm2610337706/u23/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u23/');" value=3/>可上网</a><a rel="nofollow" href="/house-xm2610337706/u24/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u24/');" value=4/>可做饭</a><a rel="nofollow" href="/house-xm2610337706/u25/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u25/');" value=5/>可洗澡</a><a rel="nofollow" href="/house-xm2610337706/u26/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u26/');" value=6/>空调房</a><a rel="nofollow" href="/house-xm2610337706/u27/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u27/');" value=7/>可看电视</a><a rel="nofollow" href="/house-xm2610337706/u28/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u28/');" value=8/>有暖气</a><a rel="nofollow" href="/house-xm2610337706/u29/"><input type="checkbox" name="checkbox" id="checkbox" onclick="tijiao('/house-xm2610337706/u29/');" value=9/>有车位</a>
</li>
</ul>
<div class="clear">
</div>
</div>
<div style="position:relative" class="moresearchinfo">
<span class="floatl mr10 mt2">更多找房条件:</span>
<div class="mr10 floatl" id="selectbox">
<div class="select_box" >
<div id="select_info_装修" class="tag_select" style="cursor: pointer;" onmouseout="dvmouseout(this,'options_zx')" onmousemove="dvmouseover(this,'options_zx')" >
装修</div>
<ul id="options_zx" class="tag_options" style="position: absolute; z-index: 999;
display: none;" onmouseout="hiddenPt(this)" onmouseover="showPt(this)">
<li style="cursor: pointer;" class="open" onmouseout="limouseout(this)" onclick="LocationHrefReplace('/house-xm2610337706/')" onmousemove="limouseover(this)">不限</li>
<li style="cursor: pointer;" class="open" onmouseout="limouseout(this)" onclick="LocationHrefReplace('/house-xm2610337706/t21/')" onmousemove="limouseover(this)">毛坯</li>
<li style="cursor: pointer;" class="open" onmouseout="limouseout(this)" onclick="LocationHrefReplace('/house-xm2610337706/t22/')" onmousemove="limouseover(this)">简装修</li>
<li style="cursor: pointer;" class="open" onmouseout="limouseout(this)" onclick="LocationHrefReplace('/house-xm2610337706/t25/')" onmousemove="limouseover(this)">中等装修</li>
<li style="cursor: pointer;" class="open" onmouseout="limouseout(this)" onclick="LocationHrefReplace('/house-xm2610337706/t23/')" onmousemove="limouseover(this)">精装修</li>
<li style="cursor: pointer;" class="open" onmouseout="limouseout(this)" onclick="LocationHrefReplace('/house-xm2610337706/t24/')" onmousemove="limouseover(this)">豪华装修</li>
</ul>
</div>
</div>
<div class="mr10 floatl" id="selectbox">
<div id="select_朝向" class="select_box">
<div id="select_info_朝向" class="tag_select" style="cursor: pointer;" onmouseout="dvmouseout(this,'options_cx')" onmousemove="dvmouseover(this,'options_cx')">
朝向</div>
<ul id="options_cx" class="tag_options" style="position: absolute; z-index: 999;
display: none;" onmouseout="hiddenPt(this)" onmouseover="showPt(this)">
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">不限</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/p21/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">南北通透</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/p22/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">东西向</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/p23/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">朝南</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/p24/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">朝北</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/p25/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">朝东</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/p26/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">朝西</li>
</ul>
</div>
</div>
<div class="mr10 floatl" id="selectbox">
<div id="select_房龄" class="select_box">
<div id="select_info_房龄" class="tag_select" style="cursor: pointer;" onmouseout="dvmouseout(this,'options_fl')" onmousemove="dvmouseover(this,'options_fl')">
房龄</div>
<ul id="options_fl" class="tag_options" style="position: absolute; z-index: 999;
display: none;" onmouseout="hiddenPt(this)" onmouseover="showPt(this)">
<li style="cursor: pointer;"
class="open" onclick="LocationHrefReplace('/house-xm2610337706/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">不限</li>
<li style="cursor: pointer;"
class="open" onclick="LocationHrefReplace('/house-xm2610337706/r20-s22/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">2年以下</li>
<li style="cursor: pointer;"
class="open" onclick="LocationHrefReplace('/house-xm2610337706/r22-s25/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">2-5年</li>
<li style="cursor: pointer;"
class="open" onclick="LocationHrefReplace('/house-xm2610337706/r25-s210/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">5-10年</li>
<li style="cursor: pointer;"
class="open" onclick="LocationHrefReplace('/house-xm2610337706/r210-s20/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">10年以上</li>
</ul>
</div>
</div>
<div class="mr10 floatl" id="selectbox">
<div id="select_楼层" class="select_box">
<div id="select_info_楼层" class="tag_select" style="cursor: pointer;" onmouseout="dvmouseout(this,'options_lc')" onmousemove="dvmouseover(this,'options_lc')">
楼层</div>
<ul id="options_lc" class="tag_options" style="position: absolute; z-index: 999;
display: none;" onmouseout="hiddenPt(this)" onmouseover="showPt(this)">
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">不限</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/n20-o20/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">地下</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/n21-o21/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">1层</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/n20-o25/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">6层以下</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/n26-o212/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">6-12层</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/n213-o298/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">12层以上</li>
<li style="cursor: pointer;" class="open" onclick="LocationHrefReplace('/house-xm2610337706/n299-o299/')" onmouseout="limouseout(this)" onmousemove="limouseover(this)">顶层</li>
</ul>
</div>
</div>
<div class="clear"></div>
</div>
<div class="bgline">
</div>
<div class="finder" style="display: none">
<p>
当前找房条件>></p>
<ul>
<li class="findercon"><span class="selestfinds" id="list_103">
</span><span class="saveinfo"><a rel="nofollow" href="javascript:void(0);" id="a_savecondition">保存该找房条件</a><span
class="gspan">(</span><a rel="nofollow" href="http://esf.wuhan.soufun.com/loginnew1.aspx?furl=http://my.soufun.com/SearchHistoryList.aspx?city=WUHAN&type=rent&menu=7_8"
target="_blank" class="gray">已保存<span id="sp_conditionNum">0</span>条</a><span class="gspan">)</span></span><span
class="clearcont"><a rel="nofollow" onclick="clearviewed() " style="cursor: pointer;">清空全部</a></span>
</li>
</ul>
</div>
<div class="main mt10 mt10">
<div class="village">
<div class="villagebg">
<dl>
<dt><a target="_blank" class="blue" href="http://baolihuadu.soufun.com/">保利华都</a> <span class="gray6">(别名:保利华都三期)</span></dt>
<dd>
<p class="floatl">本月均价:<a href ="http://baolihuadu.soufun.com/" target ="_blank" ><span class="orange">1938</span></a><span class="marr10">元/月</span> 本月走势:<span class="orange"><a href ="http://baolihuadu.soufun.com/" target ="_blank" >↑+0.25%</a></span></p>
<p class="floatl blue"> <a href="http://esf.wuhan.soufun.com/housing/2610337706/p2_1/" class="icon_img" target ="_blank">小区图片</a> <a href="http://zu.wuhan.soufun.com/map/default.aspx?newcode=2610337706" class="icon_map" target ="_blank">地图</a> <a href="http://whbbs.soufun.com//board/2610337706/" class="icon_bbs" target ="_blank">业主论坛</a></p>
</dd>
</dl>
</div>
</div>
<div id="rentid_51" class="bianjituijian blue"><span>推荐:</span><a href="http://zu.wuhan.soufun.com/zt/201207/bld59.html" target="_blank" >光谷精品一居 </a><a href="http://zu.wuhan.soufun.com/kuaizu-a0228646/" target="_blank" >500以下租房 </a><a href="http://zu.wuhan.soufun.com/kuaizu-a0228645/" target="_blank" >轻轨沿线租房 </a><a href="http://zu.wuhan.soufun.com/kuaizu-a0228644/" target="_blank" >整租单身公寓 </a><a href="http://zu.wuhan.soufun.com/kuaizu-a0228647/" target="_blank" >精装两房出租 </a><a href="http://zu.wuhan.soufun.com/kuaizu-a0228643/" target="_blank" >低价求职公寓 </a><a href="http://zu.wuhan.soufun.com/house-a0490/c20-d21000/" target="_blank" >江汉千元以下 </a></div>
<div class="hdm black">
<dl id="bnt" style="position: relative">
<dd id="rentid_56"class="option1 white"><a rel="nofollow" href="/house-xm2610337706/">全部房源</a></dd>
<dd id="rentid_58"class="option2 "><a href="/house-xm2610337706/a21/">个人房源</a></dd>
<dd class="option2 "><a href="/room/">短租房源</a></dd>
<dd style="font-family: '宋体'; float: right">
<p class="results floatl">
找到<strong class="number orange">280</strong>条房源</p>
<p id="rentid_65" class="pages floatl">
<a style="color:gray; TEXT-DECORATION:none;">上一页</a> <span style=" line-height:27px; border:1px solid #ddd; padding:2px 4px 1px;background:#fff; float:none">1</span> <a href="/house-xm2610337706/i32/">下一页</a>
</p>
</dd>
</dl>
</div>
<div class="clear">
</div>
<ul class="searchbar">
<li class="search floatl" id="rentid_60">
<div class="search_input">
<div class="inp1">
<input name="mykeyword" type="text" id="mykeyword" style="width: 140px;" value="小区或地段" size="25" onfocus="javascript:if(this.value.trim()=='小区或地段'){this.value='';this.style.color = 'black';}" onblur="javascript:if(this.value.trim()==''){this.value='小区或地段';this.style.color = 'gray';}" onkeypress="setsearchword_ev(event);" />
<script language="javascript" type="text/javascript">
function setsearchword_ev(ev) {
ev = ev || window.event;
if (ev.keyCode == 13) {
setsearchword('/house-xm2610337706/kwnothing/');
}
}
</script>
<div class="inp2"></div>
</div>
<span><input type="button" onclick="setsearchword('/house-xm2610337706/kwnothing/')" value="" class="button_search"/></span>
</div>
<span style="padding-left: 5px"><a class="blue" href="javascript:void(0);"
onclick="setsearchword('/house-xm2610337706/','1')">在结果中查找</a> </span>
</li>
<li id="rentid_61" style="float:right;">
<div class="box" style="float:right; padding-left:10px;">
<comboboxnew id="cbx_time" width="80" framewidth="78" labelposition="top" columns="1"
groupclass="group" itemclass="item" itemoverclass="itemOver" itemselectedclass="itemFocus"
text="发布时间" value="0">
<group>
<item text="1天内" initial="1"></item>
<item text="3天内" initial="2"></item>
<item text="7天内" initial="3"></item>
<item text="不限" initial="0"></item>
</group>
</comboboxnew>
</div>
<label id="ss" class="green box" style="cursor: pointer;float:right;">
<input id="isbest" type="checkbox" />多图房源</label>
<label id="tt" class="orange box" style="display:none">
<input id="isjx" type="checkbox" />精品房源</label>
</li>
</ul>
<dl id="tips" class="updown">
<dt id="rentid_111">
<h1 style="margin-right:10px" class="floatl"><a target="_blank" href="/house-xm2610337706/" class="blue">保利华都租房</a></h1>
<input type="submit" id="btn_list" value=" ">
<input type="submit" value=" " id="btn_bigpic">
</dt>
<dd class="black">
<div class="floatl">
排序:</div>
<div class="floatl" style="margin-right: 10px;" id="rentid_63">
<comboboxnew id="orderbys" width="105" framewidth="128" labelposition="top" columns="1"
groupclass="group" itemclass="item" itemoverclass="itemOver" itemselectedclass="itemFocus"
text="默认排序" value="-100">
<group>
<item text="按发布时间排序" initial="1"></item>
<item text="按更新时间排序" initial="6"></item>
<item text="按租金从低到高排序" initial="2"></item>
<item text="按租金从高到低排序" initial="3"></item>
<item text="按面积从小到大排序" initial="4"></item>
<item text="按面积从大到小排序" initial="5"></item>
<item text="默认排序" initial="0"></item>
</group>
</comboboxnew>
<script type="text/javascript">
var OrderUrl = [];
OrderUrl[0] = '/house-xm2610337706/';OrderUrl[6] = '/house-xm2610337706/h31/';OrderUrl[1] = '/house-xm2610337706/h316/';OrderUrl[2] = '/house-xm2610337706/h34/';OrderUrl[3] = '/house-xm2610337706/h33/';OrderUrl[4] = '/house-xm2610337706/h38/';OrderUrl[5] = '/house-xm2610337706/h37/';
var TimeUrl=[];
TimeUrl[0] = '/house-xm2610337706/';TimeUrl[1] = '/house-xm2610337706/w31/';TimeUrl[2] = '/house-xm2610337706/w32/';TimeUrl[3] = '/house-xm2610337706/w33/';
</script>
</div>
<a rel="nofollow" style="cursor:pointer;" href="/house-xm2610337706/h34/" ><span id="pricehigh">租金</span></a>
<a rel="nofollow" style="cursor:pointer;" href="/house-xm2610337706/h38/" ><span id="sorthigh">面积</span></a>
</dd>
</dl>
<div id="houseinfoimg" class="esflist">
<input name="CurrentCondition" type="hidden" id="CurrentCondition" value="租房 【保利华都租房,保利华都房价】东湖高新区虎泉街下马庄车站旁 " />
<div class="list_pic" id="rentid_66">
<div onmouseout="OnMouseOutStyle(this)" onmouseover="OnMouseOverStyle(this)" id="houseRow_0_4851674"
class="bkyellow">
<div class="pic">
<a href="/chuzu/3_4851674_1.htm" target="_blank" title="">
<img usertype="1" src2="http://img1.soufunimg.com/viewimage/agents/2012_10/23/19/57/26/wuhan/houseinfo/409358023700/100x75.jpg"
src="http://img.soufun.com/secondhouse/image/loading100_75.gif" width="100" height="75"
onerror="imgiserror(this,'http://img1.soufunimg.com/agents/2012_10/23/19/57/26/wuhan/houseinfo/409358023700.jpg');" /></a></div>
<div class="house">
<dl>
<dt>
<p class="housetitle">
<a href='/chuzu/3_4851674_1.htm' target="_blank"><strong>
21世纪不动产小蔡推荐:保利华都精装2房急租!
</strong></a>
<img src="http://img1.soufun.com/rent/image/newsearch/icon_pic1.gif" align="absmiddle"/>
</p>
<p class="black">
<a href="/house-xm2610337706/" title="保利华都" target="_blank"><span
id='Project_4851674'>
保利华都
</span></a>
<span title="东湖高新区虎泉街下马庄车站旁">东湖高新区虎泉街下马庄车站旁</span>
<span class="dtjt"><a rel="nofollow" href="http://zu.wuhan.soufun.com/map/default.aspx?newcode=2610337706" target="_blank">地图交通</a></span>
</p>
<p class="black">
[整租] <span>90平米</span>,精装修,9/33层,南北向</p>
<p class="gray9 time">
<a class="marr7" href='http://esf.wuhan.soufun.com/agent/agtagent/25562993.htm' title="访问[21世纪不动产]的网上店铺,查看更多房源" style='color:#333333' target='_blank'>21世纪不动产</a><a class="marr7" href='http://esf.wuhan.soufun.com/a/caihp5201231' title="访问[蔡海平]的个人网上店铺,查看更多房源" style='color:#333333' target='_blank'>蔡海平</a><span class="icon_listtel"><a href="/chuzu/3_4851674_1.htm" target="_blank" style="color:#666">查看电话</a></span>
<span>
11分钟前更新
</p>
</dt>
<dd class="area">
2室1厅
</dd>
<dd class="money">
<strong id='Price_4851674'>2000</strong><span id='PriceType_4851674'>元/月</span>
<p class="star"></p>
</dd>
<dd class="byb">
</dd>
</dl>
</div>
<div class="clear">
</div>
</div>
<div onmouseout="OnMouseOutStyle(this)" onmouseover="OnMouseOverStyle(this)" id="houseRow_1_4939421"
class="bkyellow">
<div class="pic">
<a href="/chuzu/3_4939421_1.htm" target="_blank" title="">
<img usertype="1" src2="http://imgs.soufun.com/viewimage/house/2007_09/12/1189582900214/100x75.jpeg"
src="http://img.soufun.com/secondhouse/image/loading100_75.gif" width="100" height="75"
onerror="imgiserror(this,'http://imgs.soufun.com/house/2007_09/12/1189582900214.jpeg');" /></a></div>
<div class="house">
<dl>
<dt>
<p class="housetitle">
<a href='/chuzu/3_4939421_1.htm' target="_blank"><strong>
独一无二的一房!绝对超值的房子哦!
</strong></a>
<img src="http://img1.soufun.com/rent/image/newsearch/icon_pic1.gif" align="absmiddle"/>
</p>
<p class="black">
<a href="/house-xm2610337706/" title="保利华都" target="_blank"><span
id='Project_4939421'>
保利华都
</span></a>
<span title="东湖高新区虎泉街下马庄车站旁">东湖高新区虎泉街下马庄车站旁</span>
<span class="dtjt"><a rel="nofollow" href="http://zu.wuhan.soufun.com/map/default.aspx?newcode=2610337706" target="_blank">地图交通</a></span>
</p>
<p class="black">
[整租] <span>58平米</span>,精装修,21/29层,北向</p>
<p class="gray9 time">
<a class="marr7" href='http://esf.wuhan.soufun.com/agent/agtagent/32000272.htm' title="访问[21世纪不动产]的网上店铺,查看更多房源" style='color:#333333' target='_blank'>21世纪不动产</a><a class="marr7" href='http://esf.wuhan.soufun.com/a/a273107510a' title="访问[陈宸]的个人网上店铺,查看更多房源" style='color:#333333' target='_blank'>陈宸</a><span class="icon_listtel"><a href="/chuzu/3_4939421_1.htm" target="_blank" style="color:#666">查看电话</a></span>
<span>
12分钟前更新
</p>
</dt>
<dd class="area">
1室1厅
</dd>
<dd class="money">
<strong id='Price_4939421'>1500</strong><span id='PriceType_4939421'>元/月</span>
<p class="star"></p>
</dd>
<dd class="byb">
</dd>
</dl>
</div>
<div class="clear">
</div>
</div>
<div onmouseout="OnMouseOutStyle(this)" onmouseover="OnMouseOverStyle(this)" id="houseRow_2_4933016"
class="bkyellow">
<div class="pic">
<a href="/chuzu/3_4933016_1.htm" target="_blank" title="">
<img usertype="1" src2="http://img1.soufunimg.com/viewimage/agents/2012_11/26/12/87/94/wuhan/houseinfo/400525338500/100x75.jpg"
src="http://img.soufun.com/secondhouse/image/loading100_75.gif" width="100" height="75"
onerror="imgiserror(this,'http://img1.soufunimg.com/agents/2012_11/26/12/87/94/wuhan/houseinfo/400525338500.jpg');" /></a></div>
<div class="house">
<dl>
<dt>
<p class="housetitle">
<a href='/chuzu/3_4933016_1.htm' target="_blank"><strong>
地铁口 保利华都 温馨一房 拎包入住 随时看房
</strong></a>
<img src="http://img1.soufun.com/rent/image/newsearch/icon_pic1.gif" align="absmiddle"/>
</p>
<p class="black">
<a href="/house-xm2610337706/" title="保利华都" target="_blank"><span
id='Project_4933016'>
保利华都
</span></a>
<span title="东湖高新区虎泉街下马庄车站旁">东湖高新区虎泉街下马庄车站旁</span>
<span class="dtjt"><a rel="nofollow" href="http://zu.wuhan.soufun.com/map/default.aspx?newcode=2610337706" target="_blank">地图交通</a></span>
</p>
<p class="black">
[整租] <span>56平米</span>,精装修,21/29层,南向</p>
<p class="gray9 time">
<a class="marr7" href='http://esf.wuhan.soufun.com/agent/agtagent/32000272.htm' title="访问[21世纪不动产]的网上店铺,查看更多房源" style='color:#333333' target='_blank'>21世纪不动产</a><a class="marr7" href='http://esf.wuhan.soufun.com/a/c21zwei' title="访问[赵威]的个人网上店铺,查看更多房源" style='color:#333333' target='_blank'>赵威</a><span class="icon_listtel"><a href="/chuzu/3_4933016_1.htm" target="_blank" style="color:#666">查看电话</a></span>
<span>
19分钟前更新
</p>
</dt>
<dd class="area">
1室1厅
</dd>
<dd class="money">
<strong id='Price_4933016'>1500</strong><span id='PriceType_4933016'>元/月</span>
<p class="star"></p>
</dd>
<dd class="byb">
</dd>
</dl>
</div>
<div class="clear">
</div>
</div>
<div onmouseout="OnMouseOutStyle(this)" onmouseover="OnMouseOverStyle(this)" id="houseRow_3_4926959"
class="bkyellow">
<div class="pic">
<a href="/chuzu/3_4926959_1.htm" target="_blank" title="">
<img usertype="1" src2="http://imgs.soufun.com/viewimage/house/2010_08/17/wuhan/1282013507283_000/100x75.jpg"
src="http://img.soufun.com/secondhouse/image/loading100_75.gif" width="100" height="75"
onerror="imgiserror(this,'http://imgs.soufun.com/house/2010_08/17/wuhan/1282013507283_000.jpg');" /></a></div>
<div class="house">
<dl>
<dt>
<p class="housetitle">
<a href='/chuzu/3_4926959_1.htm' target="_blank"><strong>
21世纪孙昌国推荐:保利华都毛坯两房 可作仓库用 超低价出租
</strong></a>
<img src="http://img1.soufun.com/rent/image/newsearch/icon_pic1.gif" align="absmiddle"/>
</p>
<p class="black">
<a href="/house-xm2610337706/" title="保利华都三期" target="_blank"><span
id='Project_4926959'>
保利华都三期
</span></a>
<span title="东湖高新区虎泉街下马庄车站旁">东湖高新区虎泉街下马庄车站旁</span>
<span class="dtjt"><a rel="nofollow" href="http://zu.wuhan.soufun.com/map/default.aspx?newcode=2610337706" target="_blank">地图交通</a></span>
</p>
<p class="black">
[整租] <span>92平米</span>,毛坯,24/33层,南北向</p>
<p class="gray9 time">
<a class="marr7" href='http://esf.wuhan.soufun.com/agent/agtagent/32000272.htm' title="访问[21世纪不动产]的网上店铺,查看更多房源" style='color:#333333' target='_blank'>21世纪不动产</a><a class="marr7" href='http://esf.wuhan.soufun.com/a/scg555' title="访问[孙昌国]的个人网上店铺,查看更多房源" style='color:#333333' target='_blank'>孙昌国</a><span class="icon_listtel"><a href="/chuzu/3_4926959_1.htm" target="_blank" style="color:#666">查看电话</a></span>
<span>
28分钟前更新
</p>
</dt>
<dd class="area">
2室2厅
</dd>
<dd class="money">
<strong id='Price_4926959'>1500</strong><span id='PriceType_4926959'>元/月</span>
<p class="star"></p>
</dd>
<dd class="byb">
</dd>
</dl>
</div>
<div class="clear">
</div>
</div>