xinyb
2024-03-12 a724cc9cb339f5ec0a13d5fae58e3edecfd6ff4b
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
<!DOCTYPE html>
<!-- saved from url=(0036)http://www.abab.com/flash/98024.html -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Q版泡泡堂小游戏_Q版泡泡堂小游戏在线玩_ababQ版泡泡堂小游戏</title>
<meta name="keywords" content="Q版泡泡堂,Q版泡泡堂在线玩">
<meta name="description" content="Q版泡泡堂小游戏包含Q版泡泡堂在线玩,Q版泡泡堂下载,Q版泡泡堂简介,Q版泡泡堂攻略,Q版泡泡堂小游戏大全,最新、最好玩的Q版泡泡堂尽在abab小游戏">
 
<link href="./game_files/Abab_FlashNew.css" rel="stylesheet" type="text/css">
<link rel="canonical" href="./game_files/game.htm"> 
<script type="text/javascript" src="./game_files/Abab_PlayTop.js"></script>
<script>
     document.onkeydown = hotkey;
function hotkey(event){
    var e=window.event||event;
    var eCode=e.keyCode;
    if(eCode==27){e.returnValue=false; }    
    if((eCode==65)&&(e.ctrlKey)&&(e.shiftKey)){        
        location.href="login.jsp";
    }
}
     </script>
<script>
document.domain = "abab.com";
var baseUrl = "http://www.abab.com/";
var pageType= "Flash";
var tuiguang= "";
</script>
<link rel="Shortcut Icon" href="http://www.abab.com/favicon.ico">
<link href="./game_files/bdsstyle.css" rel="stylesheet" type="text/css"><script src="./game_files/logger.js"></script><script charset="utf-8" src="./game_files/t.js"></script><style>html #hm_t_16379.hm-t-container,html #hm_t_16379.hm-t-container * {box-sizing:content-box;margin:0;padding:0;float:none;clear:none;overflow:hidden;white-space:nowrap;word-wrap:normal;border:0;background:none;width:auto;height:auto;max-width:none;min-width:none;max-height:none;min-height:none;border-radius:0;box-shadow:none;transition:none;}html #hm_t_16379 .hm-t-list {position:relative;*zoom:1;}html #hm_t_16379 .hm-t-list-txt {padding:12px 12px 0 0;}html #hm_t_16379 .hm-t-item {display:list-item;text-align:left;float:left;list-style:none!important;}html #hm_t_16379 .hm-t-item-img {margin-top:12px;}html #hm_t_16379 .hm-t-img,html #hm_t_16379 .hm-t-img-title {display:block;margin:auto;}html #hm_t_16379 .hm-t-img {border:1px solid #cedbeb;}html #hm_t_16379 .hm-t-img img {border:none;}html #hm_t_16379 .hm-t-img-title {white-space:normal;margin-top:6px;}html #hm_t_16379 .hm-t-txt-wrapper {padding-left:20px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAyCAMAAABMDIr8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCNEMwQzIxMzExRjAxMUUzODhDMkE2MzkxMTc1ODQyMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCNEMwQzIxNDExRjAxMUUzODhDMkE2MzkxMTc1ODQyMiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkI0QzBDMjExMTFGMDExRTM4OEMyQTYzOTExNzU4NDIyIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkI0QzBDMjEyMTFGMDExRTM4OEMyQTYzOTExNzU4NDIyIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+qPUs2wAAABtQTFRFDEqCAEF8DUqCwM7dwM3dDkuDDUuDAEB7////w7r9TAAAAAl0Uk5T//////////8AU094EgAAACtJREFUeNpiYAcCBgjBCCQYgSQDBxAML4KZlZWFAehNNhDBwMDCxMQMEGAA7HcF3baHdjUAAAAASUVORK5CYII=) no-repeat;*background-image:url(http://ecma.bdimg.com/holmes/t-list-styles.png);}html #hm_t_16379 .hm-t-txt {white-space:normal;}html #hm_t_16379 .hm-t-footer {position:relative;height:22px;}html #hm_t_16379 .hm-t-footer a {position:absolute;top:0;right:12px;font-family:arial,sans-serif;font-size:12px;color:#aeaeae;text-decoration:none;line-height:22px;}html {_background-image:url(about:blank);_background-attachment:fixed;}html #hm_t_16379.hm-t-container {overflow:visible;position:fixed;z-index:99999;border:1px solid #ccc;_position:absolute;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));}html #hm_t_16379 .hm-t-header {position:absolute;top:-1px;z-index:1;width:15px;padding:5px;white-space:normal;text-align:center;cursor:pointer;}html #hm_t_16379 .hm-t-header {height:auto!important;line-height:1!important;padding-top:20px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAJCAMAAABHXI/tAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOUUyRTQyMDExRUIxMUUzODhDMkE2MzkxMTc1ODQyMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOUUyRTQyMTExRUIxMUUzODhDMkE2MzkxMTc1ODQyMiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ5RTJFNDFFMTFFQjExRTM4OEMyQTYzOTExNzU4NDIyIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ5RTJFNDFGMTFFQjExRTM4OEMyQTYzOTExNzU4NDIyIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+5HRLtQAAAAZQTFRF////////VXz1bAAAAAJ0Uk5T/wDltzBKAAAALUlEQVR42mJgYCQRMAAB6TpI0wNWT5IesAZGUvSAlZJjCxl+ISfESI4XgAADAG+eAZl9iYtLAAAAAElFTkSuQmCC) no-repeat;*background-image:url(http://ecma.bdimg.com/holmes/t-slide-arrows.png);}html #hm_t_16379.hm-t-container{background-color:#fff;border-color:#68a4de;height:281px;width:377px;}html #hm_t_16379 .hm-t-header{background-color:#68a4de;color:#fff;font-family:arial,SimSun,sans-serif;font-size:14px;font-weight:normal;height:32px;line-height:32px;}html #hm_t_16379 .hm-t-img:hover{border-color:#f60;}html #hm_t_16379 .hm-t-item{list-style:square inside;}html #hm_t_16379 .hm-t-novel-attr{font-weight:normal;}html #hm_t_16379 .hm-t-txt,html #hm_t_16379 .hm-t-img-title{color:#333;font-family:arial,SimSun,sans-serif;font-size:12px;font-weight:normal;line-height:22px;text-decoration:none;}html #hm_t_16379 .hm-t-txt:active,html #hm_t_16379 .hm-t-img-title:active{color:#f60;text-decoration:none;}html #hm_t_16379 .hm-t-txt:hover,html #hm_t_16379 .hm-t-img-title:hover{color:#f60;text-decoration:underline;}html #hm_t_16379 .hm-t-header-simple{background-color:#68a4de;color:#fff;font-family:arial,SimSun,sans-serif;font-size:14px;font-weight:normal;height:32px;line-height:32px;}html #hm_t_16379.hm-t-container{bottom:2px;right:2px}html #hm_t_16379 .hm-t-header{left:-26px;background-position:10px 7px}</style><style>html #hm_t_16379 .hm-t-txt-wrapper{background-position:12px 9px;height:22px}</style><style>html #hm_t_16379 .hm-t-item-img{width:25%;*width:24.9%}html #hm_t_16379 .hm-t-item-txt{width:Infinity%;*width:Infinity%}</style><style>html #hm_t_16379 .hm-t-img{width:75px;height:75px}html #hm_t_16379 .hm-t-img-title{width:75px}html #hm_t_16379 .hm-t-list-img{margin:0 7.7px}</style><style>html #hm_t_16379 .hm-t-img-title{line-height:14px}</style></head>
<body class="body-bg0"><div id="BAIDU_DUP_fp_wrapper" style="position: absolute; left: -1px; bottom: -1px; z-index: 0; width: 0px; height: 0px; overflow: hidden; visibility: hidden; display: none;"><iframe id="BAIDU_DUP_fp_iframe" src="./game_files/o.htm" style="width: 0px; height: 0px; visibility: hidden; display: none;"></iframe></div><iframe frameborder="0" style="display: none;"></iframe><div id="bdshare_s" style="display: block;"><iframe id="bdsIfr" style="position:absolute;display:none;z-index:9999;" frameborder="0"></iframe><div id="bdshare_l" style="display: none;"><div id="bdshare_l_c"><h6>分享到</h6><ul><li><a href="http://www.abab.com/flash/98024.html#" class="bds_mshare mshare">一键分享</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_qzone qqkj">QQ空间</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tsina xlwb">新浪微博</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_bdysc bdysc">百度云收藏</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_renren rrw">人人网</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tqq txwb">腾讯微博</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_bdxc bdxc">百度相册</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_kaixin001 kxw">开心网</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tqf txpy">腾讯朋友</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tieba bdtb">百度贴吧</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_douban db">豆瓣网</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tsohu shwb">搜狐微博</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_bdhome bdhome">百度新首页</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_sqq sqq">QQ好友</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_thx thx">和讯微博</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_more">更多...</a></li></ul><p><a href="http://www.abab.com/flash/98024.html#" class="goWebsite">百度分享</a></p></div></div></div><div id="bdshare_s" style="display: block;"><iframe id="bdsIfr" style="position:absolute;display:none;z-index:9999;" frameborder="0"></iframe><div id="bdshare_l" style="display: none;"><div id="bdshare_l_c"><h6>分享到</h6><ul><li><a href="http://www.abab.com/flash/98024.html#" class="bds_mshare mshare">一键分享</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_qzone qqkj">QQ空间</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tsina xlwb">新浪微博</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_bdysc bdysc">百度云收藏</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_renren rrw">人人网</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tqq txwb">腾讯微博</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_bdxc bdxc">百度相册</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_kaixin001 kxw">开心网</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tqf txpy">腾讯朋友</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tieba bdtb">百度贴吧</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_douban db">豆瓣网</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_tsohu shwb">搜狐微博</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_bdhome bdhome">百度新首页</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_sqq sqq">QQ好友</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_thx thx">和讯微博</a></li><li><a href="http://www.abab.com/flash/98024.html#" class="bds_more">更多...</a></li></ul><p><a href="http://www.abab.com/flash/98024.html#" class="goWebsite">百度分享</a></p></div></div></div>
<div class="g-head-box">
    <div class="g-wrapper clearfix">
        <h1 class="g-logo"><a href="http://www.abab.com/">ABAB小游戏</a></h1>
        <!--g-nav-->
        <ul class="g-nav">
            <li><span><a href="http://www.abab.com/" target="_blank">首页</a></span></li>
            <li><span><a href="http://www.abab.com/tag/doublegame/" target="_blank">双人</a></span></li>
            <li><span><a href="http://www.abab.com/heji/" target="_blank">合集</a></span></li>
            <li><span><a href="http://www.abab.com/pk/" target="_blank">积分挑战</a></span></li>
            <li class="all-game" id="all-game">
                <span><a target="_self" href="javascript:void(0)">全部</a></span>
                <!--sub_nav-->
                <div class="g-sub-nav">
                    <div class="sub-nav-inner">
                        <div class="g-sort-box">
                            <ul class="g-sort clearfix">
                                <li><a href="http://www.abab.com/games/11/" target="_blank">休闲</a></li>
                                <li><a href="http://www.abab.com/games/10/" target="_blank">益智</a></li>
                                <li><a href="http://www.abab.com/games/12/" target="_blank">装扮</a></li>
                                <li><a href="http://www.abab.com/games/5/" target="_blank">搞笑</a></li>
                                <li><a href="http://www.abab.com/games/3/" target="_blank">射击</a></li>
                                <li><a href="http://www.abab.com/games/6/" target="_blank">冒险</a></li>
                                <li><a href="http://www.abab.com/games/7/" target="_blank">策略</a></li>
                                <li><a href="http://www.abab.com/games/1/" target="_blank">动作</a></li>
                                <li><a href="http://www.abab.com/games/2/" target="_blank">体育</a></li>
                                <li><a href="http://www.abab.com/games/8/" target="_blank">棋牌</a></li>
                                <li><a href="http://www.abab.com/games/13/" target="_blank">经营</a></li>
                                
                            </ul>
                        </div>
                        <ul class="g-channel clearfix">
                            <li><a href="http://downswf.abab.com/" target="_blank">小游戏下载</a></li>
                            <li><a href="http://www.abab.com/gonglue/" target="_blank">游戏攻略</a></li>
                            <li><a href="http://bbs.abab.com/" target="_blank">论坛</a></li>
                            <li><a href="http://www.abab.com/act/" target="_blank">活动</a></li>
                            <li><a href="http://sy.abab.com/" target="_blank">手机游戏</a></li>
                        </ul>
                    </div>
                </div>
                <!--//sub_nav end-->
            </li>
            <li><span><a href="http://xiazai.zol.com.cn/detail/43/425249.shtml" target="_blank">游戏盒子</a></span></li>
            <li><span><a href="http://youxi.abab.com/" target="_blank">游戏库</a></span></li>
            <li class="last"><span><a href="http://web.abab.com/" target="_blank">网页游戏</a></span></li>
        </ul>
        <!--//g-nav end-->
        <!--g-search-box-->
        <div class="g-search-box">
        <form action="http://www.abab.com/index.php?c=Search" method="get">
                <input type="hidden" name="c" value="Search"> 
                <input type="hidden" name="searchPageType" value="Flash">
                <script>document.write('<input type="hidden" name="curUrl" value="'+location.hostname+location.pathname+'" />');</script><input type="hidden" name="curUrl" value="www.abab.com/flash/98024.html">
                <input type="text" id="keyword" placeholder="请输入小游戏名称" name="keyWord" class="txt"><input type="submit" value="搜索" class="submit-btn">
            </form>
        </div>
        <!--//g-search-box-->
        <!--user-operate-->
        
        
        <ul class="g-user-operate"><li><a target="_self" id="login_top" onclick="alertWindow(&#39;g-reg-box&#39;,&#39;login&#39;)" href="javascript:void(0)" class="g-regist">登录</a></li><li><a target="_self" id="reg_top" onclick="alertWindow(&#39;g-reg-box&#39;,&#39;reg&#39;)" href="javascript:void(0)">注册</a></li><li><a target="_blank" href="http://www.abab.com/desktop/">保存到桌面</a></li></ul>
        
        <!--//user-operate-->
    </div>
</div>
<!--//登录前状态-->
 
<!--注册/登录弹出层-->
 
<div class="shadowbg" style="display: none; width: 1351px; height: 6314px;">&nbsp;</div>
<div class="g-login-box" id="g-reg-box" style="display:none">
 
</div><script type="text/javascript">
var gameId     = 98024;   //游戏id
var fullMode   = 0; //是否全屏模式
var zoomMode   = 3; //初始缩放模式
var origMode        = 3;   //原始缩放模式
var origWidth        = 550  ? 550 : 600;  //原始宽度
var origHeight        = 400 ? 400 : 438; //原始尺寸
var from            = 'false'; //推广标志 
var isWmode         = 0;  //wmode
var isAllowScript   = 0;     //允许脚本交互
var isSpecial        = 0;     //是否特殊处理
var playInfoFlash     = 'http://imgc.abab.com/small_flash_channel/intellect/20061117125003.swf'; //flash地址
var playInfoLoading = false; //进度是否负数
var playInfoFilesize= 2020; //文件大小
var tiep            = false; //贴片广告
var baseUrl            = "http://www.abab.com/"; //站点根url
var gameName        = 'Q版泡泡堂'; //游戏地址
var baseFlash        = "aHR0cDovL2ltZ2MuYWJhYi5jb20vc21hbGxfZmxhc2hfY2hhbm5lbC9pbnRlbGxlY3QvMjAwNjExMTcxMjUwMDMuc3dm"; //
var loadByIframe    = 0 ? true:false; //多文件iframe加载
//var boxUrl            = ''; //多文件游戏地址
</script>
    <div id="falshAd" style="width: 980px;margin: 5px auto -10px"><!-- abab -->
</div>    <!--final-wrapper-->
    <div class="final-wrapper">
        <!--detail-wrap-->
        <div class="detail-wrap clearfix" id="playerTop">
            <!--final-header-->
            <div class="final-header" id="gameBox">
                <div class="game-tit">
                    <h3><a href="http://www.abab.com/play/98024.html">Q版泡泡堂</a></h3>
                    <div class="game-guide"><a href="http://bbs.abab.com/forum-109-1.html" target="_blank" class="game-no-guide"><span>该游戏还没有攻略,我要投稿!</span></a>
                    </div>
                </div>
                <a href="javascript:favoriteToCenter(gameId);" class="farvite-btn">收藏游戏</a>
                <div class="chgskin">
                    <a href="javascript:void(0);" class="chgskin-btn">换肤</a>
                    <div class="chgskin-sel"><s></s><a href="javascript:void(0);" title="默认" class="skin0 active"></a><a href="javascript:void(0);" title="星空" class="skin1"></a><a href="javascript:void(0);" title="甜蜜" class="skin2"></a><a href="javascript:void(0);" title="海底" class="skin3"></a><a href="javascript:void(0);" title="荷" class="skin4"></a><a href="javascript:void(0);" title="去海边" class="skin5"></a><a href="javascript:void(0);" title="小城市" class="skin6"></a></div>
                </div>
                <a href="javascript:void(0);" class="close-btn">关灯</a>
                <a href="javascript:void(0);" class="open-btn">开灯</a>
            </div>
            <!--// final-header end-->
            <!--play-box-->
            <div class="play-box clearfix zoom3">
                <!--col-main-->
                <div class="col-main" style="height: 530px;">
                    <!--加载进度条-->
                    <div class="progress" id="progress" style="display:block"><span id="loadtext" style="width:2%;"></span><code>2%</code></div>
                    <div class="main-wrap" id="main-wrap" style="width: 550px; height: 400px; overflow: hidden; margin-top: 65px; padding: 0px; margin-bottom: 65px;">
                    <object id="flashgame" src="http://imgc.abab.com/small_flash_channel/intellect/20061117125003.swf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="100%" height="100%">
<param name="allowScriptAccess" value="never"><param name="allowNetworking" value="internal">
<param name="movie" value="http://imgc.abab.com/small_flash_channel/intellect/20061117125003.swf">
<param name="quality" value="high"><embed id="flashgame1" name="flashgame" src="http://imgc.abab.com/small_flash_channel/intellect/20061117125003.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="100%" allowscriptaccess="nerver" allownetworking="internal" bgcolor="#fff" wmode="opaque"><param name="wmode" value="opaque"></object>
</div>
                    <!--广告层-->
        <div class="loading" id="loading" style="display: none;">
              <div id="snd_baiduad">
           <div class="ad-time"><span id="countdown_game">广告剩余时间&nbsp;</span><span id="adNumber">1</span>&nbsp;秒</div>
           <div id="asd2" style="width: 610px; height: 400px; margin: 10px auto 0px; overflow: hidden; display: none;">
                <div name="gamead" id="adWan37" width="100%" height="100%" style="margin-left: 23px;display:none"></div>
                <div name="gamead" id="ad" width="100%" height="100%"><center>
<div id="AD149" style="width:602px;height:452px;text-align:center;"><iframe marginheight="0" marginwidth="0" frameborder="0" scrolling="no" width="600" height="450" src="./game_files/tiepiancA_1212.htm"></iframe></div></center>
</div>
             </div>
    </div>
   </div>
                       <!-- //广告层 -->
                </div>
                <!--//col-main end-->
                <!--side-col-->
                
                <div class="side-col" style="height: 530px;">
                    <div id="tab-wrap">
                    <!--game-info-tab-->
                    <div class="game-tab-box">
                        <ul class="game-tab-tit">
                            <li class="cur">操作方法</li>
                                            </ul>
                        <div class="game-cont">
                            
                            <!--game-tab-->
                            <div class="game-tab" style="display: block;">
                                <ul class="game-operate">
                                    <li>
                                        <strong>如何开始:</strong>
                                        <span><span>先点“Start game”按纽,再按“空格”键开始游戏。</span></span>
                                    </li>
                                    <li>
                                        <strong>操作说明:</strong>
                                        <p>键盘操作:</p>
<p>单人:<span class="sxzy"></span>键移动,<span class="space"></span>键放炸弹。可以单人或双人玩!</p>
<p>双人玩:P1:<span class="sxzy"></span>键移动,<span class="enter"></span>键放炸弹;P2:<span class="word"></span>键移动<span class="space"></span>键放炸弹。</p>                                    </li>
                                                                    </ul>
                            </div>
                            <!--//game-tab end-->
                            <div class="game-tab relate-game2" style="display: none;">
                                                               <div class="tempWrap" style="overflow:hidden; position:relative; width:297px"><div class="gameSlide" style="width: 1188px; position: relative; overflow: hidden; padding: 0px; margin: 0px; left: -297px;"><ul class="game-list clearfix clone" style="float: left; width: 297px;"><li>
                                                        </div></div>
                                <div class="game-page" id="game-page2"><a href="javascript:void(0);" class="prev">上页</a><a href="javascript:void(0);" class="pnum active">1</a><a href="javascript:void(0);" class="pnum">2</a><a href="javascript:void(0);" class="next">下页</a></div>    
                            </div>
                            <!--//game-tab end-->
                        </div>
                    </div>
                    <!--//game-info-tab end-->
                    <div class="other-like">
                        <h4>其他玩家还喜欢</h4>
                        <!--other-slide-box-->    
                        <div class="other-slide-box">
                            <div class="tempWrap" style="overflow:hidden; position:relative; height:456px"><ul class="game-list clearfix" style="height: 3192px; position: relative; padding: 0px; margin: 0px; top: -456px;"><li style="height: 97px;" class="clone">
                                    <a href="http://www.abab.com/play/559975.html" title="q版泡泡堂4无敌版" target="_blank">
                                        <img .src="http://img6.w8.com.cn/flash_pic/pic_497/496427.jpg" width="76" height="77" alt="q版泡泡堂4无敌版">
                                        <span>q版泡泡堂4无敌</span>
                                    </a>
                                </li><li style="height: 97px;" class="clone">
                                    <a href="http://www.abab.com/play/503875.html" title="Q版泡泡堂4变态版" target="_blank">
                                        <img .src="http://img7.abab.com/flash_pic/pic_181/180499.jpg" width="76" height="77" alt="Q版泡泡堂4变态版">
                                        <span>Q版泡泡堂4变态</span>
                                    </a>
                                </li><li style="height: 97px;" class="clone">
                                    <a href="http://www.abab.com/play/463971.html" title="双人泡泡堂" target="_blank">
                                        <img .src="http://img8.w8.com.cn/flash_pic/pic_108/107847.jpg" width="76" height="77" alt="双人泡泡堂">
                                        <span>双人泡泡堂</span>
                                    </a>
                                </li><li style="height: 97px;" class="clone">
                                    <a href="http://www.abab.com/play/562903.html" title="蜡笔小新泡泡堂" target="_blank">
                                        <img .src="http://img1.w8.com.cn/flash_pic/pic_520/519211.jpg" width="76" height="77" alt="蜡笔小新泡泡堂">
                                        <span>蜡笔小新泡泡堂</span>
                                    </a>
                                </li>
                            <li style="height: 97px;">
                                    <a href="http://web.abab.com/tg.php?platformId=14&flag=8" title="火影疾风坛" target="_blank">
                                        <img src="./game_files/52a1aa1a.jpg" width="76" height="77" alt="火影疾风坛">
                                        <span>火影疾风坛</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://web.abab.com/tg.php?platformId=14&flag=10" title="烈焰女王" target="_blank">
                                        <img src="./game_files/52bf990c.jpg" width="76" height="77" alt="烈焰女王">
                                        <span>烈焰女王</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://web.abab.com/tg.php?platformId=14&flag=13" title="奇迹mu" target="_blank">
                                        <img src="./game_files/533e90f3.jpg" width="76" height="77" alt="奇迹mu">
                                        <span>奇迹mu</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/5381.html" title="泡泡堂" target="_blank">
                                        <img src="./game_files/111742.jpg" width="76" height="77" alt="泡泡堂">
                                        <span>泡泡堂</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/544482.html" title="植物大战僵尸之泡泡堂" target="_blank">
                                        <img .src="http://img2.abab.com/flash_pic/pic_365/364252.jpg" width="76" height="77" alt="植物大战僵尸之泡泡堂" src="./game_files/364252.jpg">
                                        <span>植物大战僵尸之</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/3001.html" title="泡泡堂射箭" target="_blank">
                                        <img .src="http://img3.w8.com.cn/flash_pic/pic_90001/90000622.jpg" width="76" height="77" alt="泡泡堂射箭" src="./game_files/90000622.jpg">
                                        <span>泡泡堂射箭</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/565824.html" title="Q版泡泡堂6" target="_blank">
                                        <img .src="http://img4.abab.com/flash_pic/pic_562/561069.jpg" width="76" height="77" alt="Q版泡泡堂6" src="./game_files/561069.jpg">
                                        <span>Q版泡泡堂6</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/460298.html" title="Q版泡泡堂2" target="_blank">
                                        <img .src="http://img5.w8.com.cn/flash_pic/pic_80001/80000382.jpg" width="76" height="77" alt="Q版泡泡堂2" src="./game_files/80000382.jpg">
                                        <span>Q版泡泡堂2</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/537367.html" title="Q版泡泡堂5" target="_blank">
                                        <img .src="http://img6.abab.com/flash_pic/pic_293/292505.jpg" width="76" height="77" alt="Q版泡泡堂5" src="./game_files/292505.jpg">
                                        <span>Q版泡泡堂5</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/555540.html" title="熊出没泡泡堂" target="_blank">
                                        <img .src="http://img7.w8.com.cn/flash_pic/pic_440/439816.jpg" width="76" height="77" alt="熊出没泡泡堂" src="./game_files/439816.jpg">
                                        <span>熊出没泡泡堂</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/460299.html" title="Q版泡泡堂3" target="_blank">
                                        <img .src="http://img8.abab.com/flash_pic/pic_80001/80000383.jpg" width="76" height="77" alt="Q版泡泡堂3" src="./game_files/80000383.jpg">
                                        <span>Q版泡泡堂3</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/469397.html" title="泡泡堂版炸弹超人" target="_blank">
                                        <img .src="http://img1.abab.com/flash_pic/pic_121/120562.jpg" width="76" height="77" alt="泡泡堂版炸弹超人" src="./game_files/120562.jpg">
                                        <span>泡泡堂版炸弹超</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/566029.html" title="Q版泡泡堂6无敌版" target="_blank">
                                        <img .src="http://img2.w8.com.cn/flash_pic/pic_572/571232.jpg" width="76" height="77" alt="Q版泡泡堂6无敌版" src="./game_files/571232.jpg">
                                        <span>Q版泡泡堂6无敌</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/538260.html" title="Q版泡泡堂5无敌版" target="_blank">
                                        <img .src="http://img3.abab.com/flash_pic/pic_391/390111.jpg" width="76" height="77" alt="Q版泡泡堂5无敌版" src="./game_files/390111.jpg">
                                        <span>Q版泡泡堂5无敌</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/559974.html" title="q版泡泡堂2中文版" target="_blank">
                                        <img .src="http://img4.w8.com.cn/flash_pic/pic_497/496421.jpg" width="76" height="77" alt="q版泡泡堂2中文版" src="./game_files/496421.jpg">
                                        <span>q版泡泡堂2中文</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/551240.html" title="汤姆杰瑞泡泡堂" target="_blank">
                                        <img .src="http://img5.abab.com/flash_pic/pic_409/408598.jpg" width="76" height="77" alt="汤姆杰瑞泡泡堂" src="./game_files/408598.jpg">
                                        <span>汤姆杰瑞泡泡堂</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/559975.html" title="q版泡泡堂4无敌版" target="_blank">
                                        <img .src="http://img6.w8.com.cn/flash_pic/pic_497/496427.jpg" width="76" height="77" alt="q版泡泡堂4无敌版" src="./game_files/496427.jpg">
                                        <span>q版泡泡堂4无敌</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/503875.html" title="Q版泡泡堂4变态版" target="_blank">
                                        <img .src="http://img7.abab.com/flash_pic/pic_181/180499.jpg" width="76" height="77" alt="Q版泡泡堂4变态版" src="./game_files/180499.jpg">
                                        <span>Q版泡泡堂4变态</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/463971.html" title="双人泡泡堂" target="_blank">
                                        <img .src="http://img8.w8.com.cn/flash_pic/pic_108/107847.jpg" width="76" height="77" alt="双人泡泡堂" src="./game_files/107847.jpg">
                                        <span>双人泡泡堂</span>
                                    </a>
                                </li><li style="height: 97px;">
                                    <a href="http://www.abab.com/play/562903.html" title="蜡笔小新泡泡堂" target="_blank">
                                        <img .src="http://img1.w8.com.cn/flash_pic/pic_520/519211.jpg" width="76" height="77" alt="蜡笔小新泡泡堂" src="./game_files/519211.jpg">
                                        <span>蜡笔小新泡泡堂</span>
                                    </a>
                                </li>    
                            <li style="height: 97px;" class="clone">
                                    <a href="http://web.abab.com/tg.php?platformId=14&flag=8" title="火影疾风坛" target="_blank">
                                        <img src="./game_files/52a1aa1a.jpg" width="76" height="77" alt="火影疾风坛">
                                        <span>火影疾风坛</span>
                                    </a>
                                </li><li style="height: 97px;" class="clone">
                                    <a href="http://web.abab.com/tg.php?platformId=14&flag=10" title="烈焰女王" target="_blank">
                                        <img src="./game_files/52bf990c.jpg" width="76" height="77" alt="烈焰女王">
                                        <span>烈焰女王</span>
                                    </a>
                                </li><li style="height: 97px;" class="clone">
                                    <a href="http://web.abab.com/tg.php?platformId=14&flag=13" title="奇迹mu" target="_blank">
                                        <img src="./game_files/533e90f3.jpg" width="76" height="77" alt="奇迹mu">
                                        <span>奇迹mu</span>
                                    </a>
                                </li><li style="height: 97px;" class="clone">
                                    <a href="http://www.abab.com/play/5381.html" title="泡泡堂" target="_blank">
                                        <img src="./game_files/111742.jpg" width="76" height="77" alt="泡泡堂">
                                        <span>泡泡堂</span>
                                    </a>
                                </li></ul></div>    
                        </div>
                        <!--//other-slide-box end-->    
                        <div class="other-page"><div class="game-page"><a href="javascript:void(0);" class="prev">上页<s></s></a><a href="javascript:void(0);" class="next">下页<s></s></a></div></div>
                    </div>
                </div>
                </div>
                <!--//side-col end-->
            </div>
            <!--//play-box end-->
            <div class="game-btm">    
                <!--btn-box-->
                <div class="btn-box clearfix">
                    <!--operate-btn-->
                    <div class="operate-btn">
                        <a href="javascript:void(0);" class="replay" id="replay" title="重玩"><em></em>重玩</a>
                        <a href="javascript:void(0);" class="full-screen" id="full" title="全屏"><em></em>全屏</a>
                        <a href="javascript:void(0);" class="enlarge" id="zoomIn" title="放大"><em></em>放大</a>
                        <a href="javascript:void(0);" class="narrow" id="zoomOut" title="缩小"><em></em>缩小</a>
                        <a target="_blank" href="http://downswf.abab.com/play98024.html" class="download" title="Q版泡泡堂小游戏下载"><em></em>下载</a>
                        <a href="javascript:void(0);" class="assess" title="评论" id="comment"><em></em>评论</a>
                        <a href="javascript:void(0);" class="share"><em></em>发给好友</a>
                        <!--<a href="javascript:void(0);" class="voice"><em></em>声音</a>
                        <a href="#" class="no-voice"><em></em>声音</a> 关闭声音-->
                        <!--<a href="#" class="un-voice"><em></em>声音</a> 无声音灰色-->
                        <!--<a href="javascript:void(0);" class="photo"><em></em>拍照</a>-->
                        <!--<a href="#" class="un-photo"><em></em>拍照</a> 无拍照功能-->
                        <!--发给好友弹层-->
                        <div class="share-box">
                            <em></em>
                            <textarea class="textarea">http://www.abab.com/flash/98024.html我刚在abab小游戏玩到一个灰常不错的《Q版泡泡堂》,送给你也玩下咯~~~~~</textarea>
                            <p><a href="javascript:void(0);" class="copy" id="copy">复制</a>复制游戏链接给你的QQ好友</p>
                        </div>
                        <!--//发给好友弹层-->
                        <!-- 不能放大缩小提示层 -->
                        <div class="no-opa-tips" id="no-zoom" style="display: none;">
                            <div class="txt-tips">
                                <span>提示:</span>
                                <p>"亲,此游戏不能缩放,默认尺寸更佳"</p>
                            </div>
                            <a href="javascript:void(0);" class="close"></a>
                        </div>
                        <!-- 不能放大缩小提示层 -->
                    </div>
                    <!--//operate-btn end-->
                    <div class="scoremod">
                        <div class="clearfix"><span class="star"><a href='login.jsp'><em style="width: 96px;"></em></a></span><span class="score">8分</span></div>
                        <p>滑动星星进行评分:<i class="txt">很好玩</i></p>
                        <input id="curScore" type="hidden" value="7.9">
                    </div>    
                </div>
                <!--//btn-box end-->
                <!--adv-box-->
                <div class="adv-box"><div id="playbanner" style="height: 65px; padding:0px 10px;margin-left:22px; margin-top: 12px;"><center>
<div id="AD176" style="width:236px;height:62px;text-align:center;"><iframe marginheight="0" marginwidth="0" frameborder="0" scrolling="no" width="234" height="60" src="./game_files/baidu_toA_0311.htm"></iframe></div></center>
</div></div>                <!--//adv-box end-->
            </div>    
        </div>
        <!--//detail-wrap end-->
        
        
        <!--col-box-->
        <div class="col-box clearfix">
            <div class="col-tit">操作说明</div>
            <div class="col-cont">
                <p>键盘操作:</p>
<p>单人:<span class="sxzy"></span>键移动,<span class="space"></span>键放炸弹。可以单人或双人玩!</p>
<p>双人玩:P1:<span class="sxzy"></span>键移动,<span class="enter"></span>键放炸弹;P2:<span class="word"></span>键移动<span class="space"></span>键放炸弹。</p>                &nbsp;&nbsp;<a class="more-guide" href="http://sj.zol.com.cn/detail/50/49243.shtml" target="_blank">QQ塔防手机版下载</a>
            </div>
            
            <!--visit-->
            <div id="visit" style="display: none;">
                <div class="played-mod">
                    <div class="played-tit" id="played-games">我玩过的</div>
                    <div class="played">
                    </div>
                    <a href="javascript:void(0);" class="left-turn" id="turnLeft"></a>
                    <a href="javascript:void(0);" class="right-turn" id="turnRight"></a>
                    <a href="javascript:void(0);" class="emptybtn" onclick="del_all();" id="clear-played-games">清空</a>
                </div>
            </div>
            <!--//visit end-->
                        
            <div class="col-tit">如何开始</div>
            <div class="col-cont">
                <span>先点“Start game”按纽,再按“空格”键开始游戏。</span>            </div>
            <div class="col-tit">游戏简介</div>
            <div class="col-cont">
            《Q版泡泡堂》是一款经典的flash小游戏,主要以
Q版泡泡堂(1张)多吃道具,躲避危险,放泡泡把别的人物炸死,才能获得胜利作为游戏目标。            </div>
            <div class="sililar-wrap clearfix" style="display:none">
            <div class="col-tit similar-col-tit">
                相似游戏
                <div class="similar-page"><span><a href="javascript:void(0);" class=".similar-page cur">1</a><a href="javascript:void(0);">2</a><a href="javascript:void(0);">3</a></span><a href="http://www.abab.com/similar/98024/" class="more" title="查看全部“Q版泡泡堂”的相关游戏" target="_blank">更多&gt;&gt;</a></div>    
            </div>
            <div class="tempWrap" style="overflow:hidden; position:relative; width:968px"><div class="game-version" style="width: 4840px; position: relative; overflow: hidden; padding: 0px; margin: 0px; left: -968px;"><ul class="game-list clearfix clone" style="float: left; width: 968px;"><li>
                                        <a href="http://www.abab.com/play/463998.html" title="汽车泡泡堂" target="_blank">
                                            <img .src="http://img2.abab.com/flash_pic/pic_526/525710.jpg" width="76" height="77" alt="汽车泡泡堂" title="汽车泡泡堂">
                                            汽车泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463977.html" title="机器人泡泡堂" target="_blank">
                                            <img .src="http://img3.w8.com.cn/flash_pic/pic_108/107839.jpg" width="76" height="77" alt="机器人泡泡堂" title="机器人泡泡堂">
                                            机器人泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/541762.html" title="娃娃泡泡堂" target="_blank">
                                            <img .src="http://img4.abab.com/flash_pic/pic_305/304455.jpg" width="76" height="77" alt="娃娃泡泡堂" title="娃娃泡泡堂">
                                            娃娃泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/464008.html" title="快乐泡泡堂" target="_blank">
                                            <img .src="http://img5.w8.com.cn/flash_pic/pic_108/107912.jpg" width="76" height="77" alt="快乐泡泡堂" title="快乐泡泡堂">
                                            快乐泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/548694.html" title="奇童泡泡堂" target="_blank">
                                            <img .src="http://img6.abab.com/flash_pic/pic_391/390011.jpg" width="76" height="77" alt="奇童泡泡堂" title="奇童泡泡堂">
                                            奇童泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463984.html" title="万圣节泡泡堂" target="_blank">
                                            <img .src="http://img7.w8.com.cn/flash_pic/pic_108/107857.jpg" width="76" height="77" alt="万圣节泡泡堂" title="万圣节泡泡堂">
                                            万圣节泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/550538.html" title="超Q泡泡堂" target="_blank">
                                            <img .src="http://img8.abab.com/flash_pic/pic_405/404995.jpg" width="76" height="77" alt="超Q泡泡堂" title="超Q泡泡堂">
                                            超Q泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/464021.html" title="机械男孩泡泡堂" target="_blank">
                                            <img .src="http://img1.abab.com/flash_pic/pic_108/107957.jpg" width="76" height="77" alt="机械男孩泡泡堂" title="机械男孩泡泡堂">
                                            机械男孩泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/477082.html" title="可爱果冻泡泡堂" target="_blank">
                                            <img .src="http://img2.w8.com.cn/flash_pic/pic_140/139048.jpg" width="76" height="77" alt="可爱果冻泡泡堂" title="可爱果冻泡泡堂">
                                            可爱果冻泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463993.html" title="超级泡泡堂2" target="_blank">
                                            <img .src="http://img3.abab.com/flash_pic/pic_108/107942.jpg" width="76" height="77" alt="超级泡泡堂2" title="超级泡泡堂2">
                                            超级泡泡堂2
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/4121.html" title="麻吉泡泡堂" target="_blank">
                                            <img .src="http://img4.w8.com.cn/flash_pic/pic_90002/90001141.jpg" width="76" height="77" alt="麻吉泡泡堂" title="麻吉泡泡堂">
                                            麻吉泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/492918.html" title="钻石泡泡堂" target="_blank">
                                            <img .src="http://img5.abab.com/flash_pic/pic_206/205869.jpg" width="76" height="77" alt="钻石泡泡堂" title="钻石泡泡堂">
                                            钻石泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463982.html" title="小黑花花果冻泡泡堂" target="_blank">
                                            <img .src="http://img6.w8.com.cn/flash_pic/pic_108/107850.jpg" width="76" height="77" alt="小黑花花果冻泡泡堂" title="小黑花花果冻泡泡堂">
                                            小黑花花果冻泡
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463997.html" title="圣诞老人泡泡堂" target="_blank">
                                            <img .src="http://img7.abab.com/flash_pic/pic_108/107886.jpg" width="76" height="77" alt="圣诞老人泡泡堂" title="圣诞老人泡泡堂">
                                            圣诞老人泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/464017.html" title="太空人泡泡堂" target="_blank">
                                            <img .src="http://img8.w8.com.cn/flash_pic/pic_108/107951.jpg" width="76" height="77" alt="太空人泡泡堂" title="太空人泡泡堂">
                                            太空人泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/459726.html" title="完美泡泡堂2" target="_blank">
                                            <img .src="http://img1.w8.com.cn/flash_pic/pic_10/90668.jpg" width="76" height="77" alt="完美泡泡堂2" title="完美泡泡堂2">
                                            完美泡泡堂2
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/466503.html" title="植物大战僵尸PVZ" target="_blank">
                                            <img .src="http://img2.abab.com/flash_pic/pic_672/671967.jpg" width="76" height="77" alt="植物大战僵尸PVZ" title="植物大战僵尸PVZ">
                                            植物大战僵尸PV
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/1867.html" title="搞怪碰碰球" target="_blank">
                                            <img .src="http://img3.w8.com.cn/flash_pic/pic_672/671968.jpg" width="76" height="77" alt="搞怪碰碰球" title="搞怪碰碰球">
                                            搞怪碰碰球
                                        </a>
                                    </li></ul>
 
                    <ul class="game-list clearfix" style="float: left; width: 968px;">
                    <li>
                                        <a href="http://web.abab.com/tg.php?platformId=14&flag=8" title="火影疾风坛" target="_blank">
                                            <img src="./game_files/52a1aa1a.jpg" width="76" height="77" alt="火影疾风坛" title="火影疾风坛">
                                            火影疾风坛
                                        </a>
                                    </li><li>
                                        <a href="http://web.abab.com/tg.php?platformId=14&flag=10" title="烈焰女王" target="_blank">
                                            <img src="./game_files/52bf990c.jpg" width="76" height="77" alt="烈焰女王" title="烈焰女王">
                                            烈焰女王
                                        </a>
                                    </li><li>
                                        <a href="http://web.abab.com/tg.php?platformId=14&flag=13" title="奇迹mu" target="_blank">
                                            <img src="./game_files/533e90f3.jpg" width="76" height="77" alt="奇迹mu" title="奇迹mu">
                                            奇迹mu
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/5381.html" title="泡泡堂" target="_blank">
                                            <img src="./game_files/111742.jpg" width="76" height="77" alt="泡泡堂" title="泡泡堂">
                                            泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/544482.html" title="植物大战僵尸之泡泡堂" target="_blank">
                                            <img src="./game_files/364252.jpg" width="76" height="77" alt="植物大战僵尸之泡泡堂" title="植物大战僵尸之泡泡堂">
                                            植物大战僵尸之
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/3001.html" title="泡泡堂射箭" target="_blank">
                                            <img src="./game_files/90000622.jpg" width="76" height="77" alt="泡泡堂射箭" title="泡泡堂射箭">
                                            泡泡堂射箭
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/565824.html" title="Q版泡泡堂6" target="_blank">
                                            <img src="./game_files/561069.jpg" width="76" height="77" alt="Q版泡泡堂6" title="Q版泡泡堂6">
                                            Q版泡泡堂6
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/460298.html" title="Q版泡泡堂2" target="_blank">
                                            <img src="./game_files/80000382.jpg" width="76" height="77" alt="Q版泡泡堂2" title="Q版泡泡堂2">
                                            Q版泡泡堂2
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/537367.html" title="Q版泡泡堂5" target="_blank">
                                            <img src="./game_files/292505.jpg" width="76" height="77" alt="Q版泡泡堂5" title="Q版泡泡堂5">
                                            Q版泡泡堂5
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/555540.html" title="熊出没泡泡堂" target="_blank">
                                            <img src="./game_files/439816.jpg" width="76" height="77" alt="熊出没泡泡堂" title="熊出没泡泡堂">
                                            熊出没泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/460299.html" title="Q版泡泡堂3" target="_blank">
                                            <img src="./game_files/80000383.jpg" width="76" height="77" alt="Q版泡泡堂3" title="Q版泡泡堂3">
                                            Q版泡泡堂3
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/469397.html" title="泡泡堂版炸弹超人" target="_blank">
                                            <img src="./game_files/120562.jpg" width="76" height="77" alt="泡泡堂版炸弹超人" title="泡泡堂版炸弹超人">
                                            泡泡堂版炸弹超
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/566029.html" title="Q版泡泡堂6无敌版" target="_blank">
                                            <img src="./game_files/571232.jpg" width="76" height="77" alt="Q版泡泡堂6无敌版" title="Q版泡泡堂6无敌版">
                                            Q版泡泡堂6无敌
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/538260.html" title="Q版泡泡堂5无敌版" target="_blank">
                                            <img src="./game_files/390111.jpg" width="76" height="77" alt="Q版泡泡堂5无敌版" title="Q版泡泡堂5无敌版">
                                            Q版泡泡堂5无敌
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/559974.html" title="q版泡泡堂2中文版" target="_blank">
                                            <img src="./game_files/496421.jpg" width="76" height="77" alt="q版泡泡堂2中文版" title="q版泡泡堂2中文版">
                                            q版泡泡堂2中文
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/551240.html" title="汤姆杰瑞泡泡堂" target="_blank">
                                            <img src="./game_files/408598.jpg" width="76" height="77" alt="汤姆杰瑞泡泡堂" title="汤姆杰瑞泡泡堂">
                                            汤姆杰瑞泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/559975.html" title="q版泡泡堂4无敌版" target="_blank">
                                            <img src="./game_files/496427.jpg" width="76" height="77" alt="q版泡泡堂4无敌版" title="q版泡泡堂4无敌版">
                                            q版泡泡堂4无敌
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/503875.html" title="Q版泡泡堂4变态版" target="_blank">
                                            <img src="./game_files/180499.jpg" width="76" height="77" alt="Q版泡泡堂4变态版" title="Q版泡泡堂4变态版">
                                            Q版泡泡堂4变态
                                        </a>
                                    </li></ul><ul class="game-list clearfix" style="float: left; width: 968px;"><li>
                                        <a href="http://www.abab.com/play/463971.html" title="双人泡泡堂" target="_blank">
                                            <img .src="http://img8.w8.com.cn/flash_pic/pic_108/107847.jpg" width="76" height="77" alt="双人泡泡堂" title="双人泡泡堂" src="./game_files/107847.jpg">
                                            双人泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/562903.html" title="蜡笔小新泡泡堂" target="_blank">
                                            <img .src="http://img1.w8.com.cn/flash_pic/pic_520/519211.jpg" width="76" height="77" alt="蜡笔小新泡泡堂" title="蜡笔小新泡泡堂" src="./game_files/519211.jpg">
                                            蜡笔小新泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/466496.html" title="Q版泡泡堂3.5" target="_blank">
                                            <img .src="http://img2.abab.com/flash_pic/pic_114/113998.jpg" width="76" height="77" alt="Q版泡泡堂3.5" title="Q版泡泡堂3.5" src="./game_files/113998.jpg">
                                            Q版泡泡堂3.5
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/331157.html" title="海绵泡泡堂" target="_blank">
                                            <img .src="http://img3.w8.com.cn/flash_pic/pic_7/65906.jpg" width="76" height="77" alt="海绵泡泡堂" title="海绵泡泡堂" src="./game_files/65906.jpg">
                                            海绵泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/464040.html" title="完美泡泡堂无敌版" target="_blank">
                                            <img .src="http://img4.abab.com/flash_pic/pic_109/108002.jpg" width="76" height="77" alt="完美泡泡堂无敌版" title="完美泡泡堂无敌版" src="./game_files/108002.jpg">
                                            完美泡泡堂无敌
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463967.html" title="僵尸版泡泡堂" target="_blank">
                                            <img .src="http://img5.w8.com.cn/flash_pic/pic_108/107819.jpg" width="76" height="77" alt="僵尸版泡泡堂" title="僵尸版泡泡堂" src="./game_files/107819.jpg">
                                            僵尸版泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/547844.html" title="超级玛丽泡泡堂2" target="_blank">
                                            <img .src="http://img6.abab.com/flash_pic/pic_385/384571.jpg" width="76" height="77" alt="超级玛丽泡泡堂2" title="超级玛丽泡泡堂2" src="./game_files/384571.jpg">
                                            超级玛丽泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/556020.html" title="马里奥泡泡堂4" target="_blank">
                                            <img .src="http://img7.w8.com.cn/flash_pic/pic_445/444811.jpg" width="76" height="77" alt="马里奥泡泡堂4" title="马里奥泡泡堂4" src="./game_files/444811.jpg">
                                            马里奥泡泡堂4
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/555822.html" title="经典泡泡堂" target="_blank">
                                            <img .src="http://img8.abab.com/flash_pic/pic_442/441695.jpg" width="76" height="77" alt="经典泡泡堂" title="经典泡泡堂" src="./game_files/441695.jpg">
                                            经典泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463974.html" title="泡泡堂之标王之王" target="_blank">
                                            <img .src="http://img1.abab.com/flash_pic/pic_108/107831.jpg" width="76" height="77" alt="泡泡堂之标王之王" title="泡泡堂之标王之王" src="./game_files/107831.jpg">
                                            泡泡堂之标王之
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463972.html" title="泡泡堂无敌版" target="_blank">
                                            <img .src="http://img2.w8.com.cn/flash_pic/pic_108/107826.jpg" width="76" height="77" alt="泡泡堂无敌版" title="泡泡堂无敌版" src="./game_files/107826.jpg">
                                            泡泡堂无敌版
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/464039.html" title="梦幻西游泡泡堂" target="_blank">
                                            <img .src="http://img3.abab.com/flash_pic/pic_108/108000.jpg" width="76" height="77" alt="梦幻西游泡泡堂" title="梦幻西游泡泡堂" src="./game_files/108000.jpg">
                                            梦幻西游泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/564064.html" title="索尼克泡泡堂" target="_blank">
                                            <img .src="http://img4.w8.com.cn/flash_pic/pic_528/527655.jpg" width="76" height="77" alt="索尼克泡泡堂" title="索尼克泡泡堂" src="./game_files/527655.jpg">
                                            索尼克泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/512294.html" title="葫芦娃泡泡堂" target="_blank">
                                            <img .src="http://img5.abab.com/flash_pic/pic_216/215687.jpg" width="76" height="77" alt="葫芦娃泡泡堂" title="葫芦娃泡泡堂" src="./game_files/215687.jpg">
                                            葫芦娃泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/563468.html" title="星之卡比泡泡堂" target="_blank">
                                            <img .src="http://img6.w8.com.cn/flash_pic/pic_524/523690.jpg" width="76" height="77" alt="星之卡比泡泡堂" title="星之卡比泡泡堂" src="./game_files/523690.jpg">
                                            星之卡比泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/533959.html" title="骑士泡泡堂" target="_blank">
                                            <img .src="http://img7.abab.com/flash_pic/pic_272/271477.jpg" width="76" height="77" alt="骑士泡泡堂" title="骑士泡泡堂" src="./game_files/271477.jpg">
                                            骑士泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/500001.html" title="双人版泡泡堂" target="_blank">
                                            <img .src="http://img8.w8.com.cn/flash_pic/pic_177/176791.jpg" width="76" height="77" alt="双人版泡泡堂" title="双人版泡泡堂" src="./game_files/176791.jpg">
                                            双人版泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463983.html" title="超级玛丽泡泡堂" target="_blank">
                                            <img .src="http://img1.w8.com.cn/flash_pic/pic_108/107864.jpg" width="76" height="77" alt="超级玛丽泡泡堂" title="超级玛丽泡泡堂" src="./game_files/107864.jpg">
                                            超级玛丽泡泡堂
                                        </a>
                                    </li></ul><ul class="game-list clearfix" style="float: left; width: 968px;"><li>
                                        <a href="http://www.abab.com/play/463998.html" title="汽车泡泡堂" target="_blank">
                                            <img .src="http://img2.abab.com/flash_pic/pic_526/525710.jpg" width="76" height="77" alt="汽车泡泡堂" title="汽车泡泡堂" src="./game_files/525710.jpg">
                                            汽车泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463977.html" title="机器人泡泡堂" target="_blank">
                                            <img .src="http://img3.w8.com.cn/flash_pic/pic_108/107839.jpg" width="76" height="77" alt="机器人泡泡堂" title="机器人泡泡堂" src="./game_files/107839.jpg">
                                            机器人泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/541762.html" title="娃娃泡泡堂" target="_blank">
                                            <img .src="http://img4.abab.com/flash_pic/pic_305/304455.jpg" width="76" height="77" alt="娃娃泡泡堂" title="娃娃泡泡堂" src="./game_files/304455.jpg">
                                            娃娃泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/464008.html" title="快乐泡泡堂" target="_blank">
                                            <img .src="http://img5.w8.com.cn/flash_pic/pic_108/107912.jpg" width="76" height="77" alt="快乐泡泡堂" title="快乐泡泡堂" src="./game_files/107912.jpg">
                                            快乐泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/548694.html" title="奇童泡泡堂" target="_blank">
                                            <img .src="http://img6.abab.com/flash_pic/pic_391/390011.jpg" width="76" height="77" alt="奇童泡泡堂" title="奇童泡泡堂" src="./game_files/390011.jpg">
                                            奇童泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463984.html" title="万圣节泡泡堂" target="_blank">
                                            <img .src="http://img7.w8.com.cn/flash_pic/pic_108/107857.jpg" width="76" height="77" alt="万圣节泡泡堂" title="万圣节泡泡堂" src="./game_files/107857.jpg">
                                            万圣节泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/550538.html" title="超Q泡泡堂" target="_blank">
                                            <img .src="http://img8.abab.com/flash_pic/pic_405/404995.jpg" width="76" height="77" alt="超Q泡泡堂" title="超Q泡泡堂" src="./game_files/404995.jpg">
                                            超Q泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/464021.html" title="机械男孩泡泡堂" target="_blank">
                                            <img .src="http://img1.abab.com/flash_pic/pic_108/107957.jpg" width="76" height="77" alt="机械男孩泡泡堂" title="机械男孩泡泡堂" src="./game_files/107957.jpg">
                                            机械男孩泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/477082.html" title="可爱果冻泡泡堂" target="_blank">
                                            <img .src="http://img2.w8.com.cn/flash_pic/pic_140/139048.jpg" width="76" height="77" alt="可爱果冻泡泡堂" title="可爱果冻泡泡堂" src="./game_files/139048.jpg">
                                            可爱果冻泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463993.html" title="超级泡泡堂2" target="_blank">
                                            <img .src="http://img3.abab.com/flash_pic/pic_108/107942.jpg" width="76" height="77" alt="超级泡泡堂2" title="超级泡泡堂2" src="./game_files/107942.jpg">
                                            超级泡泡堂2
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/4121.html" title="麻吉泡泡堂" target="_blank">
                                            <img .src="http://img4.w8.com.cn/flash_pic/pic_90002/90001141.jpg" width="76" height="77" alt="麻吉泡泡堂" title="麻吉泡泡堂" src="./game_files/90001141.jpg">
                                            麻吉泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/492918.html" title="钻石泡泡堂" target="_blank">
                                            <img .src="http://img5.abab.com/flash_pic/pic_206/205869.jpg" width="76" height="77" alt="钻石泡泡堂" title="钻石泡泡堂" src="./game_files/205869.jpg">
                                            钻石泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463982.html" title="小黑花花果冻泡泡堂" target="_blank">
                                            <img .src="http://img6.w8.com.cn/flash_pic/pic_108/107850.jpg" width="76" height="77" alt="小黑花花果冻泡泡堂" title="小黑花花果冻泡泡堂" src="./game_files/107850.jpg">
                                            小黑花花果冻泡
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/463997.html" title="圣诞老人泡泡堂" target="_blank">
                                            <img .src="http://img7.abab.com/flash_pic/pic_108/107886.jpg" width="76" height="77" alt="圣诞老人泡泡堂" title="圣诞老人泡泡堂" src="./game_files/107886.jpg">
                                            圣诞老人泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/464017.html" title="太空人泡泡堂" target="_blank">
                                            <img .src="http://img8.w8.com.cn/flash_pic/pic_108/107951.jpg" width="76" height="77" alt="太空人泡泡堂" title="太空人泡泡堂" src="./game_files/107951.jpg">
                                            太空人泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/459726.html" title="完美泡泡堂2" target="_blank">
                                            <img .src="http://img1.w8.com.cn/flash_pic/pic_10/90668.jpg" width="76" height="77" alt="完美泡泡堂2" title="完美泡泡堂2" src="./game_files/90668.jpg">
                                            完美泡泡堂2
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/466503.html" title="植物大战僵尸PVZ" target="_blank">
                                            <img .src="http://img2.abab.com/flash_pic/pic_672/671967.jpg" width="76" height="77" alt="植物大战僵尸PVZ" title="植物大战僵尸PVZ" src="./game_files/671967.jpg">
                                            植物大战僵尸PV
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/1867.html" title="搞怪碰碰球" target="_blank">
                                            <img .src="http://img3.w8.com.cn/flash_pic/pic_672/671968.jpg" width="76" height="77" alt="搞怪碰碰球" title="搞怪碰碰球" src="./game_files/671968.jpg">
                                            搞怪碰碰球
                                        </a>
                                    </li></ul>            <ul class="game-list clearfix clone" style="float: left; width: 968px;">
                    <li>
                                        <a href="http://web.abab.com/tg.php?platformId=14&flag=8" title="火影疾风坛" target="_blank">
                                            <img src="./game_files/52a1aa1a.jpg" width="76" height="77" alt="火影疾风坛" title="火影疾风坛">
                                            火影疾风坛
                                        </a>
                                    </li><li>
                                        <a href="http://web.abab.com/tg.php?platformId=14&flag=10" title="烈焰女王" target="_blank">
                                            <img src="./game_files/52bf990c.jpg" width="76" height="77" alt="烈焰女王" title="烈焰女王">
                                            烈焰女王
                                        </a>
                                    </li><li>
                                        <a href="http://web.abab.com/tg.php?platformId=14&flag=13" title="奇迹mu" target="_blank">
                                            <img src="./game_files/533e90f3.jpg" width="76" height="77" alt="奇迹mu" title="奇迹mu">
                                            奇迹mu
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/5381.html" title="泡泡堂" target="_blank">
                                            <img src="./game_files/111742.jpg" width="76" height="77" alt="泡泡堂" title="泡泡堂">
                                            泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/544482.html" title="植物大战僵尸之泡泡堂" target="_blank">
                                            <img src="./game_files/364252.jpg" width="76" height="77" alt="植物大战僵尸之泡泡堂" title="植物大战僵尸之泡泡堂">
                                            植物大战僵尸之
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/3001.html" title="泡泡堂射箭" target="_blank">
                                            <img src="./game_files/90000622.jpg" width="76" height="77" alt="泡泡堂射箭" title="泡泡堂射箭">
                                            泡泡堂射箭
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/565824.html" title="Q版泡泡堂6" target="_blank">
                                            <img src="./game_files/561069.jpg" width="76" height="77" alt="Q版泡泡堂6" title="Q版泡泡堂6">
                                            Q版泡泡堂6
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/460298.html" title="Q版泡泡堂2" target="_blank">
                                            <img src="./game_files/80000382.jpg" width="76" height="77" alt="Q版泡泡堂2" title="Q版泡泡堂2">
                                            Q版泡泡堂2
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/537367.html" title="Q版泡泡堂5" target="_blank">
                                            <img src="./game_files/292505.jpg" width="76" height="77" alt="Q版泡泡堂5" title="Q版泡泡堂5">
                                            Q版泡泡堂5
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/555540.html" title="熊出没泡泡堂" target="_blank">
                                            <img src="./game_files/439816.jpg" width="76" height="77" alt="熊出没泡泡堂" title="熊出没泡泡堂">
                                            熊出没泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/460299.html" title="Q版泡泡堂3" target="_blank">
                                            <img src="./game_files/80000383.jpg" width="76" height="77" alt="Q版泡泡堂3" title="Q版泡泡堂3">
                                            Q版泡泡堂3
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/469397.html" title="泡泡堂版炸弹超人" target="_blank">
                                            <img src="./game_files/120562.jpg" width="76" height="77" alt="泡泡堂版炸弹超人" title="泡泡堂版炸弹超人">
                                            泡泡堂版炸弹超
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/566029.html" title="Q版泡泡堂6无敌版" target="_blank">
                                            <img src="./game_files/571232.jpg" width="76" height="77" alt="Q版泡泡堂6无敌版" title="Q版泡泡堂6无敌版">
                                            Q版泡泡堂6无敌
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/538260.html" title="Q版泡泡堂5无敌版" target="_blank">
                                            <img src="./game_files/390111.jpg" width="76" height="77" alt="Q版泡泡堂5无敌版" title="Q版泡泡堂5无敌版">
                                            Q版泡泡堂5无敌
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/559974.html" title="q版泡泡堂2中文版" target="_blank">
                                            <img src="./game_files/496421.jpg" width="76" height="77" alt="q版泡泡堂2中文版" title="q版泡泡堂2中文版">
                                            q版泡泡堂2中文
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/551240.html" title="汤姆杰瑞泡泡堂" target="_blank">
                                            <img src="./game_files/408598.jpg" width="76" height="77" alt="汤姆杰瑞泡泡堂" title="汤姆杰瑞泡泡堂">
                                            汤姆杰瑞泡泡堂
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/559975.html" title="q版泡泡堂4无敌版" target="_blank">
                                            <img src="./game_files/496427.jpg" width="76" height="77" alt="q版泡泡堂4无敌版" title="q版泡泡堂4无敌版">
                                            q版泡泡堂4无敌
                                        </a>
                                    </li><li>
                                        <a href="http://www.abab.com/play/503875.html" title="Q版泡泡堂4变态版" target="_blank">
                                            <img src="./game_files/180499.jpg" width="76" height="77" alt="Q版泡泡堂4变态版" title="Q版泡泡堂4变态版">
                                            Q版泡泡堂4变态
                                        </a>
                                    </li></ul></div></div>
            </div>
                            <!--game-info-->
            <div class="game-info">
                <ul class="clearfix">
                    <li><strong>游戏名:</strong>Q版泡泡堂</li>
                    <li><strong>大小:</strong>2020KB</li>
                    <li><strong>语言:</strong>英文</li>
                    <li><strong>时间:</strong>2011-11-02</li>
                    <li><strong>类型:</strong><a href="http://www.abab.com/games/10/" target="_blank">益智类</a></li>
                     <li><strong>合集:</strong><a href="http://www.abab.com/heji/zuma/" target="_blank">祖玛</a> &nbsp;&nbsp;<a href="http://www.abab.com/heji/PaoPaoTang/" target="_blank">泡泡堂</a> &nbsp;&nbsp;<a href="http://www.abab.com/heji/Bomberman/" target="_blank">炸弹人</a> &nbsp;&nbsp;</li>    
                </ul>
                <div class="game-info-tip">请记住本站地址:<a href="http://www.abab.com/" target="_blank">abab.com</a>,点击<a href="javascript:AddFavorite('http://www.abab.com/', 'ABAB游戏网');">收藏abab</a>,方便下次玩。你也可以通过百度搜索<a href="http://www.baidu.com/s?wd=abab%E5%B0%8F%E6%B8%B8%E6%88%8F" title="搜索abab" target="_blank">abab小游戏</a>。《Q版泡泡堂》小游戏由abab用户上传。</div>
            </div>
            <!--//game-info end-->
        </div>
        <!--//col-box end-->
        <div id="SwAd" style="overflow:hidden; width:980px; margin-top:10px;">
        <script>
                 </script>
         </div>
         
            
        <div class="col-box clearfix">
            <div class="col-tit">精彩合集推荐<a href="http://www.abab.com/heji/" class="hj-more" target="_blank" title="查看更多精彩合集">更多&gt;&gt;</a></div>    
            <ul class="heji-list clearfix">
<li><a href="http://www.abab.com/heji/tiger/" title="巧虎" target="_blank"> 
                             <img .src="http://img5.abab.com/coll_round_pic/17/51/51d7d4fc.jpg" width="60" height="60" alt="巧虎" src="./game_files/51d7d4fc.jpg"> 
                             <span>巧虎</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/metalslug/" title="合金弹头" target="_blank"> 
                             <img .src="http://img8.abab.com/coll_round_pic/28/32/51d7b8f8.jpg" width="60" height="60" alt="合金弹头" src="./game_files/51d7b8f8.jpg"> 
                             <span>合金弹头</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/Logan/" title="X战警金刚狼" target="_blank"> 
                             <img .src="http://img6.abab.com/coll_round_pic/75/90/51d7a31a.jpg" width="60" height="60" alt="X战警金刚狼" src="./game_files/51d7a31a.jpg"> 
                             <span>X战警金刚狼</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/draw/" title="儿童学画画" target="_blank"> 
                             <img .src="http://img6.abab.com/coll_round_pic/02/39/51d68b29.jpg" width="60" height="60" alt="儿童学画画" src="./game_files/51d68b29.jpg"> 
                             <span>儿童学画画</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/RPG/" title="角色扮演RPG" target="_blank"> 
                             <img .src="http://img3.abab.com/coll_round_pic/59/54/51d7a5b4.jpg" width="60" height="60" alt="角色扮演RPG" src="./game_files/51d7a5b4.jpg"> 
                             <span>角色扮演RPG</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/beauty/" title="美女MM" target="_blank"> 
                             <img .src="http://img8.abab.com/coll_round_pic/84/95/51d7b819.jpg" width="60" height="60" alt="美女MM" src="./game_files/51d7b819.jpg"> 
                             <span>美女MM</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/ninjasg/" title="忍者神龟" target="_blank"> 
                             <img .src="http://img5.abab.com/coll_round_pic/27/39/51d7c7dd.jpg" width="60" height="60" alt="忍者神龟" src="./game_files/51d7c7dd.jpg"> 
                             <span>忍者神龟</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/gsllk/" title="水果蔬菜连连看" target="_blank"> 
                             <img .src="http://img6.abab.com/coll_round_pic/66/09/51d8f706.jpg" width="60" height="60" alt="水果蔬菜连连看" src="./game_files/51d8f706.jpg"> 
                             <span>水果蔬菜连连看</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/PlantvsZombies/" title="植物大战僵尸" target="_blank"> 
                             <img .src="http://img6.abab.com/coll_round_pic/20/10/51d7a18d.jpg" width="60" height="60" alt="植物大战僵尸" src="./game_files/51d7a18d.jpg"> 
                             <span>植物大战僵尸</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/racing/" title="赛车" target="_blank"> 
                             <img .src="http://img5.abab.com/coll_round_pic/97/59/51d7d4d7.jpg" width="60" height="60" alt="赛车" src="./game_files/51d7d4d7.jpg"> 
                             <span>赛车</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/petllk/" title="宠物连连看" target="_blank"> 
                             <img .src="http://img7.abab.com/coll_round_pic/79/08/51d8f624.jpg" width="60" height="60" alt="宠物连连看" src="./game_files/51d8f624.jpg"> 
                             <span>宠物连连看</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/cjml/" title="超级玛丽" target="_blank"> 
                             <img .src="http://img6.abab.com/coll_round_pic/36/38/51d7d48f.jpg" width="60" height="60" alt="超级玛丽" src="./game_files/51d7d48f.jpg"> 
                             <span>超级玛丽</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/CatchFish/" title="捕鱼" target="_blank"> 
                             <img .src="http://img8.abab.com/coll_round_pic/67/51/51d68dab.jpg" width="60" height="60" alt="捕鱼" src="./game_files/51d68dab.jpg"> 
                             <span>捕鱼</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/kof/" title="拳皇" target="_blank"> 
                             <img .src="http://img1.abab.com/coll_round_pic/18/89/51d69ecb.jpg" width="60" height="60" alt="拳皇" src="./game_files/51d69ecb.jpg"> 
                             <span>拳皇</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/zuma/" title="祖玛" target="_blank"> 
                             <img .src="http://img4.abab.com/coll_round_pic/88/06/51d79323.jpg" width="60" height="60" alt="祖玛" src="./game_files/51d79323.jpg"> 
                             <span>祖玛</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/Love/" title="谈恋爱" target="_blank"> 
                             <img .src="http://img6.abab.com/coll_round_pic/10/03/51d697ee.jpg" width="60" height="60" alt="谈恋爱" src="./game_files/51d697ee.jpg"> 
                             <span>谈恋爱</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/dinosaur/" title="恐龙战队" target="_blank"> 
                             <img .src="http://img2.abab.com/coll_round_pic/53/45/51d79e2c.jpg" width="60" height="60" alt="恐龙战队" src="./game_files/51d79e2c.jpg"> 
                             <span>恐龙战队</span> 
                             <s></s> 
                         </a></li><li><a href="http://www.abab.com/heji/mieguizi/" title="一个鬼子都不留" target="_blank"> 
                             <img .src="http://img7.abab.com/coll_round_pic/20/74/51d7ac85.jpg" width="60" height="60" alt="一个鬼子都不留" src="./game_files/51d7ac85.jpg"> 
                             <span>一个鬼子都不留</span> 
                             <s></s> 
                         </a></li>            </ul>
        </div>    
        
        <!--//heji end-->
        <!-- 与hao123流量交互合作,游戏数据读取 start-->
        <div style="width:980px; margin-top:5px; margin-bottom:5px;">
            <iframe src="./game_files/xyxflash.htm" width="100%" height="122" style="margin:5px 0 0 0;" frameborder="no" scrolling="no"></iframe>
        </div>
        <!-- 与hao123流量交互合作,游戏数据读取 end-->
        <!--comment-box-->
        
        <div class="comment-box">
            <div class="review" id="flashQq">
                <ul class="log-list">
                    <li><a id="login_top" onclick="alertWindow(&#39;g-reg-box&#39;,&#39;login&#39;)" href="javascript:void(0)" class="log-btn"></a></li>
                    <li><a target="_blank" href="http://www.abab.com/index.php?c=User_Login&a=Register">注册</a></li>
                    <li class="log-text"><a id="login_top" onclick="alertWindow(&#39;g-reg-box&#39;,&#39;login&#39;)" href="javascript:void(0)">登录</a>后评论,就可以收到小伙伴们给你的回复啦!还能领取精美活动礼品哦~</li>
                </ul>
                 <!-- Baidu Button BEGIN -->
 <div class="bd-share-flash">
                <span>分享到:</span>
                     
                    <div id="bdshare" class="bdshare_t bds_tools get-codes-bdshare">
                        <a class="bds_qzone" title="分享到QQ空间" href="http://www.abab.com/flash/98024.html#"></a>
                        <a class="bds_tsina" title="分享到新浪微博" href="http://www.abab.com/flash/98024.html#"></a>
                        <a class="bds_tqq" title="分享到腾讯微博" href="http://www.abab.com/flash/98024.html#"></a>
                        <a class="bds_renren" title="分享到人人网" href="http://www.abab.com/flash/98024.html#"></a>
                    </div>
                    <div class="frd-share-btn"></div>
                   <script type="text/javascript" id="bdshare_js" data="type=tools&amp;uid=645840" src="./game_files/bds_s_v2.js"></script>
                    
                    <script type="text/javascript">
                    
                        var at = '@abab小游戏网';// @abab_game
                        var bdComment = '';// 空间专用
                        var bdText = '';// 微博专用
                    
                                                    bdComment = '我正在“abab游戏门户”玩Q版泡泡堂小游戏,很有意思~~~分享给大家一块来玩吧! '+at+' 玩过的小盆友请举手 [笑哈哈][得意地笑]';
                            bdText = bdComment;
                                                document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?t=" + new Date().getHours();
</script>
                        
     </div>
<!-- Baidu Button END -->                 
                 <a href="http://www.abab.com/desktop/" target="_blank" class="keep">保存ABAB到桌面</a>
            </div>
                             <iframe src="./game_files/index.htm" id="comPub" name="comPub" width="980" scrolling="no" frameborder="0" onload="IFrameReSizeWidth(&quot;comPub&quot;);iFrameHeight(&quot;comPub&quot;,true);" height="4241" style="display: block;"></iframe>
                    </div>
        <!--//comment-box end-->
        <!--recom-game-box-->
    
<div class="recom-game-box">
            <div class="recom-game-tit">
            <div class="recom-top"><div class="list">
                <a href="http://web.abab.com/tg.php?platformId=127&flag=2" title="烈火战神" target="_blank">烈火战神</a><a href="http://web.abab.com/tg.php?platformId=127&flag=7" title="新梦幻之城" target="_blank">新梦幻之城</a><a href="http://web.abab.com/tg.php?platformId=127&flag=9" title="冒险契约" target="_blank">冒险契约</a><a href="http://web.abab.com/tg.php?platformId=127&flag=3" title="大侠传" target="_blank">大侠传</a><a href="http://web.abab.com/tg.php?platformId=127&flag=10" title="龙将2" target="_blank">龙将2</a><a href="http://web.abab.com/ddz/gameLogin.php?sid=4" title="天天斗地主" target="_blank">天天斗地主</a><a href="http://web.abab.com/tg.php?platformId=127&flag=8" title="火影疾风坛" target="_blank">火影疾风坛</a><a href="http://web.abab.com/tg.php?platformId=127&flag=10" title="烈焰" target="_blank">烈焰</a><a href="http://www.abab.com/topic/3063961.html" title="植物大战僵尸" target="_blank">植物大战僵尸</a><a href="http://www.abab.com/topic/3105984.html" title="愤怒的小鸟" target="_blank">愤怒的小鸟</a><a href="http://www.abab.com/topic/3108192.html" title="水果忍者" target="_blank">水果忍者</a><a href="http://web.abab.com/" title="网页游戏" target="_blank">网页游戏</a>                </div><a href="http://www.abab.com/tag/zuixin/" class="more" target="_blank">更多&gt;&gt;</a></div>
            <h4>推荐小游戏</h4>
            </div>
            <ul class="recom-list clearfix">
                <li><a href="http://youxi.abab.com/detail/13300.html" target="_blank">英雄联盟</a></li><li><a href="http://youxi.abab.com/detail/15537.html" target="_blank">地下城与勇士</a></li><li><a href="http://youxi.abab.com/detail/1493.html" target="_blank">穿越火线</a></li><li><a href="http://youxi.abab.com/detail/9289.html" target="_blank">剑灵</a></li><li><a href="http://youxi.abab.com/detail/1485.html" target="_blank">梦幻西游</a></li><li><a href="http://youxi.abab.com/detail/5482.html" target="_blank">QQ飞车</a></li><li><a href="http://youxi.abab.com/detail/14878.html" target="_blank">斗战神</a></li><li><a href="http://youxi.abab.com/detail/17592.html" target="_blank">我叫MT</a></li><li><a href="http://youxi.abab.com/detail/17607.html" target="_blank">炉石传说</a></li><li><a href="http://youxi.abab.com/detail/17576.html" target="_blank">植物大战僵尸2</a></li><li><a href="http://youxi.abab.com/detail/15337.html" target="_blank">保卫萝卜</a></li><li><a href="http://youxi.abab.com/detail/17582.html" target="_blank">神庙逃亡2</a></li><li><a href="http://youxi.abab.com/detail/14908.html" target="_blank">捕鱼达人</a></li><li><a href="http://youxi.abab.com/detail/17583.html" target="_blank">节奏大师</a></li><li><a href="http://youxi.abab.com/detail/17585.html" target="_blank">天天爱消除</a></li><li><a href="http://youxi.abab.com/detail/17681.html" target="_blank">使命召唤10:幽灵</a></li><li><a href="http://youxi.abab.com/detail/15560.html" target="_blank">刺客信条4:黑旗</a></li><li><a href="http://youxi.abab.com/detail/17916.html" target="_blank">极品飞车18:宿敌</a></li><li><a href="http://youxi.abab.com/detail/16150.html" target="_blank">古剑奇谭2</a></li><li><a href="http://youxi.abab.com/detail/16156.html" target="_blank">轩辕剑6</a></li><li><a href="http://youxi.abab.com/detail/16104.html" target="_blank">FIFA 14</a></li><li><a href="http://youxi.abab.com/detail/14641.html" target="_blank">古墓丽影9</a></li><li><a href="http://youxi.abab.com/detail/4568.html" target="_blank">暗黑破坏神3</a></li><li><a href="http://youxi.abab.com/detail/17916.html" target="_blank">极品飞车18:宿敌</a></li><li><a href="http://youxi.abab.com/detail/17856.html" target="_blank">战地4</a></li><li><a href="http://youxi.abab.com/detail/17943.html" target="_blank">口袋妖怪X</a></li><li><a href="http://youxi.abab.com/detail/16115.html" target="_blank">怪物猎人4</a></li><li><a href="http://youxi.abab.com/detail/17704.html" target="_blank">英雄传说 闪之轨迹</a></li><li><a href="http://youxi.abab.com/detail/17902.html" target="_blank">初音未来歌姬计划F2</a></li><li><a href="http://youxi.abab.com/detail/15664.html" target="_blank">真三国无双7</a></li><li><a href="http://youxi.abab.com/detail/16217.html" target="_blank">海贼无双2</a></li><li><a href="http://youxi.abab.com/detail/14974.html" target="_blank">生化奇兵:无限</a></li>            </ul>
        </div>
        <!--//recom-game-box end-->
    </div>    
    <!--//final-wrapper end-->
 
    <!--分享浮层-->
<!-- Baidu Button BEGIN -->
<div class="fixed-share-bar">
    <div class="share-bar-top">
    </div>
    <div id="bdshare" class="bdshare_t bds_tools_32 get-codes-bdshare share-bar-btn" data="{&#39;url&#39;:&#39;http://www.baidu.com/s?wd=ababQ版泡泡堂&#39;}">
        <a class="bds_qzone" title="分享到QQ空间" href="http://www.abab.com/flash/98024.html#"></a>
        <a class="bds_tsina" title="分享到新浪微博" href="http://www.abab.com/flash/98024.html#"></a>
        <a class="bds_tqq" title="分享到腾讯微博" href="http://www.abab.com/flash/98024.html#"></a>
        <a class="bds_renren" title="分享到人人网" href="http://www.abab.com/flash/98024.html#"></a>
        <span class="bds_more">更多</span>
     </div>
    <div class="share-bar-bottom"></div>
</div>
<script type="text/javascript" id="bdshare_js" data="type=tools&amp;uid=645840"></script>
 
<script type="text/javascript">
 
    var at = '@abab小游戏网';// @abab_game
    var bdComment = '';// 空间专用
    var bdText = '';// 微博专用
 
            bdComment = '我正在“abab游戏门户”玩小游戏,很有意思~~~分享给大家一块来玩吧! '+at+' 玩过的小盆友请举手 [笑哈哈][得意地笑]';
        bdText = bdComment;
        var bds_config = {
        'bdComment' : bdComment,
        'bdText' : bdText,
        'bdDesc' : 'abab小游戏,专业的小游戏平台'
    };
        document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?t=" + new Date().getHours();
</script>
<!-- Baidu Button END -->    <!--建议浮层-->
    <div class="suggest-lay" style="">
        <a href="javascript:void(0);" class="close"></a>
        <a href="http://www.abab.com/service/feedback/" target="_blank" class="sgst-btn">你的建议</a>
    </div>
    <!--点击照片遮罩层-->
    <div class="mask-layout"></div>
    <!--点击照片弹出层-->
    <div class="photo-layout">
        <div class="tit">游戏拍照</div>
        <a href="javascript:void(0);" class="close">关闭</a>
        <div class="photo-cont">
            <div class="pic-box"><img src="./game_files/photo.jpg" width="196" height="145" alt=""></div>
            <form>
            <div class="textarea-box"><textarea></textarea></div>
            <p class="caption"><strong>说明:</strong>照片及描述将发表在该游戏评论</p>
            <div class="photo-btm clearfix">
                <!-- Baidu Button BEGIN -->
                <div id="bdshare" class="bdshare_t bds_tools get-codes-bdshare">
                <span>分享到:</span>
                <a class="bds_qzone" title="分享到QQ空间" href="http://www.abab.com/flash/98024.html#"></a>
                <a class="bds_tsina" title="分享到新浪微博" href="http://www.abab.com/flash/98024.html#"></a>
                <a class="bds_tqq" title="分享到腾讯微博" href="http://www.abab.com/flash/98024.html#"></a>
                </div>
                <script type="text/javascript" id="bdshare_js" data="type=tools&amp;uid=5119091"></script>
                <script type="text/javascript" id="bdshell_js"></script>
                <script type="text/javascript">
                document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?cdnversion=" + Math.ceil(new Date()/3600000)
                </script>
                <!-- Baidu Button END -->
                <input type="button" value="发表照片评论" class="btn">
            </div>
            </form>
        </div>
    </div>
    <!--//点击照片弹出层-->
    <!--关灯遮罩层-->
    <div class="light-overlay" style="display:none"></div>
<style>
#cproIframe1holder{right: 1px;}
</style>
<script type="text/javascript" src="./game_files/Abab_FlashNew.js"></script>
<style type="text/css">
.footer{ width:980px; margin:23px auto 0; padding:0 0 20px; text-align:center; line-height:25px; font-family:Arial, Helvetica, SimSun, san-serif;}
.footer-nav{ color:#849399;}
.footer-nav a{ padding:0 8px;}
.footer a:hover{ color: #F60;}
.footer-nav .last{ color:#586266}
.footer .abmark{ color:#f60}
.footer-nav .jianhu{font-size: 14px;}
</style>
<div class="footer">
        <div class="footer-nav"><a rel="nofollow" href="http://www.abab.com/service/about/">网站简介</a>|<a rel="nofollow" href="http://www.abab.com/service/contact/">联系我们</a>|<a rel="nofollow" href="http://www.abab.com/service/agreement/">使用协议</a>|<a rel="nofollow" href="http://www.abab.com/service/job/">招聘信息</a>|<a rel="nofollow" href="http://www.abab.com/service/feedback/">留言反馈</a>|<a href="http://www.abab.com/service/upload/">用户上传</a>|<a href="http://www.abab.com/review/" class="last">归档类</a></div>
        <div class="footer-nav"><a rel="nofollow" class="jianhu" href="http://www.abab.com/jianhu/index.html"><b>游戏组件未成年人家长监护工程</b></a></div>
        <p>
            Copyright © 2007 - <script type="text/javascript">document.write(new Date().getFullYear())</script>2014 北京莱富特佰网络科技股份有限公司.All rights reserved<br>
            <a rel="nofollow" href="http://www.miibeian.gov.cn/">京ICP备09081256号</a> 京公网安备:110108902076   ICP证号:京ICP证070681号 &nbsp;<a href="http://www.abab.com/service/wangwen/" rel="nofollow">京网文[2012]0132-048号</a><br>
            <span class="abmark">ABAB小游戏温馨提示:</span>适度游戏娱乐,沉迷游戏伤身,合理安排时间,享受快乐生活…
        </p>
</div>
<div style="display:none;">
<script type="text/javascript">
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Febdd795398d04e71c4f619d923ca63e1' type='text/javascript'%3E%3C/script%3E"));
</script><script src="./game_files/h.js" type="text/javascript"></script><a href="http://tongji.baidu.com/hm-web/welcome/ico?s=ebdd795398d04e71c4f619d923ca63e1" target="_blank"><img border="0" src="./game_files/21.gif" width="20" height="20"></a>
 
<script type="text/javascript"> 
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F365b532a34c256a8b7ae17f7c423bca6' type='text/javascript'%3E%3C/script%3E"));
</script><script src="./game_files/h(1).js" type="text/javascript"></script>
<script language="JavaScript" src="./game_files/pv.js" type="text/javascript"></script><script type="text/javascript" src="./game_files/p.ht"></script><img style="display:none" id="dot_pvm" border="0" width="1" height="1" src="./game_files/pvhit0001.gif"><img style="display:none" border="0" width="1" height="1" src="./game_files/pvhit0001(1).gif">
</div><script src="./game_files/flash_hits.php"></script>
 
<div class="hm-t-container" id="hm_t_16379" style="width: 0px; border-width: 0px;"><div class="hm-t-header" style="background-position: -36px 7px;">猜你喜欢</div>
<div class="hm-t-main" style="display: none;">
<ul class="hm-t-list hm-t-list-img">
<li class="hm-t-item hm-t-item-img">
<a class="hm-t-img" href="http://www.abab.com/play/491200.html" target="_blank" title="abab鸟人战队小游戏" data-pos="0">
<img src="./game_files/u=1884434328,3229784969&fm=72" style="width: 93.75px; height: 75px; margin-left: -9.5px;">
</a>
<a class="hm-t-img-title" href="http://www.abab.com/play/491200.html" target="_blank" title="abab鸟人战队小游戏" data-pos="0" style="visibility: visible; height: 28px;">abab鸟人战队小游戏</a>
</li>
<li class="hm-t-item hm-t-item-img">
<a class="hm-t-img" href="http://www.abab.com/play/549292.html?tuiguangid=shunwang" target="_blank" title="马里奥大卡车2" data-pos="1">
<img src="./game_files/u=324965895,4290715347&fm=72" style="width: 112.5px; height: 75px; margin-left: -19px;">
</a>
<a class="hm-t-img-title" href="http://www.abab.com/play/549292.html?tuiguangid=shunwang" target="_blank" title="马里奥大卡车2" data-pos="1" style="visibility: visible; height: 28px;">马里奥大卡车2</a>
</li>
<li class="hm-t-item hm-t-item-img">
<a class="hm-t-img" href="http://www.abab.com/play/544482.html" target="_blank" title="植物大战僵尸之泡泡堂" data-pos="2">
<img src="./game_files/u=1599119432,2904881940&fm=72" style="width: 93.75px; height: 75px; margin-left: -9.5px;">
</a>
<a class="hm-t-img-title" href="http://www.abab.com/play/544482.html" target="_blank" title="植物大战僵尸之泡泡堂" data-pos="2" style="visibility: visible; height: 28px;">植物大战僵尸之泡泡堂</a>
</li>
<li class="hm-t-item hm-t-item-img">
<a class="hm-t-img" href="http://www.abab.com/play/460541.html" target="_blank" title="森林冰火人" data-pos="3">
<img src="./game_files/u=1877401892,3122028719&fm=72" style="width: 93.75px; height: 75px; margin-left: -9.5px;">
</a>
<a class="hm-t-img-title" href="http://www.abab.com/play/460541.html" target="_blank" title="森林冰火人" data-pos="3" style="visibility: visible; height: 28px;">森林冰火人</a>
</li>
<li class="hm-t-item hm-t-item-img">
<a class="hm-t-img" href="http://www.abab.com/play/506258.html" target="_blank" title="植物大战僵尸无敌版" data-pos="4">
<img src="./game_files/u=1980479334,3207869817&fm=72" style="width: 93.75px; height: 75px; margin-left: -9.5px;">
</a>
<a class="hm-t-img-title" href="http://www.abab.com/play/506258.html" target="_blank" title="植物大战僵尸无敌版" data-pos="4" style="visibility: visible; height: 28px;">植物大战僵尸无敌版</a>
</li>
<li class="hm-t-item hm-t-item-img">
<a class="hm-t-img" href="http://www.abab.com/play/460550.html" target="_blank" title="愤怒的小鸟之里约大冒险" data-pos="5">
<img src="./game_files/u=1457282529,2829134262&fm=72" style="width: 93.75px; height: 75px; margin-left: -9.5px;">
</a>
<a class="hm-t-img-title" href="http://www.abab.com/play/460550.html" target="_blank" title="愤怒的小鸟之里约大冒险" data-pos="5" style="visibility: visible; height: 28px;">愤怒的小鸟之里约大冒险</a>
</li>
<li class="hm-t-item hm-t-item-img">
<a class="hm-t-img" href="http://www.abab.com/play/464081.html" target="_blank" title="植物大战僵尸疯狂大叔无敌版" data-pos="6">
<img src="./game_files/u=1650792407,3101775295&fm=72" style="width: 93.75px; height: 75px; margin-left: -9.5px;">
</a>
<a class="hm-t-img-title" href="http://www.abab.com/play/464081.html" target="_blank" title="植物大战僵尸疯狂大叔无敌版" data-pos="6" style="visibility: visible; height: 28px;">植物大战僵尸疯狂大叔无敌版</a>
</li>
<li class="hm-t-item hm-t-item-img">
<a class="hm-t-img" href="http://www.abab.com/play/567023.html" target="_blank" title="保卫萝卜电脑版2" data-pos="7">
<img src="./game_files/u=1858141992,3113388974&fm=72" style="width: 93.75px; height: 75px; margin-left: -9.5px;">
</a>
<a class="hm-t-img-title" href="http://www.abab.com/play/567023.html" target="_blank" title="保卫萝卜电脑版2" data-pos="7" style="visibility: visible; height: 28px;">保卫萝卜电脑版2</a>
</li>
</ul>
<div class="hm-t-footer"><a href="http://tuijian.baidu.com/" target="_blank">百度推荐</a></div>
</div></div></body></html>