-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathresponse.html
1300 lines (1177 loc) · 105 KB
/
response.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>
<html>
<head>
<link rel="apple-touch-icon" href="http://gf1.geo.gfsrv.net/cdn68/20da7e6c416e6cd5f8544a73f588e5.png"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="Language" content="en"/>
<meta name="ogame-session" content="948d8951df57474fbe2a34b6bb455af1b9821900"/>
<meta name="ogame-version" content="5.8.0"/>
<meta name="ogame-version-check-url" content="http://gf2.geo.gfsrv.net/cdna5/4388e60776bc4dd590d41be942c195.js"/>
<meta name="ogame-timestamp" content="1412457761"/>
<meta name="ogame-universe" content="s125-en.ogame.gameforge.com"/>
<meta name="ogame-universe-speed" content="2"/>
<meta name="ogame-universe-speed-fleet" content="1"/>
<meta name="ogame-language" content="en"/>
<meta name="ogame-player-id" content="113995"/>
<meta name="ogame-player-name" content="mathfreak"/>
<meta name="ogame-alliance-id" content="232"/>
<meta name="ogame-alliance-name" content="Larger Than Life"/>
<meta name="ogame-alliance-tag" content="LTL"/>
<meta name="ogame-planet-id" content="33653202"/>
<meta name="ogame-planet-name" content="A Whole New World"/>
<meta name="ogame-planet-coordinates" content="1:373:8"/>
<meta name="ogame-planet-type" content="planet"/>
<!--[if (gt IE 9)|!(IE)]><!-->
<link rel="stylesheet" type="text/css" href="http://gf1.geo.gfsrv.net/cdnc4/a25f0962a239a7179c9131484e0503.css" media="screen" />
<!--<![endif]-->
<!--[if lt IE 10]>
<link rel="stylesheet" type="text/css" href="http://gf1.geo.gfsrv.net/cdnce/3644b63f8e3ea4a0e40c5d12732863.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf1.geo.gfsrv.net/cdn90/c83ef08f507c919b80110dea842400.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf3.geo.gfsrv.net/cdnba/9a4260138df4adea89e672c0409aa5.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf1.geo.gfsrv.net/cdn97/303324a83da44bcf1089b01922ef06.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf3.geo.gfsrv.net/cdn28/8f50259e0c568d90e1d0710b0f9eba.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf3.geo.gfsrv.net/cdn5a/ff69e41ab3a3ce54fcd95e670c2e3f.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf1.geo.gfsrv.net/cdnf1/e240f987a7b2d9d668989fd875b13a.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf3.geo.gfsrv.net/cdn8c/133a0be5319837ab0c5021624a991a.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf1.geo.gfsrv.net/cdnfb/ed93ce39f4284adb80587c0e877310.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf3.geo.gfsrv.net/cdn51/aa5f2302dae5c0e9142228ef8ada58.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf2.geo.gfsrv.net/cdndb/32b054a20d0f9aa3578a28af00096d.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf3.geo.gfsrv.net/cdn20/06ca05fb8d3b4b6d0b22d4d93bd50f.css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://gf1.geo.gfsrv.net/cdncc/ba3c51c0a45c836840d6349cc29c10.css" media="screen" />
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="http://gf3.geo.gfsrv.net/cdn8d/1df6f5ce6b5ac3325cf533ddd9152b.css" media="screen" />
<![endif]-->
<title>Yakini OGame</title>
</head>
<body id="overview"
class="ogame lang-en no-commander no-touch">
<div class="contentBoxBody">
<noscript>
<div id="messagecenter">
<div id="javamessagebox">
<span class="overmark">
<strong>Please activate JavaScript to continue with the game.</strong>
</span>
</div>
</div>
</noscript>
<div id="ie_message">
<p><img src="http://gf2.geo.gfsrv.net/cdn73/e621aa80dbd4746a9f4f114c8d3853.gif" height="16" width="16" />Your currently used browser is outdated and may cause display errors on this website. Please update your browser to a newer version: <a href="http://www.microsoft.com/upgrade/">Internet Explorer</a> or <a href="http://www.mozilla-europe.org/de/firefox/">Mozilla Firefox</a></p>
</div>
<script type="text/javascript">isIE = false;</script>
<!--[IF IE]>
<script type="text/javascript">
isIE = true;
</script>
<![endif]-->
<!-- HEADER -->
<!-- ONET 4 POLAND -->
<div id="boxBG">
<div id="box">
<a name="anchor"></a>
<div id="info" class="header normal">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=overview"><img src="/cdn/img/layout/pixel.gif" id="logoLink" /></a>
<div id="star"></div>
<div id="star1"></div>
<div id="star2"></div>
<div id="clearAdvice"></div>
<a id="changelog_link"
href="http://s125-en.ogame.gameforge.com/game/index.php?page=changelog">
Patch notes </a>
<div id="bar">
<ul>
<li id="playerName">
Player:
<span class="textBeefy">
mathfreak </span>
</li>
<li>
<a class="overlay"
accesskey=""
href="http://s125-en.ogame.gameforge.com/game/index.php?page=buddies&action=9&ajax=1"
data-overlay-title="Buddy list"
data-overlay-class="buddies"
>
Buddies</a>
</li>
<li>
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=notices"
class="overlay" data-overlay-title="My notes"
data-overlay-class="notices"
data-overlay-popup-width="750"
data-overlay-popup-height="480"
accesskey="">
Notes</a>
</li>
<li>
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=highscore" accesskey="">Highscore</a>
(709) </li>
<li><a class="overlay"
href="http://s125-en.ogame.gameforge.com/game/index.php?page=search&ajax=1"
data-overlay-title="Search Universe"
data-overlay-close="__default closeSearch"
accesskey="">Search</a>
</li>
<li><a href="http://s125-en.ogame.gameforge.com/game/index.php?page=preferences" accesskey="">Options</a></li>
<li><a href="http://support.en.ogame.gameforge.com/" target="_blank">Support</a></li>
<li><a href="http://www.onlinegamesnet.net/javaChat.php?game=ogame&cc=org" target="_blank">Chat</a></li>
<li><a href="http://s125-en.ogame.gameforge.com/game/index.php?page=logout">Log out</a></li>
<li class="OGameClock">04.10.2014 <span>22:22:41</span></li>
</ul>
</div> <ul id="resources">
<li id="metal_box" class="metal tooltipHTML"
title="Metal:| <table class="resourceTooltip">
<tr>
<th>Available:</th>
<td><span class="overmark">709.157</span></td>
</tr>
<tr>
<th>Storage capacity:</th>
<td><span class="overmark">255.000</span></td>
</tr>
<tr>
<th>Current production:</th>
<td><span class="overmark">0</span></td>
</tr>
<tr>
<th>Den Capacity:</th>
<td><span class="overermark">0</span></td>
</tr>
</table>">
<div class="resourceIcon metal"></div>
<span class="value">
<span id="resources_metal" class="overmark">
709.157 </span>
</span>
</li>
<li id="crystal_box" class="crystal tooltipHTML"
title="Crystal:| <table class="resourceTooltip">
<tr>
<th>Available:</th>
<td><span class="">41.418</span></td>
</tr>
<tr>
<th>Storage capacity:</th>
<td><span class="">140.000</span></td>
</tr>
<tr>
<th>Current production:</th>
<td><span class="undermark">+4.112</span></td>
</tr>
<tr>
<th>Den Capacity:</th>
<td><span class="overermark">0</span></td>
</tr>
</table>">
<div class="resourceIcon crystal"></div>
<span class="value">
<span id="resources_crystal" class="">
41.418 </span>
</span>
</li>
<li id="deuterium_box" class="deuterium tooltipHTML"
title="Deuterium:| <table class="resourceTooltip">
<tr>
<th>Available:</th>
<td><span class="">17.331</span></td>
</tr>
<tr>
<th>Storage capacity:</th>
<td><span class="">75.000</span></td>
</tr>
<tr>
<th>Current production:</th>
<td><span class="undermark">+1.640</span></td>
</tr>
<tr>
<th>Den Capacity:</th>
<td><span class="overermark">0</span></td>
</tr>
</table>">
<div class="resourceIcon deuterium"></div>
<span class="value">
<span id="resources_deuterium" class="">
17.331 </span>
</span>
</li>
<li id="energy_box" class="energy tooltipHTML"
title="Energy:| <table class="resourceTooltip">
<tr>
<th>Available:</th>
<td><span class="">60</span></td>
</tr>
<tr>
<th>Current production:</th>
<td><span class="undermark">+4.126</span></td>
</tr>
<tr>
<th>Consumption:</th>
<td><span class="overmark">-4.066</span></td>
</tr>
</table>">
<div class="resourceIcon energy"></div>
<span class="value">
<span id="resources_energy" class="">
60 </span>
</span>
</li>
<li id="darkmatter_box" class="darkmatter dark_highlight_tablet tooltipHTML"
title="Dark Matter:| <table class="resourceTooltip">
<tr>
<th>Available:</th>
<td><span class="">8.000</span></td>
</tr>
<tr>
<th>Purchased:</th>
<td><span class="">0</span></td>
</tr>
<tr>
<th>Found:</th>
<td><span class="">8.000</span></td>
</tr>
</table>"
data-tooltip-button="Purchase Dark Matter">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=premium&openDetail=1">
<img src="http://gf1.geo.gfsrv.net/cdnc5/401d1a91ff40dc7c8acfa4377d3d65.gif" />
<span class="value">
<span id="resources_darkmatter">
8.000 </span>
</span>
</a>
</li>
</ul>
<div id="officers" class="">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=premium&openDetail=2"
class="tooltipHTML commander js_hideTipOnMobile" title="Hire Commander|Building queue, empire view, improved galaxy view,<br />
message filter, shortcuts, transport scanner, advertisement free* <span style="font-size:10px;line-height:10px;">(*except for: game related references)</span>">
<img src="http://gf2.geo.gfsrv.net/cdndf/3e567d6f16d040326c7a0ea29a4f41.gif" width="30" height="30"/>
</a>
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=premium&openDetail=3"
class="tooltipHTML admiral js_hideTipOnMobile" title="Hire Admiral|Max. fleet slots +2,
improved fleet escape rate">
<img src="http://gf2.geo.gfsrv.net/cdndf/3e567d6f16d040326c7a0ea29a4f41.gif" width="30" height="30"/>
</a>
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=premium&openDetail=4"
class="tooltipHTML engineer js_hideTipOnMobile" title="Hire Engineer|Halves losses to defenses, +10% energy production">
<img src="http://gf2.geo.gfsrv.net/cdndf/3e567d6f16d040326c7a0ea29a4f41.gif" width="30" height="30"/>
</a>
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=premium&openDetail=5"
class="tooltipHTML geologist js_hideTipOnMobile" title="Hire Geologist|+10% mine production">
<img src="http://gf2.geo.gfsrv.net/cdndf/3e567d6f16d040326c7a0ea29a4f41.gif" width="30" height="30"/>
</a>
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=premium&openDetail=6"
class="tooltipHTML technocrat js_hideTipOnMobile" title="Hire Technocrat|+2 espionage levels, 25% less research time">
<img src="http://gf2.geo.gfsrv.net/cdndf/3e567d6f16d040326c7a0ea29a4f41.gif" width="30" height="30"/>
</a>
</div>
<div id="message-wrapper">
<div>
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=messages" id="message_alert_box_default" class="tooltip js_hideTipOnMobile emptyMessage" title="0 unread message(s)">
<span>
</span>
</a>
</div>
<div id="messages_collapsed" style="position:relative;">
<div id="eventboxFilled" class="eventToggle" style="display: none;">
<table border="0" width="100%" id="eventtype" style="border-collapse: collapse;">
<tr>
<td width="152" class="friendly col1">Own Missions: <span id="eventFriendly"></span></td>
<td width="156" class="neutral col2">Friendly Missions: <span id="eventNeutral"></span></td>
<td width="152" class="hostile col3">Hostile Missions: <span id="eventHostile"></span></td>
</tr>
</table>
<table border="0" width="100%" id="eventdetails" style="border-collapse: collapse;">
<tr id="eventClass" class="">
<td width="152" class="col1"><div class="countdown" id="tempcounter" name="countdown"></div></td>
<td width="208" class="col2"><div class="text" id="eventContent"></div></td>
<td width="100" class="col3">
<a id="js_eventDetailsClosed" class="tooltipRight js_hideTipOnMobile"
href="javascript:void(0);"
title="More details"></a>
<a id="js_eventDetailsOpen" class="tooltipRight open js_hideTipOnMobile"
href="javascript:void(0);"
title="Less detail"></a>
</td>
</tr>
</table>
</div>
<div id="eventboxLoading" class="textCenter textBeefy" style="display: block;">
<img height="16" width="16" src="http://gf3.geo.gfsrv.net/cdne3/3f9884806436537bdec305aa26fc60.gif" />load...</div>
<div id="eventboxBlank" class="textCenter" style="display: none;">
No fleet movement</div> </div>
<div id="attack_alert"
class="tooltip eventToggle noAttack"
title="Attack!">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=eventList"></a>
</div>
<br class="clearfloat" />
</div><!-- #message-wrapper -->
<div id="helper">
<a class="new_helper tooltip"
href="http://s125-en.ogame.gameforge.com/game/index.php?page=tutorial&displayNew=1"
title="Tutorial overview">
</a>
</div>
<div id="selectedPlanetName" class="textCenter">A Whole New World</div>
</div><!-- Info --> <!-- END HEADER -->
<!-- LEFTMENU -->
<div id="links">
<ul id="menuTable" class="leftmenu">
<li>
<span class="menu_icon">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=eventList"
class="eventToggle tooltipRight js_hideTipOnMobile"
target="_self"
title="Events">
<div class="menuImage overview active"></div>
</a>
</span>
<a class="menubutton selected"
href="http://s125-en.ogame.gameforge.com/game/index.php?page=overview"
accesskey="" target="_self"
>
<span class="textlabel">Overview</span>
</a>
</li>
<li>
<span class="menu_icon">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=resourceSettings"
class="tooltipRight js_hideTipOnMobile"
target="_self"
title="Resource settings">
<div class="menuImage resources"></div>
</a>
</span>
<a class="menubutton "
href="http://s125-en.ogame.gameforge.com/game/index.php?page=resources"
accesskey="" target="_self"
>
<span class="textlabel">Resources</span>
</a>
</li>
<li>
<span class="menu_icon">
<div class="menuImage station"></div>
</span>
<a class="menubutton "
href="http://s125-en.ogame.gameforge.com/game/index.php?page=station"
accesskey="" target="_self"
>
<span class="textlabel">Facilities</span>
</a>
</li>
<li>
<span class="menu_icon">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=traderOverview#page=traderResources&animation=false"
class="trader tooltipRight js_hideTipOnMobile"
target="_self"
title="Resource Market">
<div class="menuImage traderOverview"></div>
</a>
</span>
<a class="menubutton premiumHighligt"
href="http://s125-en.ogame.gameforge.com/game/index.php?page=traderOverview"
accesskey="" target="_self"
>
<span class="textlabel">Merchant</span>
</a>
</li>
<li>
<span class="menu_icon">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=techtree&tab=3&open=all"
class="overlay tooltipRight js_hideTipOnMobile"
target="_blank"
title="Technology">
<div class="menuImage research"></div>
</a>
</span>
<a class="menubutton "
href="http://s125-en.ogame.gameforge.com/game/index.php?page=research"
accesskey="" target="_self"
>
<span class="textlabel">Research</span>
</a>
</li>
<li>
<span class="menu_icon">
<div class="menuImage shipyard"></div>
</span>
<a class="menubutton "
href="http://s125-en.ogame.gameforge.com/game/index.php?page=shipyard"
accesskey="" target="_self"
>
<span class="textlabel">Shipyard</span>
</a>
</li>
<li>
<span class="menu_icon">
<div class="menuImage defense"></div>
</span>
<a class="menubutton "
href="http://s125-en.ogame.gameforge.com/game/index.php?page=defense"
accesskey="" target="_self"
>
<span class="textlabel">Defense</span>
</a>
</li>
<li>
<span class="menu_icon">
<a href="index.php?page=movement"
class="tooltipRight js_hideTipOnMobile"
target="_self"
title="Fleet movement">
<div class="menuImage fleet1 active"></div>
</a>
</span>
<a class="menubutton "
href="http://s125-en.ogame.gameforge.com/game/index.php?page=fleet1"
accesskey="" target="_self"
>
<span class="textlabel">Fleet</span>
</a>
</li>
<li>
<span class="menu_icon">
<div class="menuImage galaxy"></div>
</span>
<a class="menubutton "
href="http://s125-en.ogame.gameforge.com/game/index.php?page=galaxy"
accesskey="" target="_self"
>
<span class="textlabel">Galaxy</span>
</a>
</li>
<li>
<span class="menu_icon">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=alliance&tab=broadcast"
class="tooltipRight js_hideTipOnMobile"
target="_self"
title="Circular message">
<div class="menuImage alliance"></div>
</a>
</span>
<a class="menubutton "
href="http://s125-en.ogame.gameforge.com/game/index.php?page=alliance"
accesskey="" target="_self"
>
<span class="textlabel">Alliance</span>
</a>
</li>
<li>
<span class="menu_icon">
<div class="menuImage premium"></div>
</span>
<a class="menubutton premiumHighligt officers"
href="http://s125-en.ogame.gameforge.com/game/index.php?page=premium"
accesskey="" target="_self"
>
<span class="textlabel">Recruit Officers</span>
</a>
</li>
<li>
<span class="menu_icon">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=shop#page=inventory&category=d8d49c315fa620d9c7f1f19963970dea59a0e3be"
class="tooltipRight js_hideTipOnMobile"
target="_self"
title="Inventory">
<div class="menuImage shop"></div>
</a>
</span>
<a class="menubutton premiumHighligt"
href="http://s125-en.ogame.gameforge.com/game/index.php?page=shop"
accesskey="" target="_self"
>
<span class="textlabel">Shop</span>
</a>
</li>
</ul>
<div class="adviceWrapper">
<div id="advice-bar">
</div>
</div>
<div id="toolLinksWrapper"><ul id="menuTableTools" class="leftmenu"></ul></div>
<br class="clearfloat" />
</div> <!-- END LEFTMENU -->
<!-- CONTENT AREA -->
<div id="contentWrapper">
<div id="eventboxContent">
<div id="eventListWrap">
<div id="eventHeader">
<a class="close_details eventToggle" href="javascript:void(0);">
<img src="http://gf2.geo.gfsrv.net/cdndf/3e567d6f16d040326c7a0ea29a4f41.gif" height="16" width="16" />
</a>
<h4>Events</h4>
</div> <table id="eventContent">
<tbody>
<tr class="eventFleet" id="eventRow-7158752" data-mission-type="4"
data-return-flight="false"
data-arrival-time="1412710384"
>
<td class="countDown friendly textBeefy" id="counter-eventlist-7158752">
load... </td>
<td class="arrivalTime">20:33:04 Clock</td>
<td class="missionFleet">
<img src="http://gf3.geo.gfsrv.net/cdnb0/4dab966bded2d26f89992b2c6feb4c.gif"
class="tooltipHTML" title="Own fleet|Deployment"
/>
</td>
<td class="originFleet">
<span class="tooltip" title="A Whole New World">
<figure class="planetIcon planet"></figure>A Whole New World </span>
</td>
<td class="coordsOrigin">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=galaxy&galaxy=1&system=373" target="_top">
[1:373:8] </a>
</td>
<td class="detailsFleet">
<span>1</span>
</td>
<td class="icon_movement">
<span class="tooltip tooltipRight tooltipClose"
title="<div class="htmlTooltip">
<h1>Fleet details:</h1>
<div class="splitLine"></div>
<table cellpadding="0" cellspacing="0" class="fleetinfo">
<tr>
<th colspan="2">Ships:</th>
</tr>
<tr>
<td>Recycler:</td>
<td class="value">1</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<th colspan="2">Shipment:</th>
</tr>
<tr>
<td>Metal:</td>
<td class="value">0</td>
</tr>
<tr>
<td>Crystal:</td>
<td class="value">0</td>
</tr>
<tr>
<td>Deuterium:</td>
<td class="value">0</td>
</tr>
</table>
</div>
" data-federation-user-id=""> </span>
</td>
<td class="destFleet">
<span class="tooltip" title="Slot 8 unavailable">
<figure class="planetIcon planet"></figure>Slot 8 unavailable</span>
</td>
<td class="destCoords">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=galaxy&galaxy=1&system=204" target="_top">
[1:204:8] </a>
</td>
<td class="sendProbe">
</td>
<td class="sendMail">
</td>
</tr>
</tbody>
</table> <div id="eventFooter"></div>
</div></div>
<div id="inhalt">
<div id="planet" style="background-image:url(http://gf3.geo.gfsrv.net/cdn89/c3029ffc95e61a790b403b9e3eb18f.jpg);">
<div id="detailWrapper">
<div id="header_text">
<h2>
<a href="javascript:void(0);" class="openPlanetRenameGiveupBox">
<p class="planetNameOverview">Overview -</p>
<span id="planetNameHeader">
A Whole New World </span>
<img class="hinted tooltip" title="Abandon/rename Planet" src="http://gf3.geo.gfsrv.net/cdne7/1f57d944fff38ee51d49c027f574ef.gif" width="16" height="16"/>
</a>
</h2>
</div>
<div id="detail" class="detail_screen">
<div id="techDetailLoading"></div>
</div>
<div id="planetdata">
<div class="overlay"></div>
<div id="planetDetails">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="desc" >
<span id="diameterField"></span>
</td>
<td class="data">
<span id="diameterContentField"></span>
</td>
</tr>
<tr>
<td class="desc">
<span id="temperatureField"></span>
</td>
<td class="data">
<span id="temperatureContentField"></span>
</td>
</tr>
<tr>
<td class="desc">
<span id="positionField"></span>
</td>
<td class="data">
<span id="positionContentField"></span>
</td>
</tr>
<tr>
<td class="desc">
<span id="scoreField"></span></td>
<td class="data">
<span id="scoreContentField"></span>
</td>
</tr>
<tr>
<td class="desc">
<span id="honorField"></span></td>
<td class="data ">
<span id="honorContentField"></span>
</td>
</tr>
</table>
</div>
<div id="planetOptions">
<div class="planetMoveStart fleft" style="display: inline;">
<a class="tooltipLeft dark_highlight_tablet fleft" style="display: inline-block"
href='http://s125-en.ogame.gameforge.com/game/index.php?page=galaxy'
title="The relocation allows you to move your planets to a different position in another preferred system far away. <br /><br />
The actual relocation takes place 24 hours after activation. During this time you can use your planets as per normal. A countdown shows you the time remaining before the relocation.<br /><br />
Once the countdown finishes and the planet is to be moved, none of your fleets that are stationed here will be able to be active. Nothing will be able to be built or researched either. Should a construction contract or a fleet still be active once the countdown finishes, the relocation will be cancelled.<br /><br />
If the move is successful, 240.000 Dark Matter will be deducted from your account. The moon, buildings and all stored resources will move with planet/moon immediately. Your fleets will fly automatically to new coordinates on speed of slowest ship. The jump gate of a relocated moon will be deactivated for 24 hours."
data-tooltip-button="To galaxy">
<span class="planetMoveIcons planetMoveDefault icon"></span>
<span class="planetMoveOverviewMoveLink">Relocate</span>
</a>
</div>
<a class="dark_highlight_tablet float_right openPlanetRenameGiveupBox" href="javascript:void(0);">
<span class="planetMoveOverviewGivUpLink">give up/rename</span>
<span class="planetMoveIcons settings planetMoveGiveUp icon"></span>
</a>
</div>
</div>
</div>
<div id="buffBar" class="sliderWrapper">
<div data-uuid="" data-id="" class="add_item"><a class="activate_item border3px" href="javascript:void(0);" ref="1"></a></div>
<ul class="active_items hidden">
<li>
</li>
</ul>
</div>
</div> <div class="c-left"></div>
<div class="c-right"></div>
<div id="overviewBottom">
<div class="content-box-s">
<div class="header">
<h3>Buildings</h3>
</div>
<div class="content">
<table cellpadding="0" cellspacing="0" class="construction active">
<tr>
<th colspan="2">Research Lab</th>
</tr>
<tr class="data">
<td class="first" rowspan="3">
<div>
<a href="javascript:void(0);"
class="tooltip js_hideTipOnMobile"
style="display: block;"
onclick="cancelProduction(31,1184915,"Cancel expansion of Research Lab to level 8?"); return false;"
title="Cancel expansion of Research Lab to level 8?">
<img class="queuePic" width="40" height="40" src="http://gf3.geo.gfsrv.net/cdn2c/89ab089f94de954d0cdb4baa50fab9.jpg" alt="Research Lab">
</a>
<a href="javascript:void(0);"
class="tooltip abortNow js_hideTipOnMobile"
onclick="cancelProduction(31,1184915,"Cancel expansion of Research Lab to level 8?"); return false;"
title="Cancel expansion of Research Lab to level 8?">
<img src="http://gf2.geo.gfsrv.net/cdndf/3e567d6f16d040326c7a0ea29a4f41.gif" height="15" width="15" />
</a>
</div>
</td>
<td class="desc ausbau">Improve to
<span class="level">Level 8</span>
</td>
</tr>
<tr class="data">
<td class="desc">Duration:</td>
</tr>
<tr class="data">
<td class="desc timer">
<span id="Countdown">load...</span>
</td>
</tr>
<tr class="data">
<td colspan="2">
<a class="build-faster dark_highlight tooltipLeft js_hideTipOnMobile building "
title="Reduces construction time by 50% of the total construction time (46m 5s)."
href="javascript:void(0);"
rel="http://s125-en.ogame.gameforge.com/game/index.php?page=inventory&buyAndActivate=cb4fd53e61feced0d52cfc4c1ce383bad9c05f67">
<div class="build-faster-img" alt="Halve time"></div>
<span class="build-txt">Halve time</span>
<span class="dm_cost ">
Costs: 3.000 DM </span>
</a>
</td>
</tr>
</table>
</div>
<div class="footer"></div>
</div>
<div class="content-box-s">
<div class="header"><h3>Research</h3></div>
<div class="content">
<table cellspacing="0" cellpadding="0" class="construction active">
<tbody>
<tr>
<td colspan="2" class="idle">
<a class="tooltip js_hideTipOnMobile
"
title="There is no research done at the moment. Click here to get to your research lab."
href="http://s125-en.ogame.gameforge.com/game/index.php?page=research">
There is no research in progress at the moment.<br/>(To research) </a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="footer"></div>
</div>
<div class="content-box-s">
<div class="header"><h3>Shipyard</h3></div>
<div class="content">
<table cellspacing="0" cellpadding="0" class="construction active">
<tbody>
<tr>
<td colspan="2" class="idle">
<a class="tooltip js_hideTipOnMobile
"
title="At the moment there are no ships or defence being built on this planet. Click here to get to the shipyard."
href="http://s125-en.ogame.gameforge.com/game/index.php?page=shipyard">
No ships/defence in construction.<br/>(To shipyard) </a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="footer"></div>
</div>
<div class="clearfloat"></div>
<div class="clearfloat"></div>
</div><!-- #overviewBottom -->
</div>
</div>
<!-- END CONTENT AREA -->
<!-- RIGHTMENU -->
<div id="rechts">
<div id="norm">
<div id="myWorlds">
<div id="countColonies">
<p class="textCenter">
<span>4/4</span> Planets </p>
</div>
<div id="planetList">
<div class="smallplanet" id="planet-33661897">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=overview&cp=33661897"
title="<B>Slot 8 unavailable [1:204:8]</B><BR>14.915km (97/222)<BR>30°C to 70°C"
class="planetlink tooltipRight js_hideTipOnMobile">
<img class="planetPic js_replace2x"
src="http://gf1.geo.gfsrv.net/cdn3a/8193262d0b13d5579b13d2bae1dbd3.png"
width="48" height="48" />
<span class="planet-name ">Slot 8 unava...</span>
<span class="planet-koords ">[1:204:8]</span>
</a>
<a class="constructionIcon tooltip js_hideTipOnMobile" href="http://s125-en.ogame.gameforge.com/game/index.php?page=overview&cp=33661897" title="Solar Plant">
<span class="icon12px icon_wrench"></span>
</a>
</div>
<div class="smallplanet" id="planet-33672135">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=overview&cp=33672135"
title="<B>Conga Time [1:208:7]</B><BR>14.612km (86/213)<BR>2°C to 42°C"
class="planetlink tooltipRight js_hideTipOnMobile">
<img class="planetPic js_replace2x"
src="http://gf1.geo.gfsrv.net/cdnf7/6177c65f05d9039be190b926a43f91.png"
width="48" height="48" />
<span class="planet-name ">Conga Time</span>
<span class="planet-koords ">[1:208:7]</span>
</a>
</div>
<div class="smallplanet" id="planet-33653202">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=overview&cp=33653202"
title="<B>A Whole New World [1:373:8]</B><BR>12.800km (122/163)<BR>6°C to 46°C"
class="planetlink active tooltipRight js_hideTipOnMobile">
<img class="planetPic js_replace2x"
src="http://gf2.geo.gfsrv.net/cdn44/a4ecef51084e8e7a43905ef85fbc56.png"
width="48" height="48" />
<span class="planet-name ">A Whole New ...</span>
<span class="planet-koords ">[1:373:8]</span>
</a>
<a class="constructionIcon tooltip js_hideTipOnMobile" href="http://s125-en.ogame.gameforge.com/game/index.php?page=overview&cp=33653202" title="Research Lab">
<span class="icon12px icon_wrench"></span>
</a>
</div>
<div class="smallplanet" id="planet-33656040">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=overview&cp=33656040"
title="<B>No 300 field planets [1:376:8]</B><BR>14.138km (111/199)<BR>-1°C to 39°C"
class="planetlink tooltipRight js_hideTipOnMobile">
<img class="planetPic js_replace2x"
src="http://gf3.geo.gfsrv.net/cdnb5/dfad7f831a95f6e8f305c7ea47552c.png"
width="48" height="48" />
<span class="planet-name ">No 300 field...</span>
<span class="planet-koords ">[1:376:8]</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="banner_skyscraper" name="banner_skyscraper">
<iframe id="ENIOG160" name="ENIOG160" src="http://delivery.ads.gfsrv.net/afr.php?n=ENIOG160&zoneid=348&target=_blank&cb=1412457761&os=desktop&kid=&al=1&aa=129&lp=999&hs=709&ui=113995" frameborder="0" scrolling="no" width="160" height="600" allowtransparency="true">
<a href="http://delivery.ads.gfsrv.net/ck.php?n=ENIOG160&cb=1412457761" target="_blank">
<img src="http://delivery.ads.gfsrv.net/ck.php?zoneid=348&cb=1412457761&n=ENIOG160" border="0" alt=""/>
</a>
</iframe> </div>
<!-- END RIGHTMENU -->
<!-- JAVASCRIPT -->
<script type='text/javascript' src='http://gf3.geo.gfsrv.net/cdnef/56996a817665f19c0402f4f3c32c00.js'></script> <script type="text/javascript">
if(typeof(javascriptAvailable)=="undefined"){window.location=window.location+"&nocdn=1";}
var session="948d8951df57474fbe2a34b6bb455af1b9821900";var vacation=0;var timerHandler=new TimerHandler();function redirectPremium()
{location.href="http://s125-en.ogame.gameforge.com/game/index.php?page=premium&showDarkMatter=1";}
var isMobile=false;var isMobileApp=false;var isMobileOnly=false;var isFacebookUser=false;var overlayWidth=770;var overlayHeight=600;var isRTLEnabled=0;var activateToken="d5fcac51d8d1bcb1f146d94d3f76bbde";var miniFleetToken="73ac46c218f739fda40ef7edb823072e";var currentPage="overview";var bbcodePreviewUrl="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=bbcodePreview";var popupWindows=["notices","combatreport"];var honorScore=0;var darkMatter=8000;var serverTime=new Date(2014,9,4,22,22,41);var localTime=new Date();var timeDiff=serverTime-localTime;localTS=localTime.getTime();var startServerTime=localTime.getTime()-(3600000)-localTime.getTimezoneOffset()*60*1000;var LocalizationStrings={"timeunits":{"short":{"year":"y","month":"m","week":"w","day":"d","hour":"h","minute":"m","second":"s"}},"status":{"ready":"done"},"decimalPoint":".","thousandSeperator":".","unitMega":"M","unitKilo":"K","unitMilliard":"Bn","question":"Question","error":"Error","loading":"load...","yes":"yes","no":"No","ok":"Ok","attention":"Caution","outlawWarning":"You are about to attack a stronger player. If you do this, your attack defences will be shut down for 7 days and all players will be able to attack you without punishment. Are you sure you want to continue?","lastSlotWarningMoon":"This building will use the last available building slot. Expand your Lunar Base to receive more space. Are you sure you want to build this building?","lastSlotWarningPlanet":"This building will use the last available building slot. Expand your Terraformer or buy a Planet Field item to obtain more slots. Are you sure you want to build this building?","forcedVacationWarning":"Some game features are unavailable until your account is validated.","moreDetails":"More details","lessDetails":"Less detail","planetOrder":{"lock":"Lock arrangement","unlock":"Unlock arrangement"},"darkMatter":"Dark Matter","activateItem":{"upgradeItemQuestion":"Would you like to replace the existing item? The old bonus will be lost in the process.","upgradeItemQuestionHeader":"Replace item?"}};var constants={"espionage":6,"missleattack":10,"language":"en","name":"125"};var userData={"id":"113995"};var missleAttackLink="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=missileattacklayer&width=669&height=250";var showOutlawWarning=true;var miniFleetLink="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=minifleet&ajax=1";var ogameUrl="http:\/\/s125-en.ogame.gameforge.com";var startpageUrl="http:\/\/ogame.org";OGConfig=new Array();OGConfig.sliderOn=1;function redirectLogout(){location.href="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=logout";}
function redirectOverview(){location.href="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=overview";}
function initAjaxEventbox()
{reloadEventbox({"hostile":0,"neutral":0,"friendly":1,"eventTime":252623,"eventText":"Deployment"});}
function initAjaxResourcebox(){reloadResources({"metal":{"resources":{"actualFormat":"709.157","actual":709157,"max":255000,"production":2.3264416492685},"tooltip":"Metal|<table class=\"resourceTooltip\">\n <tr>\n <th>Available:<\/th>\n <td><span class=\"overmark\">709.157<\/span><\/td>\n <\/tr>\n <tr>\n <th>Storage capacity:<\/th>\n <td><span class=\"overmark\">255.000<\/span><\/td>\n <\/tr>\n <tr>\n <th>Current production:<\/th>\n <td><span class=\"overmark\">0<\/span><\/td>\n <\/tr>\n <tr>\n <th>Den Capacity:<\/th>\n <td><span class=\"overermark\">0<\/span><\/td>\n <\/tr>\n <\/table>","class":"overmark"},"crystal":{"resources":{"actualFormat":"41.418","actual":41418,"max":140000,"production":1.1423340685932},"tooltip":"Crystal|<table class=\"resourceTooltip\">\n <tr>\n <th>Available:<\/th>\n <td><span class=\"\">41.418<\/span><\/td>\n <\/tr>\n <tr>\n <th>Storage capacity:<\/th>\n <td><span class=\"\">140.000<\/span><\/td>\n <\/tr>\n <tr>\n <th>Current production:<\/th>\n <td><span class=\"undermark\">+4.112<\/span><\/td>\n <\/tr>\n <tr>\n <th>Den Capacity:<\/th>\n <td><span class=\"overermark\">0<\/span><\/td>\n <\/tr>\n <\/table>","class":""},"deuterium":{"resources":{"actualFormat":"17.331","actual":17331,"max":75000,"production":0.45547569402316},"tooltip":"Deuterium|<table class=\"resourceTooltip\">\n <tr>\n <th>Available:<\/th>\n <td><span class=\"\">17.331<\/span><\/td>\n <\/tr>\n <tr>\n <th>Storage capacity:<\/th>\n <td><span class=\"\">75.000<\/span><\/td>\n <\/tr>\n <tr>\n <th>Current production:<\/th>\n <td><span class=\"undermark\">+1.640<\/span><\/td>\n <\/tr>\n <tr>\n <th>Den Capacity:<\/th>\n <td><span class=\"overermark\">0<\/span><\/td>\n <\/tr>\n <\/table>","class":""},"energy":{"resources":{"actual":60,"actualFormat":"60"},"tooltip":"Energy|<table class=\"resourceTooltip\">\n <tr>\n <th>Available:<\/th>\n <td><span class=\"\">60<\/span><\/td>\n <\/tr>\n <tr>\n <th>Current production:<\/th>\n <td><span class=\"undermark\">+4.126<\/span><\/td>\n <\/tr>\n <tr>\n <th>Consumption:<\/th>\n <td><span class=\"overmark\">-4.066<\/span><\/td>\n <\/tr>\n <\/table>","class":""},"darkmatter":{"resources":{"actual":8000,"actualFormat":"8.000"},"string":"8.000 Dark Matter","tooltip":"Dark Matter|<table class=\"resourceTooltip\">\n <tr>\n <th>Available:<\/th>\n <td><span class=\"\">8.000<\/span><\/td>\n <\/tr>\n <tr>\n <th>Purchased:<\/th>\n <td><span class=\"\">0<\/span><\/td>\n <\/tr>\n <tr>\n <th>Found:<\/th>\n <td><span class=\"\">8.000<\/span><\/td>\n <\/tr>\n <\/table>","class":""},"honorScore":0});}
function getAjaxEventbox(){$.get("http://s125-en.ogame.gameforge.com/game/index.php?page=fetchEventbox&ajax=1",reloadEventbox,"text");}
function getAjaxResourcebox(callback){$.get("http://s125-en.ogame.gameforge.com/game/index.php?page=fetchResources&ajax=1",function(data){reloadResources(data,callback);},"text");}
var changeSettingsLink="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=changeSettings";var changeSettingsToken="76e54eb8515d3ffb998f787c2ad70e42";var eventlistLink="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=eventList&ajax=1";function openAnnouncement(){openOverlay("http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=announcement&ajax=1",{'class':'announcement',zIndex:4000});}
var timeDelta=1412457761000-(new Date()).getTime();var LocalizationStrings={"timeunits":{"short":{"year":"y","month":"m","week":"w","day":"d","hour":"h","minute":"m","second":"s"}},"status":{"ready":"done"},"decimalPoint":".","thousandSeperator":".","unitMega":"M","unitKilo":"K","unitMilliard":"Bn","question":"Question","error":"Error","loading":"load...","yes":"yes","no":"No","ok":"Ok","attention":"Caution","outlawWarning":"You are about to attack a stronger player. If you do this, your attack defences will be shut down for 7 days and all players will be able to attack you without punishment. Are you sure you want to continue?","lastSlotWarningMoon":"This building will use the last available building slot. Expand your Lunar Base to receive more space. Are you sure you want to build this building?","lastSlotWarningPlanet":"This building will use the last available building slot. Expand your Terraformer or buy a Planet Field item to obtain more slots. Are you sure you want to build this building?","forcedVacationWarning":"Some game features are unavailable until your account is validated.","moreDetails":"More details","lessDetails":"Less detail","planetOrder":{"lock":"Lock arrangement","unlock":"Unlock arrangement"},"darkMatter":"Dark Matter","activateItem":{"upgradeItemQuestion":"Would you like to replace the existing item? The old bonus will be lost in the process.","upgradeItemQuestionHeader":"Replace item?"}};$(document).ready(function(){new eventboxCountdown($("#counter-eventlist-7158752"),252623,$('#eventListWrap'),"http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=checkEvents&ajax=1",[7158752]);initEventTable();});var planetMoveLoca={"askTitle":"Resettle Planet","askCancel":"Are you sure that you wish to cancel this planet relocation? The normal waiting time will thereby be maintained.","yes":"yes","no":"No","success":"The planet relocation was successfully cancelled.","error":"Error"};function openPlanetRenameGiveupBox()
{openOverlay("http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=planetlayer",{title:"Abandon\/rename A Whole New World",'class':"planetRenameOverlay"});}
var textContent=[];textContent[0]="Diameter:";textContent[1]="12.800km (<span>122<\/span>\/<span>163<\/span>)";textContent[2]="Temperature:";textContent[3]="6\u00b0C to 46\u00b0C";textContent[4]="Position:";textContent[5]="<a href=\"http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=galaxy&galaxy=1&system=373&position=8\" >[1:373:8]<\/a>";textContent[6]="Points:";textContent[7]="<a href='http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=highscore'>17.195 (Place 709 of 1.211)<\/a>";textContent[8]="Honour points:";textContent[9]="0";var textDestination=[];textDestination[0]="diameterField";textDestination[1]="diameterContentField";textDestination[2]="temperatureField";textDestination[3]="temperatureContentField";textDestination[4]="positionField";textDestination[5]="positionContentField";textDestination[6]="scoreField";textDestination[7]="scoreContentField";textDestination[8]="honorField";textDestination[9]="honorContentField";var currentIndex=0;var currentChar=0;var linetwo=0;var locaPremium={"buildingHalfOverlay":"Do you want to reduce the construction time by 50% of the total construction time (46m 5s) for <b>3.000 Dark Matter<\/b>?","buildingFullOverlay":"Do you want to immediately complete the construction order for <b>3.000 Dark Matter<\/b>?","shipsHalfOverlay":"Do you want to reduce the construction time by 50% of the total construction time () for <b>750 Dark Matter<\/b>?","shipsFullOverlay":"Do you want to immediately complete the construction order for <b>750 Dark Matter<\/b>?","researchHalfOverlay":"Do you want to reduce the research time by 50% of the total research time () for <b>750 Dark Matter<\/b>?","researchFullOverlay":"Do you want to immediately complete the research order for <b>750 Dark Matter<\/b>?"};var priceBuilding=3000;var priceResearch=750;var priceShips=750;var loca=loca||{};loca=$.extend({},loca,{"error":"Error","errorNotEnoughDM":"Not enough Dark Matter available! Do you want to buy some now?","notice":"Reference","planetGiveupQuestion":"Are you sure you want to give up the planet %planetName% %planetCoordinates%?","moonGiveupQuestion":"Are you sure you want to give up the moon %planetName% %planetCoordinates%?"});function type()
{var destination=document.getElementById(textDestination[currentIndex]);if(destination){if(textContent[currentIndex].substr(currentChar,1)=="<"&&linetwo!=1){while(textContent[currentIndex].substr(currentChar,1)!=">"){currentChar++;}}
if(linetwo==1){destination.innerHTML=textContent[currentIndex];currentChar=destination.innerHTML=textContent[currentIndex].length+1;}else{destination.innerHTML=textContent[currentIndex].substr(0,currentChar)+"_";currentChar++;}
if(currentChar>textContent[currentIndex].length){destination.innerHTML=textContent[currentIndex];currentIndex++;currentChar=0;if(currentIndex<textContent.length){type();}}else{setTimeout("type()",15);}}}
function planetRenamed(data)
{var data=$.parseJSON(data);if(data["status"]){$("#planetNameHeader").html(data["newName"]);reloadRightmenu("http://s125-en.ogame.gameforge.com/game/index.php?page=rightmenu&renamed=1&pageToLink=overview");$(".overlayDiv.planetRenameOverlay").dialog('close');}
errorBoxAsArray(data["errorbox"]);}
function reloadPage()
{location.href="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=overview";}
var demolish_id;var buildUrl;function loadDetails(type)
{url="http://s125-en.ogame.gameforge.com/game/index.php?page=overview&ajax=1";if(typeof(detailUrl)!='undefined'){url=detailUrl;}
$.get(url,{type:type},function(data){$("#detail").html(data);$("#techDetailLoading").hide();$("input[type='text']:first",document.forms["form"]).focus();});}
function sendBuildRequest(url,ev,showSlotWarning)
{if(ev!=undefined){var keyCode;if(window.event){keyCode=window.event.keyCode;}else if(ev){keyCode=ev.which;}else{return true;}
if(keyCode!=13){return true;}}
function build(){if(url==null){sendForm();}else{fastBuild();}}
if(url==null){fallBackFunc=sendForm;}else{fallBackFunc=build;buildUrl=url;}
if(showSlotWarning){build();}else{build();}
return false;}
function fastBuild(){location.href=buildUrl;return false;}
function sendForm(){document.form.submit();return false;}
function demolishBuilding(id,question){demolish_id=id;question+="<br/><br/>"+$("#demolish"+id).html();errorBoxDecision("Caution",""+question+"","yes","No",demolishStart);}
function demolishStart()
{window.location.replace("http://s125-en.ogame.gameforge.com/game/index.php?page=overview&modus=3&token=75b333f4d38655aedb9c8e7397e9cb9b&type="+demolish_id);}
gfSlider=new GFSlider(getElementByIdWithCache('detailWrapper'));var detailUrl="http:\/\/s125-en.ogame.gameforge.com\/game\/index.php?page=buffActivation&ajax=1";var cancelProduction_id;var production_listid;function cancelProduction(id,listid,question)
{cancelProduction_id=id;production_listid=listid;errorBoxDecision("Caution",""+question+"","yes","No",cancelProductionStart);}
function cancelProductionStart()
{window.location.replace("http://s125-en.ogame.gameforge.com/game/index.php?page=overview&modus=2&token=d67bb88785e263becfc2cbbb5e22a893&techid="+cancelProduction_id+"&listid="+production_listid);}
new baulisteCountdown(getElementByIdWithCache("Countdown"),5417,"http://s125-en.ogame.gameforge.com/game/index.php?page=overview");function initType(){type();}
new baulisteCountdown(getElementByIdWithCache("moveCountdown"),-1412457761);$('#planet').find('h2 a').hover(function(){$('#planet').find('h2 a img').toggleClass('hinted');},function(){$('#planet').find('h2 a img').toggleClass('hinted');});var player={hasCommander:false};$(document).ready(function(){initIndex();initAjaxEventbox();initOverview();initBuffBar();initType();tabletInitOverviewAdvice();});</script> <!-- END JAVASCRIPT -->
</div><!-- box -->
</div><!-- boxBG -->
</div><!-- contentBoxBody -->
<div id="siteFooter">
<div class="content">
<div class="fleft textLeft">
<a href="http://s125-en.ogame.gameforge.com/game/index.php?page=changelog" class="tooltip js_hideTipOnMobile" title="Patch notes">
5.8.0 </a>
<a class="homeLink" href="http://www.gameforge.com/" target="_blank">© 2002 Gameforge 4D GmbH. All rights reserved.</a>
</div>
<div class="fright textRight">
<a href="http://tutorial.ogame.de/index.php?site=main&lang=en" target="_blank">Help</a>|