This repository has been archived by the owner on Jun 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1204 lines (1152 loc) · 112 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="globalsign-domain-verification" content="HDQFiEDQ-ho-zW1kv3XmZeIb9N9ITcn37mXMIkeyy6" />
<title>Sailor Senshi Maker 3 ~ dress up Sailor Moon!</title>
<meta name="description" content="Make your own OC Sailor Scout in this Sailor Moon inspired dress up game!" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="/cdn-cgi/apps/head/4OhLrHbpudmrenhSVL-Tc7_2XlY.js"></script><script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Raleway', 'Marcellus', 'Julius Sans One']
}
});
</script>
<meta name="google-site-verification" content="DC4Fzroa8-DyK4q3sWJVBp-dkQXsro-qVuVQYQKDX18" />
<link href="http://www.dolldivine.com/css/tiaraStyle15.css" rel="stylesheet" type="text/css" />
<script src="http://www.dolldivine.com/Scripts/AC_RunActiveContent.js" type="text/javascript" data-cfasync='true'></script>
<script language="JavaScript" type="text/JavaScript" src="http://www.dolldivine.com/js/general2.js" data-cfasync='true'></script>
<script language="JavaScript" type="text/JavaScript" src="http://www.dolldivine.com/js/ajax2.js" data-cfasync='true'></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js" data-cfasync='true'></script>
<script language="JavaScript" type="text/JavaScript" src="http://www.dolldivine.com/js/jquery.js" data-cfasync='true'></script>
<script language="JavaScript" type="text/JavaScript" src="http://www.dolldivine.com/js/jquery.corner.js" data-cfasync='true'></script>
<script language="JavaScript" type="text/JavaScript" src="http://www.dolldivine.com/js/jquery.example.js" data-cfasync='true'></script>
<script language="JavaScript" type="text/JavaScript" src="http://www.dolldivine.com/js/jquery.equalheights.js" data-cfasync='true'></script>
<script type="text/javascript" src="http://apis.google.com/js/plusone.js" data-cfasync='true'>
{parsetags: 'explicit'}
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-4968540-1', 'dolldivine.com');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script async='async' src='https://www.googletagservices.com/tag/js/gpt.js'></script>
<script>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
</script>
<script>
googletag.cmd.push(function() {
googletag.defineSlot('/22152718/DollDivine_BTF_Sidebar_Skyscraper', [[300, 250], [300, 600], [160, 600]], 'div-gpt-ad-1490973452238-0').addService(googletag.pubads());
googletag.defineSlot('/22152718/DollDivine_BottomLeader', [728, 90], 'div-gpt-ad-1490973658751-0').addService(googletag.pubads());
googletag.defineSlot('/22152718/DollDivine_Homepage_Unit', [[300, 250], [336, 280]], 'div-gpt-ad-1499948590647-0').addService(googletag.pubads());
googletag.defineSlot('/22152718/DollDivine_ATF_Sidebar_160X600', [160, 600], 'div-gpt-ad-1499948695009-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.pubads().collapseEmptyDivs();
googletag.enableServices();
});
</script>
<meta property="og:image" content="http://www.dolldivine.com/images/sailor-moon-maker.jpg" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript">
(function() {
function async_load(script_url){
var protocol = ('https:' == document.location.protocol ? 'https://' : 'http://');
var s = document.createElement('script'); s.src = protocol + script_url;
var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
}
bm_website_code = '5C3495FFC32B4165';
jQuery(document).ready(function(){async_load('asset.pagefair.com/measure.min.js')});
jQuery(document).ready(function(){async_load('asset.pagefair.net/ads.min.js')});
})();
</script>
<script type="text/javascript">
$('#comments_section').hide();
var clicked = false; // to stop multi-clicking on slow connections
// This function calls ajax code to collect a user's 10 bonus crowns for 7 consecutive days logon
function collect_my_bonus_crowns(old_counter, updir) {
if (!clicked) {
if (updir) {
var path = 'http://www.dolldivine.com/ajax.php';
}
else {
var path = 'ajax';
}
makeRequest('action=collect_bonus_crowns', path, 'GET', 'collect_daily_crown_ajx_rtn');
clicked = true;
setTimeout('do_nothing()',1500);
var rtn_val = document.getElementById('collect_daily_crown_ajx_rtn').innerHTML;
document.getElementById('daily_crown_text').innerHTML = ' 10 bonus crowns COLLECTED!';
}
}
// This function calls ajax code to collect a user's daily crown
function collect_my_daily_crown(old_counter, updir) {
if (!clicked) {
if (updir) {
var path = 'http://www.dolldivine.com/ajax.php';
}
else {
var path = 'ajax';
}
makeRequest('action=collect_daily_crown', path, 'GET', 'collect_daily_crown_ajx_rtn');
clicked = true;
setTimeout('do_nothing()',1500);
document.getElementById('daily_crown_text').innerHTML = ' <b>Daily crown has been COLLECTED!</b>';
}
}
// time waster function
function do_nothing() {
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
</script>
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#64386b",
"text": "#ffcdfd"
},
"button": {
"background": "#f8a8ff",
"text": "#3f0045"
}
},
"theme": "edgeless",
"content": {
"href": "http://www.dolldivine.com/privacypolicy.php"
}
})});
</script>
</head>
<body>
<table width="943" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="441"><a href="http://www.dolldivine.com"><img src="http://www.dolldivine.com/images/doll-divine-logo.png" alt="dress up games by Doll Divine logo" title="Dress Up Games and Doll Makers by Doll Divine" width="500" border="0" /></a></td>
<td align="right" width="350" style="padding-top: 5px;">
<form name="loginform" id="loginform" method="post" action="/0sailorTest.php" />
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="right" style="padding-bottom:5px;" valign="top">
<input type="hidden" name="login" value="true" />
<input type="hidden" name="attemptlogin" value="1" />
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="login_text">E-mail:</td>
<td> <input type="text" tabindex="1" size="8" class="login_form" name="username" id="username" value="" maxlength="100" /></td>
<td class="login_text"> Password:</td>
<td> <input type="password" tabindex="2" size="8" class="login_form" name="password" id="password" value="" maxlength="100" onKeyPress="enter_form(event, 'loginform');" /></td>
<td align="right"> <input type="button" tabindex="3" class="login_form_btn" value="LOGIN" onClick="submit_form('loginform');" onKeyPress="enter_form(event, 'loginform');" style="margin-top: 5px;" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<div style="position: relative; float: left; margin-left: 1px;"><input type="checkbox" name="remember_me" value="1" style="margin-top: 2px;" checked><span class="login_text"> Remember me</span></div> <a href="/forgot_password.php" class="login_text">Forgot your password?</a>
</td>
</tr>
</table>
</form>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="height: 16px;">
</td>
</tr>
<tr>
<td align="right" style="padding-top:5px;">
<form action="http://www.dolldivine.com/search.php" id="cse-search-box">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td valign="top"> </td>
<td width="5"> </td>
<td width="100%" align="right">
<div>
<input type="hidden" name="cx" value="partner-pub-0566198054227871:beaok2qev2z" />
<input type="hidden" name="cof" value="FORID:9" />
<input type="hidden" name="ie" value="ISO-8859-1" />
<input type="text" name="q" size="18" style="" />
<input type="submit" name="sa" class="login_form_btn" style="margin-bottom: 2px;" value="Search" />
</div><script type="text/javascript" src="http://www.google.com/cse/brand?form=cse-search-box&lang=en"></script>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2">
<table width="943" border="0" cellpadding="0" cellspacing="5" height="40" style="font-family:Julius Sans One;font-size: 22px;">
<tr>
<td><a style="color: #FFFBE2; text-decoration:none" href="http://www.dolldivine.com/exclusive-dress-up-games.php">Exclusive</a></td>
<td width="5"> </td>
<td><a style="color: #FFFBE2; text-decoration:none" href="http://www.dolldivine.com/anime-games.php">Anime</a></td>
<td width="5"> </td>
<td><a style="color: #FFFBE2; text-decoration:none" href="http://www.dolldivine.com/animal-makers.php">Animals</a></td>
<td width="5"> </td>
<td><a style="color: #FFFBE2; text-decoration:none" href="http://www.dolldivine.com/fantasy.php">Fantasy</a></td>
<td width="5"> </td>
<td><a style="color: #FFFBE2; text-decoration:none" href="http://www.dolldivine.com/media.php">Fandoms</a></td>
<td width="5"> </td>
<td><a style="color: #FFFBE2; text-decoration:none" href="http://www.dolldivine.com/fashion.php">Fashion</a></td>
<td width="5"> </td>
<td><a style="color: #FFFBE2; text-decoration:none" href="http://www.dolldivine.com/folk.php">World</a></td>
<td width="5"> </td>
<td><a style="color: #FFFBE2; text-decoration:none" href="http://www.dolldivine.com/random.php">Random!</a></td>
</tr>
</table>
<table width="943" border="0" cellpadding="0" cellspacing="5" style="font-family:Julius Sans One;font-size: 14px;">
<tr>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/tagged-games.php?tagged=chibi">Chibi</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/dress-up-couples.php">Couples</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/tagged-games.php?tagged=disney">Disney</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/tagged-games.php?tagged=dragons">Dragons</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/tagged-games.php?tagged=harry%20potter">Harry Potter</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/historical.php">History</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/tagged-games.php?tagged=inkscribble">Inkscribble</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/male.php">Male</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/tagged-games.php?tagged=mermaids">Mermaids</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/tagged-games.php?tagged=my%20little%20pony">My Little Pony</a></td>
<td width="5"> </td>
<td><a style="color: #F7F2CB; text-decoration:none" href="http://www.dolldivine.com/princess-games.php">Princess</a></td>
</tr>
</table>
<div class="sub_menu_l"><b>Dolls:</b>
<a href="http://www.dolldivine.com/newest-dolls.php" title="Newest Dolls" class="sub_menu_top_sm">Newest</a> -
<a href="http://www.dolldivine.com/highest-rated-dolls.php" title="Highest Rated" class="sub_menu_top_sm">Winning</a> -
<a href="http://www.dolldivine.com/beloved-dolls.php" title="Beloved Dolls" class="sub_menu_top_sm">Beloved</a>
</div>
</td>
</tr>
</table>
<div class="blankPageSpanningDivider"></div>
<table width="840" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top">
<table width="175" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="160" valign="top">
<div style="height: 600px; width: 160px; background-image: url(http://www.dolldivine.com/images/fairy-preview.jpg);">
<div id='div-gpt-ad-1499948695009-0' style='height:600px; width:160px;'>
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1499948695009-0'); });
</script>
</div>
</div>
</td>
<td width="15"> </td>
</tr>
</table>
</td>
<td width="135" valign="top">
<table width="135" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table width="120" height="35" border="0" cellpadding="5" cellspacing="0">
<tr>
<td style="background-color:rgba(255,255,235,0.3); text-align: center; font-family: Verdana, Arial, sans-serif; font-size: 14px; color: #fce5cb; font-weight: bold;">
<span>♥</span> Games <span>♥</span>
</td>
</tr>
</table>
<table width="135" height="565" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="background-color:rgba(255,255,255,0.1); vertical-align: top; align: center;">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<div class="iconBigBoxes" style="font-family: Verdana, Arial, sans-serif; font-size: 9px; color: #ce7aa5; text-decoration: none;">
Please login or register to fave games </div>
<div class="iconBigBoxes"><a style="font-family: Verdana, Arial, sans-serif; font-size: 9px; color: #ce7aa5; text-decoration: none;" href="http://www.dolldivine.com/magical-girl-bonnie.php">more magical girl:<img src="http://www.dolldivine.com/images/2logoMagical.gif" alt="Magical Girl dress up game" title="Choose a beautiful look for this magical girl" width="94" height="94" border="0" />Magical Girl</a></div>
<div class="iconBigBoxes"><a style="font-family: Verdana, Arial, sans-serif; font-size: 9px; color: #ce7aa5; text-decoration: none;" href="http://www.dolldivine.com/chibi-beach-girl.php">more anime:<img src="http://www.dolldivine.com/images/chibi-beach.png" alt="Pink haired chibi" title="Chibis at the beach!" width="94" height="94" border="0" />Chibi Beach</a></div>
<div class="iconBigBoxes"><a style="font-family: Verdana, Arial, sans-serif; font-size: 9px; color: #ce7aa5; text-decoration: none;" href="http://www.dolldivine.com/kawaii-fashion.php">more anime:<img src="http://www.dolldivine.com/images/kawaii-fashion.jpg" alt="kawaii japanese lolita doll maker" title="Dress up game featuring the cutest Japan has to offer" width="94" height="94" border="0" />Kawaii Fashion</a></div>
<div class="iconBigBoxes"><a style="font-family: Verdana, Arial, sans-serif; font-size: 9px; color: #ce7aa5; text-decoration: none;" href="http://www.dolldivine.com/rapunzel.php">more dolldivine:<img src="http://www.dolldivine.com/images/rapunzel.png" alt="Historical brunette" title="Dress this beauty in flowing Art Nouveau garb" width="94" height="94" border="0" />Rapunzel</a></div>
</td>
</tr>
</table>
</td>
<td width="15"> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign="top">
<table width="800" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="800" class="yellowButterfly">
<script type="text/javascript">
var TUNNL_OPTIONS = {
debug: false,
container: 'AdsContent',
onEvent: function(event) {
switch (event.name) {
case 'SDK_CONTENT_START':
var tunnlGameContainer = document.getElementById('GameContent');
if (tunnlGameContainer) {
tunnlGameContainer.style.display = 'block';
}
break;
case 'SDK_CONTENT_PAUSE':
var tunnlGameContainer = document.getElementById('GameContent');
if (tunnlGameContainer) {
tunnlGameContainer.style.display = 'none';
}
break;
case 'SDK_READY':
// ...
break;
case 'SDK_ERROR':
var tunnlGameContainer = document.getElementById('GameContent');
if (tunnlGameContainer) {
tunnlGameContainer.style.display = 'block';
}
break;
}
},
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = '//preroll.api.gamedistribution.com/preroll/main.min.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'tunnl-jssdk'));
</script>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553560000" width="800" height="600" id="GameContent">
<embed src="http://www.dolldivine.com/games/sailor-moon2.swf" wmode="opaque" width="800" height="600" allowscriptaccess="always" allowfullscreeninteractive="true" allowfullscreen="true">
<param name="movie" value="http://www.dolldivine.com/games/sailor-moon2.swf">
<param name="quality" value="high">
<param name="wmode" value="opaque">
<param name="swfversion" value="11.4.0.0">
<param name="expressinstall" value="Scripts/expressInstall.swf">
<param name="allowscriptaccess" value="always">
<param name="allowFullScreenInteractive" value="true" />
</object>
<div id="AdsContent" style="width: 800px; height: 600px; position: relative;"></div>
<script type="text/javascript">
var gameContent = document.getElementById("GameContent");
gameContent.style.display = "none";
function ShowHide() {
gameContent.style.display = "block";
}
</script>
<script src="/js/fuckadblock.js"></script>
<script type="text/javascript">
function adBlockDetected() {
ShowHide();
}
function adBlockNotDetected() {
}
if(typeof fuckAdBlock === 'undefined') {
adBlockDetected();
} else {
fuckAdBlock.setOption({ debug: true });
fuckAdBlock.onDetected(adBlockDetected).onNotDetected(adBlockNotDetected);
}
</script>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="blankPageSpanningDivider"></div>
<table width="943" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="320" valign="top">
<table width="320" border="0" cellpadding="8" cellspacing="0">
<tr>
<td class="pinkCrownBanner"><img src="images/spacer.gif" width="24" /></td>
<td class="yellowButterflyTextLists" width="280">
<span class="sideTableFont"><strong>Sailor Senshi Maker 3.0</strong></span>
<img src="http://www.dolldivine.com/images/sailor-moon-dress-up.jpg" alt="Neo Queen Serenity" title="Create the ultimate Sailor Moon character" class="game_icon_game_page" /> <br />
<span class="sub_categories_font"><b>Game by:</b> Doll Divine<br /><b>Art by:</b><a href="http://www.facebook.com/pages/Drachea-Rannak/116180445083574" target="_blank" class="sub_categories"> Drachea Rannak</a>
<br />
<br />
The third incarnation of the <a href="sailor-senshi-maker.php" target="_blank">classic Sailor Moon character maker</a> has been brought to you by an ambitious, fan-driven, crowd-funding campaign, spearheaded by <a href="https://www.fanfiction.net/u/1341174/windsting" target="_blank">windsting</a>. You can, as always, create your own girl sailor senshi characters, with more options than ever, but also MALE senshi and pets!<br />
<br />
This game contains the full senshi fuku set, with all the accessories. There are endless hairstyles and makeup, as well as all the jewelry for all sailor forms. Manga, Super, Eternal.. create your favorite characters in all their incarnations, and then create yourself in your own outfit! Then, pair your sailor scouts with their boy counterparts, including both a classic gender-bent version of the outfit, as well as the very classy "sailor" male interpretation made famous by Drachea Rannak. You can also add adorable pets, and create infinite characters and place them in a scene!
<br />
<br />
<b>Tags: </b>
<a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=dolldivine">dolldivine</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=sailor moon">sailor moon</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=anime">anime</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=magical girl">magical girl</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=weapons">weapons</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=mega hits">mega hits</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=tv shows">tv shows</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=magicians">magicians</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=cartoons">cartoons</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=scene maker">scene maker</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=couples">couples</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=male">male</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=animals">animals</a> - <a class="sub_categories" href="http://www.dolldivine.com/tagged-games.php?tagged=brush mode">brush mode</a> <br />
<br />
<img src="http://www.dolldivine.com/images/sailor-moon-maker.jpg" alt="Neo Queen Serenity" title="Create beautiful Sailor Moon characters and dress them up ~" />
</span>
</td>
</tr>
</table>
<table width="320" height="15" cellpadding="0" cellspacing="0">
<tr>
<td></td>
</tr>
</table>
<table width="320" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="20" bgcolor="#DC8FA3"><img src="images/spacer.gif" width="20" /></td>
<td valign="top">
<div id='div-gpt-ad-1490973452238-0'>
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1490973452238-0'); });
</script>
</div>
</td>
</tr>
</table>
<table width="320" height="15" cellpadding="0" cellspacing="0">
<tr>
<td></td>
</tr>
</table>
<table width="320" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="20" bgcolor="#DC8FA3"><img src="images/spacer.gif" width="20" /></td>
<td valign="top">
<script async="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle" style="display:inline-block;width:300px;height:600px" data-ad-client="ca-pub-0566198054227871" data-ad-slot="8913089116"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</td>
</tr>
</table>
</td>
<td width="15"> </td>
<td width="608" valign="top">
<table width="608" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40" class="pinkCrownBanner"><img src="images/spacer.gif" width="40" /></td>
<td style="background: url('images/butterflyYellow.png') no-repeat #F9F2D1; vertical-align: top;">
<script language="javascript" type="text/javascript">
function reportabuse(badurl, updir) {
var updir = false;
makeRequest('action=badcomment_reported&badurl='+badurl+'','ajax','POST','ajxrtn_badcomment',updir);
// makeRequest('action=report_abuse&badurl='+badurl+'&typedd='+typedd+'&identt='+identt+'', 'ajax', 'GET', 'ajxrtn3',true);
}
function fetch_comments(page_num, ajcode, thisurl, updir) {
$('#comments_section_loader_def').hide();
$('#comments_section_loader').show();
// use ajax to get the 'pagenum' worth of comments...
var updir = false;
var path = 'ajax';
makeRequest('action=comments_pagenum&pagenum='+page_num+'&ajcode='+ajcode+'&thisurl='+thisurl+'', path, 'POST', 'comments_section' ,updir);
$('#comments_section_loader_def').show();
$('#comments_section_loader').hide();
}
function post_this_form(comment_class,c_identifier) {
var comment=document.getElementById('comment').value;
if (comment_class == 'Game') {
var raw = comment.replace('&','____');
var cooked = raw.replace('?','----');
// use ajax to enter into DB and return correct msg to print
makeRequest('action=post_game_comment&body='+cooked+'&comment_class='+comment_class+'&c_identifier='+c_identifier+'','ajax','POST','ajxrtn_p_game_comment',false);
}
else {
// straight out DB insert
submit_form('comments_p');
}
}
function removecomment(comment_class,c_identifier,c_identifier_b) {
var updir = false;
// use ajax to remove it
makeRequest('action=remove_comment&comment_class='+comment_class+'&c_identifier='+c_identifier+'&c_identifier_b='+c_identifier_b+'','ajax','POST','ajxrtn_r_comment',updir);
}
function likecomment(comment_class,c_identifier) {
var updir = false;
// use ajax
makeRequest('action=like_comment&comment_class='+comment_class+'&c_identifier='+c_identifier+'','ajax','POST','ajxrtn_l_comment',updir);
}
function dislikecomment(comment_class,c_identifier) {
var updir = false;
// use ajax
makeRequest('action=dislike_comment&comment_class='+comment_class+'&c_identifier='+c_identifier+'','ajax','POST','ajxrtn_dl_comment',updir);
}
function update_chars_ctr() {
var quota = 500;
var comment_chars = document.getElementById('comment').value;
var new_value = quota - (comment_chars.length);
document.getElementById('chars_ctr').innerHTML = new_value;
}
</script>
<div id="tags">
<div style="margin-left: 5px;">
<br />
<span class="sideTableFont">Popular Game Tags:
<br />
<br />
<a href="http://www.dolldivine.com/tagged-games.php?tagged=anime" class="sub_categories" style="font-size: 25px" title="4 things tagged with anime">anime</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=cartoons" class="sub_categories" style="font-size: 10px" title="1 things tagged with cartoons">cartoons</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=chibi" class="sub_categories" style="font-size: 15px" title="2 things tagged with chibi">chibi</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=couples" class="sub_categories" style="font-size: 15px" title="2 things tagged with couples">couples</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=disney" class="sub_categories" style="font-size: 20px" title="3 things tagged with disney">disney</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=dragons" class="sub_categories" style="font-size: 10px" title="1 things tagged with dragons">dragons</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=fashion" class="sub_categories" style="font-size: 10px" title="1 things tagged with fashion">fashion</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=harry potter" class="sub_categories" style="font-size: 20px" title="3 things tagged with harry potter">harry potter</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=historical" class="sub_categories" style="font-size: 10px" title="1 things tagged with historical">historical</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=inkscribble" class="sub_categories" style="font-size: 15px" title="2 things tagged with inkscribble">inkscribble</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=mermaids" class="sub_categories" style="font-size: 15px" title="2 things tagged with mermaids">mermaids</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=my little pony" class="sub_categories" style="font-size: 10px" title="1 things tagged with my little pony">my little pony</a> <a href="http://www.dolldivine.com/tagged-games.php?tagged=princess" class="sub_categories" style="font-size: 15px" title="2 things tagged with princess">princess</a> </span>
<br />
<br />
<br />
</div>
<div id="videoContainer"></div>
<script>
var settings = {
container: "videoContainer",
gameId: "d41d8cd98f00b204e9800998ecf8427e",
publisherId: "d3d9446802a44259755d38e6d163e820",
width: "100%",
height: "400px",
title: "",
langCode: "en-us",
autoplay: "no",
onFound: function (data) {
console.log(data);
},
onError: function (data) {
console.log(data);
}
};
(function(i,s,o,g,r,a,m){
i['FamobiWalk']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)};i[r].l=1*new Date();a=s.createElement(o);m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a, m);
})(window, document, 'script', '//player.walkthrough.gamedistribution.com/libs/gd/gd.js', 'gdPlayer');
gdPlayer(settings);
</script>
<p class="sideTableFont" style="margin-left: 5px;">Wanna post a comment? Become a <a class="sideTableFont" href="/subscriptions.php">Premium</a> Doll Divine member!</p>
<br />
<div id="comments_section">
<span class="sideTableFontBold" style="margin-left: 5px;">Comments (497)</span><br />
<div class="comments_box" style="width: 550px;">
<div class="comment" style="">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/purplevampire"><img id="image_avatar" src="http://www.dolldivine.com/users/n/ni/14045/th_2015-05-04_22-22-05--108_162_215_202--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/purplevampire"><b>purplevampire</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 6 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">I wish there was an on clothes option<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">2 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/PinkRobin"><img id="image_avatar" src="http://www.dolldivine.com/users/A/An/222716/th_2017-11-06_20-20-05--109_159_187_211--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/PinkRobin"><b>PinkRobin</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 12 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">No but really, I'd pay money into a fundraiser for male hair draggies to be the same as the female ones simply because I love this game so much.<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">3 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/catpop12343"><img id="image_avatar" src="http://www.dolldivine.com/users/j/jo/346333/th_2016-05-29_12-12-04--66_189_5_148--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/catpop12343"><b>catpop12343</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 1 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">Pikachuparty12: challenge accepted!<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">4 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/Pikachuparty12"><img id="image_avatar" src="http://www.dolldivine.com/users/n/na/467780/th_2017-10-01_6-06-07--79_55_168_67--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/Pikachuparty12"><b>Pikachuparty12</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 3 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">I made a new challenge: 1. Press chaos 3 times 2. Try to make it not look like chaos. There is only one (or two idk) rule: Don't change the hair or the skin color.<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">4 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/catpop12343"><img id="image_avatar" src="http://www.dolldivine.com/users/j/jo/346333/th_2016-05-29_12-12-04--66_189_5_148--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/catpop12343"><b>catpop12343</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 7 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">who else thinks the subs are WAAAY better than the dub?<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">5 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/toramonger"><img id="image_avatar" src="http://www.dolldivine.com/users/h/hi/193641/th_2017-06-13_1-01-51--2602:306:3194:c970:78de:527a:68ed:cc--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/toramonger"><b>toramonger</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 15 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">I would pay money for the male to have the same hair D&D as the female...ah what I could do with that 'sighs wistfully'<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">7 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/catpop12343"><img id="image_avatar" src="http://www.dolldivine.com/users/j/jo/346333/th_2016-05-29_12-12-04--66_189_5_148--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/catpop12343"><b>catpop12343</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 0 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">Mytherva: i know that feeling.... it sucks.<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">7 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/Mytherva"><img id="image_avatar" src="http://www.dolldivine.com/users/z/zu/416775/th_2017-04-23_18-18-18--24_64_148_24--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/Mytherva"><b>Mytherva</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 8 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">:'( I was working on a doll for a DDNTM on here, and I had a version saved, but I had added a whole bunch of details that made it looks much better, and I was going back and forth between a tutorial and the doll on 2 different tabs, but I accidentally closed the tab with the doll, and I didn't save the version with the extra details. Why???<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">9 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/Dollie"><img id="image_avatar" src="http://www.dolldivine.com/users/p/pu/419814/th_2017-11-29_17-17-48--108_49_233_13--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/Dollie"><b>Dollie</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 10 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">It would be nice if this game had jackets that could be put over the shirts/leotards.<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">9 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/KatTheElf"><img id="image_avatar" src="http://www.dolldivine.com/users/k/ka/462020/th_2017-02-04_22-22-39--97_75_243_69--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/KatTheElf"><b>KatTheElf</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 0 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">@RainingMoondrop: It could be the transformation pen.<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">11 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/windsting"><img id="image_avatar" src="http://www.dolldivine.com/users/j/je/218010/th_2015-04-16_18-18-09--108_162_221_199--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/windsting"><b>windsting</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 0 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">@BansheeCupcake: (Regarding background) Yeah, it was just a one time surprise. ;)<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">11 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
<div class="comment" style="border-top: 1px dotted #DC8FA3; ">
<table width="100%" cellpadding="3" border="0">
<tr>
<td valign="top" rowspan="3" width="50"><a href="http://www.dolldivine.com/galleries/windsting"><img id="image_avatar" src="http://www.dolldivine.com/users/j/je/218010/th_2015-04-16_18-18-09--108_162_221_199--Member-Submitted.jpg" border="0" width="40" /></a></td>
<td valign="top"><a class="mostPopularLinks" href="http://www.dolldivine.com/galleries/windsting"><b>windsting</b></a></td>
<td align="right" width="170">
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td>
<a href="Javascript:void(0);" onClick="alert('Subscribe to Doll Divine to Like and Dislike comments!')"><img id="Like this comment" align="left" title="Like this comment" src="http://www.dolldivine.com/images/comments-heart.png" border="0" /></a>
</td>
<td class="de_selected_gal"> 0 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" colspan="2" class="signup_form">@RainingMoondrop: I think it's supposed to be a generic wand to use or build off of. I've always thought it looked kind of similar to Moon's Disguise Pen.<br /></td>
</tr>
<tr>
<td valign="bottom" class="mostPopularLinks">11 months ago</td>
<td valign="bottom" align="right">
</td>
</tr>
</table>
</div>
</div>
<table border="0" cellpadding="1" cellspacing="0" width="100%">
<tr>
<td align="center" valign="middle" style="padding-top: 12px;">
<span class="sideTableFont">
<span class="currentPageButton">1</span> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('1','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">2</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('2','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">3</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('3','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">4</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('4','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">5</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('5','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">6</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('6','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">7</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('7','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">8</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('8','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">9</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('9','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">10</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('10','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">11</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('11','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">12</a> <a class="buttons" href="javascript: void(0);" onclick="fetch_comments('1','acsailor-moon-comments---','www.dolldivine.com/0sailorTest.php',false)">Next</a>
</span>
</td>
</tr>
</table>
<div id="ajxrtn3" style=""></div>
<div id="comments_section_loader" style="display: none; text-align: center; position: relative;"><img id="loading-image" src="/images/ajax-load.gif" alt="Loading..." /></div>
<div id="comments_section_loader_def" style="text-align: center; position: relative;"><img src="/images/spacer.gif" /></div>
</div>
<br />
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="categoryTitleFont">Highest Rated Dolls</td>
<td align="right" valign="top" style="padding-right: 53px; padding-top: 17px">
</td>
</tr>
<tr>
<td colspan="2">
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/2BlueWizards-3054497"><img src="users/g/gw/429673/th_2017-10-10_16-16-28--2602:306:3455:5250:c856:b385:643e:e340--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/2BlueWizards" class="gameIconLinks">2BlueWizards</a><br /><span style="color: red; font-weight: bold;">96%</span></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/Nox_Imperatrix-3053413"><img src="users/s/sh/474283/th_2017-09-20_22-22-57--172_220_202_76--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/Nox_Imperatrix" class="gameIconLinks">Nox_Imperatrix</a><br /><span style="color: red; font-weight: bold;">89%</span></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/silver_kitten-3053514"><img src="users/V/Vi/397093/th_2017-09-23_13-13-59--94_236_135_30--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/silver_kitten" class="gameIconLinks">silver_kitten</a><br /><span style="color: red; font-weight: bold;">85%</span></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/Mytherva-3054486"><img src="users/z/zu/416775/th_2017-10-10_13-13-23--24_64_148_24--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/Mytherva" class="gameIconLinks">Mytherva</a><br /><span style="color: red; font-weight: bold;">84%</span></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/DysMalLexia-3055156"><img src="users/l/lo/469627/th_2017-10-25_21-21-20--91_125_233_235--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/DysMalLexia" class="gameIconLinks">DysMalLexia</a><br /><span style="color: red; font-weight: bold;">83%</span></div>
</td>
</tr>
<tr>
<td colspan="2" align="right" style="padding-right: 49px; padding-top: 12px;">
<span class="sideTableFont"><a href="http://www.dolldivine.com/highest-rated-dolls.php?objietek=2" class="buttons">See All</a></span> <span class="sideTableFont"><a href="http://www.dolldivine.com/voting_page.php?objietek=2" class="buttons">Vote!</a></span></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="categoryTitleFont">Newest Dolls</td>
<td align="right" valign="top" style="padding-right: 53px; padding-top: 17px">
</td>
</tr>
<tr>
<td colspan="2">
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/MurrImABttrfly-3057279"><img src="users/g/go/424284/th_2017-12-12_13-13-57--172_92_68_218--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/MurrImABttrfly" class="gameIconLinks">MurrImABttrfly</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/DysMalLexia-3057273"><img src="users/l/lo/469627/th_2017-12-12_10-10-43--91_125_233_215--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/DysMalLexia" class="gameIconLinks">DysMalLexia</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/EvenstarForever-3057262"><img src="users/m/my/229923/th_2017-12-11_21-21-47--208_124_13_195--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/EvenstarForever" class="gameIconLinks">EvenstarForever</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/BansheeCupcake-3057258"><img src="users/b/ba/135215/th_2017-12-11_20-20-06--47_210_88_2--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/BansheeCupcake" class="gameIconLinks">BansheeCupcake</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="Anime/toramonger-3057247"><img src="users/h/hi/193641/th_2017-12-11_14-14-55--2602:306:3194:c970:78de:527a:68ed:cc--Member-Submitted.jpg" width="90" height="135" border="0" /></a><a href="galleries/toramonger" class="gameIconLinks">toramonger</a></div>
</td>
</tr>
<tr>
<td colspan="2" align="right" style="padding-right: 49px; padding-top: 12px;"><br /><span class="sideTableFont"><a href="http://www.dolldivine.com/newest-dolls.php?objietek=2" class="buttons">See All</a></span></td>
</tr>
<tr>
<td colspan="2"><br /></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="588" height="15" cellpadding="0" cellspacing="0">
<tr>
<td></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40" class="pinkCrownBanner"><img src="images/spacer.gif" width="40" /></td>
<td style="background: url('images/butterflyYellow.png') no-repeat #F9F2D1; vertical-align: top;">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="categoryTitleFont">Other Doll Makers</td>
</tr>
<tr>
<td>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/car-breeder-auto-design.php"><img src="http://www.dolldivine.com/images/logoCar.gif" alt="Fantasy Car Designer" title="Breed cars together to create your perfect fantasy car!" width="94" height="94" border="0" />Car Breeder</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/charlene-dress-up.php"><img src="http://www.dolldivine.com/images/2logoCharlene.gif" alt="Charlene emo scene dress up game" title="Dress up the character Charlene" width="94" height="94" border="0" />Charlenedressup</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/dark-princess.php"><img src="http://www.dolldivine.com/images/2logoDarkPrincess.gif" alt="Dark Princess dress up game" title="Dress up a dark-magic-wielding princess" width="94" height="94" border="0" />Dark Princess</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/fabulous-pony-maker.php"><img src="http://www.dolldivine.com/images/fabulous-pony-maker.png" alt="The Fabulous Pony Maker" title="Create your own MLP characters!" width="94" height="94" border="0" />Fabulous Pony</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/korean-warrior.php"><img src="http://www.dolldivine.com/images/2logoSeondeok.gif" alt="Korean Warrior dress up game" title="Prepare for adventure with a wide selection of clothes, accessories and weapons!" width="94" height="94" border="0" />Korean Warrior</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/magician-dress-up-game.php"><img src="http://www.dolldivine.com/images/magician-dress-up-game.gif" alt="magician lady dress up game" title="Dress up Irma for her infamous magic show!" width="94" height="94" border="0" />Magician Maker</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/merpony-maker.php"><img src="http://www.dolldivine.com/images/merpony-maker.gif" alt="My Little Pony MLP Seapony maker" title="Create a dazzling underwater Pony" width="94" height="94" border="0" />Merpony Maker</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/mushroom-hunt-dress-up-game.php"><img src="http://www.dolldivine.com/images/mushroom-hunt.jpg" alt="Hipster fashion dress up game" title="Create a hip mushroom picking outfit" width="94" height="94" border="0" />Mushroom Hunt</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/regency-dress-up-doll.php"><img src="http://www.dolldivine.com/images/regency-dress-up-doll.gif" alt="Regency Period Victorian dress up doll" title="Dress a lady in proper regency period attire" width="94" height="94" border="0" />Regency Doll</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/scene-couples-maker.php"><img src="http://www.dolldivine.com/images/1logoSceneCouple.gif" alt="Emo Scene couples dress up" title="Choose a scene look for this couple" width="94" height="94" border="0" />Scene Couples</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/school-girl-dress-up.php"><img src="http://www.dolldivine.com/images/school-girl-dress-up.jpg" alt="Anime School girl Dress Up" title="Dress this cute girl up for class" width="94" height="94" border="0" />School Girl</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/fashionista-teen-queen.php"><img src="http://www.dolldivine.com/images/fashionista-teen-queen.png" alt="Redhead in purple gown" title="Choose a stunning look for this fashionista!" width="94" height="94" border="0" />Teen Queen</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/wolf-maker-unleashed.php"><img src="http://www.dolldivine.com/images/wolf-maker-unleashed.png" alt="wolf maker unleashed animal dress up" title="Fully customize every aspect of your wolf" width="94" height="94" border="0" />Wolf Maker 2</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/hatsune-miku-dressup.php"><img src="http://www.dolldivine.com/images/hatsune-miku-dress-up.jpg" alt="Hatsune Miku" title="Dress up the vocaloid Hatsune Miku!" width="94" height="94" border="0" />Hatsune Miku</a></div>
<div class="iconBigBoxes"><a class="gameIconLinks" href="http://www.dolldivine.com/dark-queen-dressup.php"><img src="http://www.dolldivine.com/images/dark-queen-dressup.jpg" alt="Element wielding mage" title="Dress up an elementalist" width="94" height="94" border="0" />Dark Queen</a></div>
</td>
</tr>
<tr>
<td align="center" valign="middle" style="padding-top: 12px;">
<span class="sideTableFont">
</span>
</td>
</tr>
</table>
<table width="100%" height="15" cellpadding="0" cellspacing="0">
<tr>