File: hints.html

package info (click to toggle)
hex-a-hop 1.1.0%2Bgit20140926-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 34,860 kB
  • sloc: cpp: 4,987; ansic: 1,876; xml: 430; makefile: 176; sh: 33
file content (1580 lines) | stat: -rw-r--r-- 142,417 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580

<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<TITLE>Hex-a-hop hints</TITLE>

<body bgcolor="#645444" link="#ffffff" vlink="#e0e0b0" text="#ffe8d0">

<center><h1><font color="#ffffff">
Hex-a-hop Hints
</font></h1>

<table width="640" border=0>
<tr><td>
<p>I've attempted to structure the hints for each level in some kind of logical manner so it doesn't spoil anything more than you want it to.
<p>If you need help for a level not listed here, feel free to email me, and I'll try to make some hints for it.
</tr></td>
</table>

<p><a href="http://hexahop.sourceforge.net/">Hex-a-hop homepage</a>

<table width="640" border=0>
<tr>
<td width="30%">

</td></tr>
<tr><td valign="top" bgcolor=#645444>
    <font size="h4" color=#ffffff>Level name<br><font size="h2" color=#ffffff>(Alphabetical order)</font></font>
</td><td valign="top" bgcolor=#645444>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >A Strange Place</font>
</td><td valign="top" bgcolor=#948474><div id='q1'></div>

        <div id='q3' style='display: ' onclick="document.getElementById('a3').style.display=''; document.getElementById('q4').style.display=''; document.getElementById('q3').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a3' style='display: none' ><b>+ </b>Plan to ride the boat up then down-left (to get the two green tiles just below the starting point)
        </div>
        <div id='q4' style='display: none' onclick="document.getElementById('a4').style.display=''; document.getElementById('q5').style.display=''; document.getElementById('q4').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a4' style='display: none' ><b>+ </b>Don't build any green walls.
        </div>
        <div id='q5' style='display: none' onclick="document.getElementById('a5').style.display=''; document.getElementById('q6').style.display=''; document.getElementById('q5').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a5' style='display: none' ><b>+ </b>You need to break the only blue tile (at the left) to make the blue walls retract.
        </div>
        <div id='q6' style='display: none' onclick="document.getElementById('a6').style.display=''; document.getElementById('q7').style.display=''; document.getElementById('q6').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a6' style='display: none' ><b>+ </b>You need to build some more green tiles with the builder before going to get the blue tile.
        </div>
        <div id='q7' style='display: none' onclick="document.getElementById('a7').style.display=''; document.getElementById('q8').style.display=''; document.getElementById('q7').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a7' style='display: none' ><b>+ </b>Start with: UR, DR, UR, D, UR, D, DR, DR, DR, DR, U, UR, DL, DL, UL, U (Note: this is not the optimal solution!)
        </div>
        <div id='q8' style='display: none' onclick="document.getElementById('a8').style.display=''; document.getElementById('q9').style.display=''; document.getElementById('q8').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a8' style='display: none' ><b>+ </b>Then: UR, UR, UR, DR, UL, D, UL, DL, UL, UL, U, U, UR, DL, DR, DR, D, U, DR
        </div>
        <div id='q9' style='display: none' onclick="document.getElementById('a9').style.display=''; document.getElementById('q10').style.display=''; document.getElementById('q9').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a9' style='display: none' ><b>+ </b>Then: UR, DR, D, D, U, UR, DR, DL, UL
        </div>
        <div id='q10' style='display: none' onclick="document.getElementById('a10').style.display=''; document.getElementById('q11').style.display=''; document.getElementById('q10').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a10' style='display: none' ><b>+ </b>Finally: UR, U, DR, UR, UR, DL, UR, U, DR, UR
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >All About Preparation</font>
</td><td valign="top" bgcolor=#847464><div id='q11'></div>

        <div id='q13' style='display: ' onclick="document.getElementById('a13').style.display=''; document.getElementById('q14').style.display=''; document.getElementById('q13').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a13' style='display: none' ><b>+ </b>Consider how many times to rotate each spinner before breaking all the green tiles and jumping into the centre.
        </div>
        <div id='q14' style='display: none' onclick="document.getElementById('a14').style.display=''; document.getElementById('q15').style.display=''; document.getElementById('q14').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a14' style='display: none' ><b>+ </b>Note that you need to leave a tile two hexes up-right of the top trampoline so you can land there after trampling the left-most green wall.
        </div>
        <div id='q15' style='display: none' onclick="document.getElementById('a15').style.display=''; document.getElementById('q16').style.display=''; document.getElementById('q15').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a15' style='display: none' ><b>+ </b>Rotate the bottom-right spinner once, then the bottom left one five times.
        </div>
        <div id='q16' style='display: none' onclick="document.getElementById('a16').style.display=''; document.getElementById('q17').style.display=''; document.getElementById('q16').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a16' style='display: none' ><b>+ </b>Then the top-left spinner twice, and the top-right spinner once.
        </div>
        <div id='q17' style='display: none' onclick="document.getElementById('a17').style.display=''; document.getElementById('q18').style.display=''; document.getElementById('q17').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a17' style='display: none' ><b>+ </b>Then after breaking all the initial green tiles and bouncing down-right on the trampoline you don't need to step on any more spinners (except for the final move).
        </div>
        <div id='q18' style='display: none' onclick="document.getElementById('a18').style.display=''; document.getElementById('q19').style.display=''; document.getElementById('q18').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a18' style='display: none' ><b>+ </b>Solution (from start of level): DR, D, DR*6, UR, UR, U, U (first spinner OK)
        </div>
        <div id='q19' style='display: none' onclick="document.getElementById('a19').style.display=''; document.getElementById('q20').style.display=''; document.getElementById('q19').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a19' style='display: none' ><b>+ </b>Then: D, D, DL, UL, DL, UL, UL, U, UR, UL, DR, U, D. UR, DL, DR, UL (second spinner OK)
        </div>
        <div id='q20' style='display: none' onclick="document.getElementById('a20').style.display=''; document.getElementById('q21').style.display=''; document.getElementById('q20').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a20' style='display: none' ><b>+ </b>Then: D, DL, UL, U, UL*4, U*3, UR, UR, DR*4, U, D (first 3 spinners all OK)
        </div>
        <div id='q21' style='display: none' onclick="document.getElementById('a21').style.display=''; document.getElementById('q22').style.display=''; document.getElementById('q21').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a21' style='display: none' ><b>+ </b>Then: UR*3, DR, D (all spinners now in place!)
        </div>
        <div id='q22' style='display: none' onclick="document.getElementById('a22').style.display=''; document.getElementById('q23').style.display=''; document.getElementById('q22').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a22' style='display: none' ><b>+ </b>Then: UR, U, UL, UL, DL, UL, DL, UL, DL, UL, DL, DL, D, DR, DR (bouncing off trampoline)
        </div>
        <div id='q23' style='display: none' onclick="document.getElementById('a23').style.display=''; document.getElementById('q24').style.display=''; document.getElementById('q23').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a23' style='display: none' ><b>+ </b>Then: UR, UR, DR, UR, DR, DL, D, DR, DL, UL, DL, UL*3, UR, DR (Finished!)
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Beware Feedback Loops</font>
</td><td valign="top" bgcolor=#948474><div id='q24'></div>

        <div id='q26' style='display: ' onclick="document.getElementById('a26').style.display=''; document.getElementById('q27').style.display=''; document.getElementById('q26').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a26' style='display: none' ><b>+ </b>Start by going down, and seeing which way the lasers go. You'll need to do something to stop the lasers going round in a circle.
        </div>
        <div id='q27' style='display: none' onclick="document.getElementById('a27').style.display=''; document.getElementById('q28').style.display=''; document.getElementById('q27').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a27' style='display: none' ><b>+ </b>Use the builder tiles to create extra green tiles to block the lasers.
        </div>
        <div id='q28' style='display: none' onclick="document.getElementById('a28').style.display=''; document.getElementById('q29').style.display=''; document.getElementById('q28').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a28' style='display: none' ><b>+ </b>Don't step on builder tiles with green tiles left adjacent to them, else you'll end up with awkward green walls.
        </div>
        <div id='q29' style='display: none' onclick="document.getElementById('a29').style.display=''; document.getElementById('q30').style.display=''; document.getElementById('q29').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a29' style='display: none' ><b>+ </b>Since you have to fire two lasers, you'll need at least 3 extra tiles blocking the loop (since the first shot will destroy 2)
        </div>
        <div id='q30' style='display: none' onclick="document.getElementById('a30').style.display=''; document.getElementById('q31').style.display=''; document.getElementById('q30').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a30' style='display: none' ><b>+ </b>Leave 2 green tiles from the left-hand builder and 2 green tiles from the right-hand builder to block the lasers.
        </div>
        <div id='q31' style='display: none' onclick="document.getElementById('a31').style.display=''; document.getElementById('q32').style.display=''; document.getElementById('q31').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a31' style='display: none' ><b>+ </b>Step on the right-hand builder first, then the middle one, then the left one. You shouldn't create any walls.
        </div>
        <div id='q32' style='display: none' onclick="document.getElementById('a32').style.display=''; document.getElementById('q33').style.display=''; document.getElementById('q32').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a32' style='display: none' ><b>+ </b>Remember to step on the tile directly up of the left-hand builder on your way to the right-hand builder (but leave the tile to the north of that untouched!)
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Branching Pathway</font>
</td><td valign="top" bgcolor=#847464><div id='q33'></div>

        <div id='q35' style='display: ' onclick="document.getElementById('a35').style.display=''; document.getElementById('q36').style.display=''; document.getElementById('q35').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a35' style='display: none' ><b>+ </b>You need to go around the bottom-left twice to get the 3 blue tiles in the top-left.
        </div>
        <div id='q36' style='display: none' onclick="document.getElementById('a36').style.display=''; document.getElementById('q37').style.display=''; document.getElementById('q36').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a36' style='display: none' ><b>+ </b>You use one of the jumps to do the section on the right-hand side.
        </div>
        <div id='q37' style='display: none' onclick="document.getElementById('a37').style.display=''; document.getElementById('q38').style.display=''; document.getElementById('q37').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a37' style='display: none' ><b>+ </b>You use the other jump on one of the bottom-most blue tiles.
        </div>
        <div id='q38' style='display: none' onclick="document.getElementById('a38').style.display=''; document.getElementById('q39').style.display=''; document.getElementById('q38').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a38' style='display: none' ><b>+ </b>Stepping forwards then backwards is a very important thing to do sometimes.
        </div>
        <div id='q39' style='display: none' onclick="document.getElementById('a39').style.display=''; document.getElementById('q40').style.display=''; document.getElementById('q39').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a39' style='display: none' ><b>+ </b>Start by stepping Down-right, Down, Up.
        </div>
        <div id='q40' style='display: none' onclick="document.getElementById('a40').style.display=''; document.getElementById('q41').style.display=''; document.getElementById('q40').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a40' style='display: none' ><b>+ </b>Then go Down, Down, Down-right, Up-left, Down-right, Down, Down-left, Up-right, Down-left, Down-left.
        </div>
        <div id='q41' style='display: none' onclick="document.getElementById('a41').style.display=''; document.getElementById('q42').style.display=''; document.getElementById('q41').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a41' style='display: none' ><b>+ </b>After you jump downwards on the middle trampoline, do: Down-right, Jump, Up-left, Down-left.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Breakthrough</font>
</td><td valign="top" bgcolor=#948474><div id='q42'></div>

        <div id='q44' style='display: ' onclick="document.getElementById('a44').style.display=''; document.getElementById('q45').style.display=''; document.getElementById('q44').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a44' style='display: none' ><b>+ </b>Think about how you can can destroy the two green walls.
        </div>
        <div id='q45' style='display: none' onclick="document.getElementById('a45').style.display=''; document.getElementById('q46').style.display=''; document.getElementById('q45').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a45' style='display: none' ><b>+ </b>If you got rid of all but the topmost of the central column of ice tiles, shooting a laser upwards at the remaining ice tile would destroy both green walls.
        </div>
        <div id='q46' style='display: none' onclick="document.getElementById('a46').style.display=''; document.getElementById('q47').style.display=''; document.getElementById('q46').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a46' style='display: none' ><b>+ </b>So how do you get rid of those awkward ice tiles?
        </div>
        <div id='q47' style='display: none' onclick="document.getElementById('a47').style.display=''; document.getElementById('q48').style.display=''; document.getElementById('q47').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a47' style='display: none' ><b>+ </b>Shoot yellow tiles next to ice tiles to destroy them.
        </div>
        <div id='q48' style='display: none' onclick="document.getElementById('a48').style.display=''; document.getElementById('q49').style.display=''; document.getElementById('q48').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a48' style='display: none' ><b>+ </b>If you rotate both spinners four times, the yellow tiles will be in good places where you can shoot them from the bottom.
        </div>
        <div id='q49' style='display: none' onclick="document.getElementById('a49').style.display=''; document.getElementById('q50').style.display=''; document.getElementById('q49').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a49' style='display: none' ><b>+ </b>Rotate the top spinner four times, then the bottom spinner four times.
        </div>
        <div id='q50' style='display: none' onclick="document.getElementById('a50').style.display=''; document.getElementById('q51').style.display=''; document.getElementById('q50').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a50' style='display: none' ><b>+ </b>You can fire yellow tiles in some directions without danger when you need to rotate spinners without breaking more green tiles (e.g. down-left from the bottom spinner)
        </div>
        <div id='q51' style='display: none' onclick="document.getElementById('a51').style.display=''; document.getElementById('q52').style.display=''; document.getElementById('q51').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a51' style='display: none' ><b>+ </b>A solution starts: U, DL, UR, UL, DR, D, U (top yellow tiles are now in a good position)
        </div>
        <div id='q52' style='display: none' onclick="document.getElementById('a52').style.display=''; document.getElementById('q53').style.display=''; document.getElementById('q52').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a52' style='display: none' ><b>+ </b>Then: DR, DL, D, UL, DR, UL, DR, DL, UR, (all yellow tiles next to spinners are now in a good position)
        </div>
        <div id='q53' style='display: none' onclick="document.getElementById('a53').style.display=''; document.getElementById('q54').style.display=''; document.getElementById('q53').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a53' style='display: none' ><b>+ </b>To finish: D, D, D, D, D, DL, U, D, U, DL, U, DL, D, U
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Clearance</font>
</td><td valign="top" bgcolor=#847464><div id='q54'></div>

        <div id='q56' style='display: ' onclick="document.getElementById('a56').style.display=''; document.getElementById('q57').style.display=''; document.getElementById('q56').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a56' style='display: none' ><b>+ </b>You need to get to the green tiles in the top-right, but there's an awkard trampoline blocking the way.
        </div>
        <div id='q57' style='display: none' onclick="document.getElementById('a57').style.display=''; document.getElementById('q58').style.display=''; document.getElementById('q57').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a57' style='display: none' ><b>+ </b>Before you can take the boat up there you need to destroy the trampoline and the two grey tiles beneath it.
        </div>
        <div id='q58' style='display: none' onclick="document.getElementById('a58').style.display=''; document.getElementById('q59').style.display=''; document.getElementById('q58').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a58' style='display: none' ><b>+ </b>You need to fire the laser up-right from three different positions.
        </div>
        <div id='q59' style='display: none' onclick="document.getElementById('a59').style.display=''; document.getElementById('q60').style.display=''; document.getElementById('q59').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a59' style='display: none' ><b>+ </b>You can shoot out the bottom of the three tiles without stepping on the spinner.
        </div>
        <div id='q60' style='display: none' onclick="document.getElementById('a60').style.display=''; document.getElementById('q61').style.display=''; document.getElementById('q60').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a60' style='display: none' ><b>+ </b>After rotating the spinner twice, the laser is in the right place to shoot the trampoline.
        </div>
        <div id='q61' style='display: none' onclick="document.getElementById('a61').style.display=''; document.getElementById('q62').style.display=''; document.getElementById('q61').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a61' style='display: none' ><b>+ </b>Rotating it twice more leaves it in a good place for shooting the remaining awkward tile.
        </div>
        <div id='q62' style='display: none' onclick="document.getElementById('a62').style.display=''; document.getElementById('q63').style.display=''; document.getElementById('q62').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a62' style='display: none' ><b>+ </b>In some positions, it's safe to step from the spinner onto the laser and back again to make it rotate again.
        </div>
        <div id='q63' style='display: none' onclick="document.getElementById('a63').style.display=''; document.getElementById('q64').style.display=''; document.getElementById('q63').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a63' style='display: none' ><b>+ </b>Make sure you walk over enough of the green tiles while going to fire the laser after rotating twice. You just need to leave one for later.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Commute</font>
</td><td valign="top" bgcolor=#948474><div id='q64'></div>

        <div id='q66' style='display: ' onclick="document.getElementById('a66').style.display=''; document.getElementById('q67').style.display=''; document.getElementById('q66').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a66' style='display: none' ><b>+ </b>Get off the raised green tiles immeadiately.
        </div>
        <div id='q67' style='display: none' onclick="document.getElementById('a67').style.display=''; document.getElementById('q68').style.display=''; document.getElementById('q67').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a67' style='display: none' ><b>+ </b>Start by destroying all the normal green tiles, aiming to finish on the right-most lift.
        </div>
        <div id='q68' style='display: none' onclick="document.getElementById('a68').style.display=''; document.getElementById('q69').style.display=''; document.getElementById('q68').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a68' style='display: none' ><b>+ </b>Then destroy all the tiles on the right (including the blue one)
        </div>
        <div id='q69' style='display: none' onclick="document.getElementById('a69').style.display=''; document.getElementById('q70').style.display=''; document.getElementById('q69').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a69' style='display: none' ><b>+ </b>Then head to the left and take out the two green tiles to the lower-left of the left-most lift.
        </div>
        <div id='q70' style='display: none' onclick="document.getElementById('a70').style.display=''; document.getElementById('q71').style.display=''; document.getElementById('q70').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a70' style='display: none' ><b>+ </b>Finally, destroy the blue and green tiles above the lift (make sure you leave the lift in the down position before stepping upwards)
        </div>
        <div id='q71' style='display: none' onclick="document.getElementById('a71').style.display=''; document.getElementById('q72').style.display=''; document.getElementById('q71').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a71' style='display: none' ><b>+ </b>Move sequence: DL, DL, DL, U, UL, DL, U, DL, U, UL, DL, U, U, DR, DR, DR, DR, DR, DR, UR (takes you onto the right-most lift)
        </div>
        <div id='q72' style='display: none' onclick="document.getElementById('a72').style.display=''; document.getElementById('q73').style.display=''; document.getElementById('q72').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a72' style='display: none' ><b>+ </b>Then: UR, DR, UR, UL, DR, U, UL, DL, DL, DL (Takes you onto the second lift from the right)
        </div>
        <div id='q73' style='display: none' onclick="document.getElementById('a73').style.display=''; document.getElementById('q74').style.display=''; document.getElementById('q73').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a73' style='display: none' ><b>+ </b>Then go up-left until you're standing on the grey wall tile. Finally, go DL, UL, UR, DR, UL, U, U, D, D
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Death Trap</font>
</td><td valign="top" bgcolor=#847464><div id='q74'></div>

        <div id='q76' style='display: ' onclick="document.getElementById('a76').style.display=''; document.getElementById('q77').style.display=''; document.getElementById('q76').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a76' style='display: none' ><b>+ </b>Take out the five green tiles at the start first.
        </div>
        <div id='q77' style='display: none' onclick="document.getElementById('a77').style.display=''; document.getElementById('q78').style.display=''; document.getElementById('q77').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a77' style='display: none' ><b>+ </b>Then work your way along the bottom edge from left to right, shooting upwards to destroy the upper green tiles.
        </div>
        <div id='q78' style='display: none' onclick="document.getElementById('a78').style.display=''; document.getElementById('q79').style.display=''; document.getElementById('q78').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a78' style='display: none' ><b>+ </b>Move sequence: U, DL, D, DR, UR, DR, D, U, D, U, D, DR, UR
        </div>
        <div id='q79' style='display: none' onclick="document.getElementById('a79').style.display=''; document.getElementById('q80').style.display=''; document.getElementById('q79').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a79' style='display: none' ><b>+ </b>Then: DR, UR, U, D, DR, UR, U, D, U, D
        </div>
        <div id='q80' style='display: none' onclick="document.getElementById('a80').style.display=''; document.getElementById('q81').style.display=''; document.getElementById('q80').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a80' style='display: none' ><b>+ </b>Finally: DR, UR, U, D, U, D, U, D, DR, UL
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Eagerness</font>
</td><td valign="top" bgcolor=#948474><div id='q81'></div>

        <div id='q83' style='display: ' onclick="document.getElementById('a83').style.display=''; document.getElementById('q84').style.display=''; document.getElementById('q83').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a83' style='display: none' ><b>+ </b>If the green walls retract, you can't get off the first yellow tile.
        </div>
        <div id='q84' style='display: none' onclick="document.getElementById('a84').style.display=''; document.getElementById('q85').style.display=''; document.getElementById('q84').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a84' style='display: none' ><b>+ </b>So, how do you stop them retracting?
        </div>
        <div id='q85' style='display: none' onclick="document.getElementById('a85').style.display=''; document.getElementById('q86').style.display=''; document.getElementById('q85').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a85' style='display: none' ><b>+ </b>You need to turn one of the blue tiles green first.
        </div>
        <div id='q86' style='display: none' onclick="document.getElementById('a86').style.display=''; document.getElementById('q87').style.display=''; document.getElementById('q86').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a86' style='display: none' ><b>+ </b>But only one of them, else the blue walls will retract too soon!
        </div>
        <div id='q87' style='display: none' onclick="document.getElementById('a87').style.display=''; document.getElementById('q88').style.display=''; document.getElementById('q87').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a87' style='display: none' ><b>+ </b>Then go and shoot the blue tile you left behind.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Ferrying</font>
</td><td valign="top" bgcolor=#847464><div id='q88'></div>

        <div id='q90' style='display: ' onclick="document.getElementById('a90').style.display=''; document.getElementById('q91').style.display=''; document.getElementById('q90').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a90' style='display: none' ><b>+ </b>Leave one of the 3 green tiles at the start unbroken so you can safely ride the top-most boat downwards.
        </div>
        <div id='q91' style='display: none' onclick="document.getElementById('a91').style.display=''; document.getElementById('q92').style.display=''; document.getElementById('q91').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a91' style='display: none' ><b>+ </b>You take the boat which starts at the bottom up 3 times and down twice.
        </div>
        <div id='q92' style='display: none' onclick="document.getElementById('a92').style.display=''; document.getElementById('q93').style.display=''; document.getElementById('q92').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a92' style='display: none' ><b>+ </b>When you take the boat upwards for the third time, you should have already broken all 10 green tiles adjacent to the trampolines so you can just bounce upwards.
        </div>
        <div id='q93' style='display: none' onclick="document.getElementById('a93').style.display=''; document.getElementById('q94').style.display=''; document.getElementById('q93').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a93' style='display: none' ><b>+ </b>After taking the boat upwards the second time, you need to use both trampolines (and one of them twice) in order to break all 10 green tiles.
        </div>
        <div id='q94' style='display: none' onclick="document.getElementById('a94').style.display=''; document.getElementById('q95').style.display=''; document.getElementById('q94').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a94' style='display: none' ><b>+ </b>The move sequence after riding the boat upwards for the second time is: U, UL, U, DR (onto trampoline), UL, U, UR, DR, D, UL (onto right trampoline), D (onto left trampoline, and then the boat)
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Fetch Quest</font>
</td><td valign="top" bgcolor=#948474><div id='q95'></div>

        <div id='q97' style='display: ' onclick="document.getElementById('a97').style.display=''; document.getElementById('q98').style.display=''; document.getElementById('q97').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a97' style='display: none' ><b>+ </b>You need to collect all the anti-ice, and finish on the spinner at the top-right.
        </div>
        <div id='q98' style='display: none' onclick="document.getElementById('a98').style.display=''; document.getElementById('q99').style.display=''; document.getElementById('q98').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a98' style='display: none' ><b>+ </b>Go for the bottom-most anti-ice first.
        </div>
        <div id='q99' style='display: none' onclick="document.getElementById('a99').style.display=''; document.getElementById('q100').style.display=''; document.getElementById('q99').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a99' style='display: none' ><b>+ </b>You have to shoot the tile the bottom-most anti-ice starts on after taking the anti-ice.
        </div>
        <div id='q100' style='display: none' onclick="document.getElementById('a100').style.display=''; document.getElementById('q101').style.display=''; document.getElementById('q100').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a100' style='display: none' ><b>+ </b>Secondly, collect the left-most anti-ice.
        </div>
        <div id='q101' style='display: none' onclick="document.getElementById('a101').style.display=''; document.getElementById('q102').style.display=''; document.getElementById('q101').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a101' style='display: none' ><b>+ </b>The right-most spinner should be rotated twice to complete the path on the right-side of the level.
        </div>
        <div id='q102' style='display: none' onclick="document.getElementById('a102').style.display=''; document.getElementById('q103').style.display=''; document.getElementById('q102').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a102' style='display: none' ><b>+ </b>The anti-ice which starts on yellow tiles should be collected 6th and 7th. The anti-ice on the bottom-right spinner is the last one you get.
        </div>
        <div id='q103' style='display: none' onclick="document.getElementById('a103').style.display=''; document.getElementById('q104').style.display=''; document.getElementById('q103').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a103' style='display: none' ><b>+ </b>Start with D, UL, DL, DL, DR, D, D, UL, UL, U (takes you to the bottom right spinner)
        </div>
        <div id='q104' style='display: none' onclick="document.getElementById('a104').style.display=''; document.getElementById('q105').style.display=''; document.getElementById('q104').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a104' style='display: none' ><b>+ </b>Then: U, UL, U, U, UR, DL, DR, DR, U, U, UL, UR, DR, DR (collecting the third anti-ice)
        </div>
        <div id='q105' style='display: none' onclick="document.getElementById('a105').style.display=''; document.getElementById('q106').style.display=''; document.getElementById('q105').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a105' style='display: none' ><b>+ </b>Then: U, U, U, DR, DL, UR, DR, D, DR, UR, DR (onto right-most spinner)
        </div>
        <div id='q106' style='display: none' onclick="document.getElementById('a106').style.display=''; document.getElementById('q107').style.display=''; document.getElementById('q106').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a106' style='display: none' ><b>+ </b>Notice that you can fire the right-hand yellow tile down-right without destroying anything.
        </div>
        <div id='q107' style='display: none' onclick="document.getElementById('a107').style.display=''; document.getElementById('q108').style.display=''; document.getElementById('q107').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a107' style='display: none' ><b>+ </b>More moves (continuing from before): U, D, U, UL, DL, D, D, U, DL, DL, DL, DL, D (onto left-hand yellow tile)
        </div>
        <div id='q108' style='display: none' onclick="document.getElementById('a108').style.display=''; document.getElementById('q109').style.display=''; document.getElementById('q108').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a108' style='display: none' ><b>+ </b>Then: UR, UR, UR, DR, DL, D, DR, D, U, UL, DR, UR, DR, UR (onto bottom-most ice tile)
        </div>
        <div id='q109' style='display: none' onclick="document.getElementById('a109').style.display=''; document.getElementById('q110').style.display=''; document.getElementById('q109').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a109' style='display: none' ><b>+ </b>Finally, go straight to the top-most spinner, de-icing all the icy tiles on the way.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Finishing Strike</font>
</td><td valign="top" bgcolor=#847464><div id='q110'></div>

        <div id='q112' style='display: ' onclick="document.getElementById('a112').style.display=''; document.getElementById('q113').style.display=''; document.getElementById('q112').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a112' style='display: none' ><b>+ </b>You need to shoot the bottom left yellow tile to destroy the green walls.
        </div>
        <div id='q113' style='display: none' onclick="document.getElementById('a113').style.display=''; document.getElementById('q114').style.display=''; document.getElementById('q113').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a113' style='display: none' ><b>+ </b>But you can't fire the central gun in that direction...
        </div>
        <div id='q114' style='display: none' onclick="document.getElementById('a114').style.display=''; document.getElementById('q115').style.display=''; document.getElementById('q114').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a114' style='display: none' ><b>+ </b>Have you tried jumping whilst standing on a yellow tile?
        </div>
        <div id='q115' style='display: none' onclick="document.getElementById('a115').style.display=''; document.getElementById('q116').style.display=''; document.getElementById('q115').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a115' style='display: none' ><b>+ </b>Finish by going to the central yellow tile and jumping twice.
        </div>
        <div id='q116' style='display: none' onclick="document.getElementById('a116').style.display=''; document.getElementById('q117').style.display=''; document.getElementById('q116').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a116' style='display: none' ><b>+ </b>You need to walk around the outside loop first. Remember you don't have to destroy all the blue tiles.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Forced Fire</font>
</td><td valign="top" bgcolor=#948474><div id='q117'></div>

        <div id='q119' style='display: ' onclick="document.getElementById('a119').style.display=''; document.getElementById('q120').style.display=''; document.getElementById('q119').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a119' style='display: none' ><b>+ </b>The boat is the key.
        </div>
        <div id='q120' style='display: none' onclick="document.getElementById('a120').style.display=''; document.getElementById('q121').style.display=''; document.getElementById('q120').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a120' style='display: none' ><b>+ </b>You can get the tiles in the bottom left and leave, but you'll end up firing the laser up-right four times in the process (and down once).
        </div>
        <div id='q121' style='display: none' onclick="document.getElementById('a121').style.display=''; document.getElementById('q122').style.display=''; document.getElementById('q121').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a121' style='display: none' ><b>+ </b>Is there a way you can fire up-right four times without making the level unsolvable?
        </div>
        <div id='q122' style='display: none' onclick="document.getElementById('a122').style.display=''; document.getElementById('q123').style.display=''; document.getElementById('q122').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a122' style='display: none' ><b>+ </b>You could use the boat to absorb one of the shots.
        </div>
        <div id='q123' style='display: none' onclick="document.getElementById('a123').style.display=''; document.getElementById('q124').style.display=''; document.getElementById('q123').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a123' style='display: none' ><b>+ </b>There is a different way to use the boat which allows you to complete the level without firing at all.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Green Honey</font>
</td><td valign="top" bgcolor=#847464><div id='q124'></div>

        <div id='q126' style='display: ' onclick="document.getElementById('a126').style.display=''; document.getElementById('q127').style.display=''; document.getElementById('q126').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a126' style='display: none' ><b>+ </b>If you've got this far, the top half of this level shouldn't be a problem.
        </div>
        <div id='q127' style='display: none' onclick="document.getElementById('a127').style.display=''; document.getElementById('q128').style.display=''; document.getElementById('q127').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a127' style='display: none' ><b>+ </b>Think back to the level "Eagerness".
        </div>
        <div id='q128' style='display: none' onclick="document.getElementById('a128').style.display=''; document.getElementById('q129').style.display=''; document.getElementById('q128').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a128' style='display: none' ><b>+ </b>Don't get rid of all the blue tiles too soon.
        </div>
        <div id='q129' style='display: none' onclick="document.getElementById('a129').style.display=''; document.getElementById('q130').style.display=''; document.getElementById('q129').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a129' style='display: none' ><b>+ </b>There should only be one green tile left when make the blue walls turn into blue tiles.
        </div>
        <div id='q130' style='display: none' onclick="document.getElementById('a130').style.display=''; document.getElementById('q131').style.display=''; document.getElementById('q130').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a130' style='display: none' ><b>+ </b>Anti-ice makes ice tiles turn blue.
        </div>
        <div id='q131' style='display: none' onclick="document.getElementById('a131').style.display=''; document.getElementById('q132').style.display=''; document.getElementById('q131').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a131' style='display: none' ><b>+ </b>Grab the anti-ice then walk over the ice - this then becomes the blue tile which keeps the blue walls from retracting.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Gun Platform</font>
</td><td valign="top" bgcolor=#948474><div id='q132'></div>

        <div id='q134' style='display: ' onclick="document.getElementById('a134').style.display=''; document.getElementById('q135').style.display=''; document.getElementById('q134').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a134' style='display: none' ><b>+ </b>Note that all but one of the tiles that starts green can be shot by walking over the yellow tiles in a circle.
        </div>
        <div id='q135' style='display: none' onclick="document.getElementById('a135').style.display=''; document.getElementById('q136').style.display=''; document.getElementById('q135').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a135' style='display: none' ><b>+ </b>There's no need to break a lot of the blue tiles.
        </div>
        <div id='q136' style='display: none' onclick="document.getElementById('a136').style.display=''; document.getElementById('q137').style.display=''; document.getElementById('q136').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a136' style='display: none' ><b>+ </b>The only possible way to remove the remaining green tile is to fire a laser down-right.
        </div>
        <div id='q137' style='display: none' onclick="document.getElementById('a137').style.display=''; document.getElementById('q138').style.display=''; document.getElementById('q137').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a137' style='display: none' ><b>+ </b>So you want to use the trampoline to land on the central green tile, then step down-right.
        </div>
        <div id='q138' style='display: none' onclick="document.getElementById('a138').style.display=''; document.getElementById('q139').style.display=''; document.getElementById('q138').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a138' style='display: none' ><b>+ </b>Complete solution starts: U, D, U, U, U, D, U, UR, UR, DL, UR, UR, DR, UL, DR, UR, D, U, D, D (onto trampoline)
        </div>
        <div id='q139' style='display: none' onclick="document.getElementById('a139').style.display=''; document.getElementById('q140').style.display=''; document.getElementById('q139').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a139' style='display: none' ><b>+ </b>Then just walk around the yellow tiles until you're done. (Go both clockwise and anti-clockwise!)
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Hunting</font>
</td><td valign="top" bgcolor=#847464><div id='q140'></div>

        <div id='q142' style='display: ' onclick="document.getElementById('a142').style.display=''; document.getElementById('q143').style.display=''; document.getElementById('q142').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a142' style='display: none' ><b>+ </b>Don't break the only green tile too soon.
        </div>
        <div id='q143' style='display: none' onclick="document.getElementById('a143').style.display=''; document.getElementById('q144').style.display=''; document.getElementById('q143').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a143' style='display: none' ><b>+ </b>You should destroy the 8 green walls attached to the initial ring of lifts before moving on. Experiment with moving between lifts.
        </div>
        <div id='q144' style='display: none' onclick="document.getElementById('a144').style.display=''; document.getElementById('q145').style.display=''; document.getElementById('q144').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a144' style='display: none' ><b>+ </b>Try to get in a position with only the bottom-left and the top lift (of the ring of lifts) raised with Emi standing on the top one. From that position, it should be easy.
        </div>
        <div id='q145' style='display: none' onclick="document.getElementById('a145').style.display=''; document.getElementById('q146').style.display=''; document.getElementById('q145').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a145' style='display: none' ><b>+ </b>Exact moves to do that from the start of the level are: Up-right, Up-right, Up, Down, Down-left, Up-right, Up, Up-Right. Then go round the 4 green walls next to you. Then get the bottom 4 walls.
        </div>
        <div id='q146' style='display: none' onclick="document.getElementById('a146').style.display=''; document.getElementById('q147').style.display=''; document.getElementById('q146').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a146' style='display: none' ><b>+ </b>You need to destroy the top lift in the ring of 6 lifts to allow a refracted laser to destroy the green tile.
        </div>
        <div id='q147' style='display: none' onclick="document.getElementById('a147').style.display=''; document.getElementById('q148').style.display=''; document.getElementById('q147').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a147' style='display: none' ><b>+ </b>Fire the left-most laser down-left.
        </div>
        <div id='q148' style='display: none' onclick="document.getElementById('a148').style.display=''; document.getElementById('q149').style.display=''; document.getElementById('q148').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a148' style='display: none' ><b>+ </b>Fire the top-most laser upwards to get a refracted laser to destroy the green tile.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Icy Road</font>
</td><td valign="top" bgcolor=#948474><div id='q149'></div>

        <div id='q151' style='display: ' onclick="document.getElementById('a151').style.display=''; document.getElementById('q152').style.display=''; document.getElementById('q151').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a151' style='display: none' ><b>+ </b>There are a lot of green tiles which can easily get left in useless positions. Think about which tiles must be broken sequentially (e.g. the loop at the bottom of the level.)
        </div>
        <div id='q152' style='display: none' onclick="document.getElementById('a152').style.display=''; document.getElementById('q153').style.display=''; document.getElementById('q152').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a152' style='display: none' ><b>+ </b>If you start with: U, U, DR, D, DL, DR, it should become obvious.
        </div>
        <div id='q153' style='display: none' onclick="document.getElementById('a153').style.display=''; document.getElementById('q154').style.display=''; document.getElementById('q153').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a153' style='display: none' ><b>+ </b>If not, the remaining moves are: UR, DR, D, DL, UL, U, UR, DR, UR, UL, U, U
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Island</font>
</td><td valign="top" bgcolor=#847464><div id='q154'></div>

        <div id='q156' style='display: ' onclick="document.getElementById('a156').style.display=''; document.getElementById('q157').style.display=''; document.getElementById('q156').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a156' style='display: none' ><b>+ </b>There's no grey tile to finish on.
        </div>
        <div id='q157' style='display: none' onclick="document.getElementById('a157').style.display=''; document.getElementById('q158').style.display=''; document.getElementById('q157').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a157' style='display: none' ><b>+ </b>You only need to destroy green tiles.
        </div>
        <div id='q158' style='display: none' onclick="document.getElementById('a158').style.display=''; document.getElementById('q159').style.display=''; document.getElementById('q158').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a158' style='display: none' ><b>+ </b>Blue tiles only turn green when you step off them.
        </div>
        <div id='q159' style='display: none' onclick="document.getElementById('a159').style.display=''; document.getElementById('q160').style.display=''; document.getElementById('q159').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a159' style='display: none' ><b>+ </b>You need to finish by stepping from the last green tile onto a blue one.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Laser Surgery</font>
</td><td valign="top" bgcolor=#948474><div id='q160'></div>

        <div id='q162' style='display: ' onclick="document.getElementById('a162').style.display=''; document.getElementById('q163').style.display=''; document.getElementById('q162').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a162' style='display: none' ><b>+ </b>The last move you'll make will be to step upwards from the bottom-most green tile (which is initially a green wall).
        </div>
        <div id='q163' style='display: none' onclick="document.getElementById('a163').style.display=''; document.getElementById('q164').style.display=''; document.getElementById('q163').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a163' style='display: none' ><b>+ </b>Doing so will fire the laser, so there musn't be a clear loop around the 6 central ice tiles at this point, else the laser will loop back and blow you up.
        </div>
        <div id='q164' style='display: none' onclick="document.getElementById('a164').style.display=''; document.getElementById('q165').style.display=''; document.getElementById('q164').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a164' style='display: none' ><b>+ </b>You need to fire the laser upwards at least twice.
        </div>
        <div id='q165' style='display: none' onclick="document.getElementById('a165').style.display=''; document.getElementById('q166').style.display=''; document.getElementById('q165').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a165' style='display: none' ><b>+ </b>The <b>penultimate</b> time you fire the laser upwards must destroy any remaining green tiles (so you can break the bottom-most green wall before firing for the last time)
        </div>
        <div id='q166' style='display: none' onclick="document.getElementById('a166').style.display=''; document.getElementById('q167').style.display=''; document.getElementById('q166').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a166' style='display: none' ><b>+ </b>So try leaving one green tile behind.
        </div>
        <div id='q167' style='display: none' onclick="document.getElementById('a167').style.display=''; document.getElementById('q168').style.display=''; document.getElementById('q167').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a167' style='display: none' ><b>+ </b>Leave the one green tile in between the right-hand two ice tiles.
        </div>
        <div id='q168' style='display: none' onclick="document.getElementById('a168').style.display=''; document.getElementById('q169').style.display=''; document.getElementById('q168').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a168' style='display: none' ><b>+ </b>One solution starts: D, DR, DR, U, UL, U, UL, UR, UR, DR, U, UR (leaving you on the top-most green tile)
        </div>
        <div id='q169' style='display: none' onclick="document.getElementById('a169').style.display=''; document.getElementById('q170').style.display=''; document.getElementById('q169').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a169' style='display: none' ><b>+ </b>Then: DR, DR, DR, DL, D, UL, U, DL, D, DR, DL, D, UR, UR
        </div>
        <div id='q170' style='display: none' onclick="document.getElementById('a170').style.display=''; document.getElementById('q171').style.display=''; document.getElementById('q170').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a170' style='display: none' ><b>+ </b>Finally: U, UR, D, D, DL, DL, DL, DL, D, D, D, U, D, U
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Leftovers</font>
</td><td valign="top" bgcolor=#847464><div id='q171'></div>

        <div id='q173' style='display: ' onclick="document.getElementById('a173').style.display=''; document.getElementById('q174').style.display=''; document.getElementById('q173').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a173' style='display: none' ><b>+ </b>You should only leave two green walls behind when you leave the starting section.
        </div>
        <div id='q174' style='display: none' onclick="document.getElementById('a174').style.display=''; document.getElementById('q175').style.display=''; document.getElementById('q174').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a174' style='display: none' ><b>+ </b>Start by jumping down onto the blue tile.
        </div>
        <div id='q175' style='display: none' onclick="document.getElementById('a175').style.display=''; document.getElementById('q176').style.display=''; document.getElementById('q175').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a175' style='display: none' ><b>+ </b>The only way to destroy those walls you leave behind is to shoot them.
        </div>
        <div id='q176' style='display: none' onclick="document.getElementById('a176').style.display=''; document.getElementById('q177').style.display=''; document.getElementById('q176').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a176' style='display: none' ><b>+ </b>Use an ice tile to refract the laser beam.
        </div>
        <div id='q177' style='display: none' onclick="document.getElementById('a177').style.display=''; document.getElementById('q178').style.display=''; document.getElementById('q177').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a177' style='display: none' ><b>+ </b>The spinner with ice tiles next to it needs turning twice to put an ice tile in the right place.
        </div>
        <div id='q178' style='display: none' onclick="document.getElementById('a178').style.display=''; document.getElementById('q179').style.display=''; document.getElementById('q178').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a178' style='display: none' ><b>+ </b>The laser tiles need firing at the ice from the tile up-left of the second spinner. <a href="hints/leftovers_laser_position.jpg">Click here for a picture.</a>
        </div>
        <div id='q179' style='display: none' onclick="document.getElementById('a179').style.display=''; document.getElementById('q180').style.display=''; document.getElementById('q179').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a179' style='display: none' ><b>+ </b>You'll need to use both laser tiles. Make sure you don't trample the green tiles you'll need to use to fire the laser in the right direction!
        </div>
        <div id='q180' style='display: none' onclick="document.getElementById('a180').style.display=''; document.getElementById('q181').style.display=''; document.getElementById('q180').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a180' style='display: none' ><b>+ </b>Fire the lasers off into space to keep rotating the spinner without wasting green tiles.
        </div>
        <div id='q181' style='display: none' onclick="document.getElementById('a181').style.display=''; document.getElementById('q182').style.display=''; document.getElementById('q181').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a181' style='display: none' ><b>+ </b>The final spinner is only useful as a safe tile to finish on.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Lifts</font>
</td><td valign="top" bgcolor=#948474><div id='q182'></div>

        <div id='q184' style='display: ' onclick="document.getElementById('a184').style.display=''; document.getElementById('q185').style.display=''; document.getElementById('q184').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a184' style='display: none' ><b>+ </b>Jumping on a trampoline from a raised tile does a higher bounce, which can land you on another high tile. But hopping onto a trampoline from a normal tile doesn't allow you to gain height.
        </div>
        <div id='q185' style='display: none' onclick="document.getElementById('a185').style.display=''; document.getElementById('q186').style.display=''; document.getElementById('q185').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a185' style='display: none' ><b>+ </b>It's impossible to destroy all the blue walls on this level, so you'll have to use the trampoline in the bottom-right to get to the last green wall.
        </div>
        <div id='q186' style='display: none' onclick="document.getElementById('a186').style.display=''; document.getElementById('q187').style.display=''; document.getElementById('q186').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a186' style='display: none' ><b>+ </b>Try starting with: U, DR, UL, U, U, UR, DR, UR, UL, UR, U.
        </div>
        <div id='q187' style='display: none' onclick="document.getElementById('a187').style.display=''; document.getElementById('q188').style.display=''; document.getElementById('q187').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a187' style='display: none' ><b>+ </b>Then: D, UL, DR, D, DL, U, UR, DR, DR, D, D.
        </div>
        <div id='q188' style='display: none' onclick="document.getElementById('a188').style.display=''; document.getElementById('q189').style.display=''; document.getElementById('q188').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a188' style='display: none' ><b>+ </b>Finally: D, D, DR, UR, UR, UL, DR, D, U, D, DR, D.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Maze</font>
</td><td valign="top" bgcolor=#847464><div id='q189'></div>

        <div id='q191' style='display: ' onclick="document.getElementById('a191').style.display=''; document.getElementById('q192').style.display=''; document.getElementById('q191').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a191' style='display: none' ><b>+ </b>Start by breaking the top green tile and returning to the starting tile, then go D, DR, DR
        </div>
        <div id='q192' style='display: none' onclick="document.getElementById('a192').style.display=''; document.getElementById('q193').style.display=''; document.getElementById('q192').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a192' style='display: none' ><b>+ </b>Then go DL, U, D, D, DL
        </div>
        <div id='q193' style='display: none' onclick="document.getElementById('a193').style.display=''; document.getElementById('q194').style.display=''; document.getElementById('q193').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a193' style='display: none' ><b>+ </b>Then UR, DR, UR, U, DR, UR, U, U, D, D
        </div>
        <div id='q194' style='display: none' onclick="document.getElementById('a194').style.display=''; document.getElementById('q195').style.display=''; document.getElementById('q194').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a194' style='display: none' ><b>+ </b>From here you should be able to get to the green tile just down-left of the top spinner while breaking all the green and blue tiles on the way.
        </div>
        <div id='q195' style='display: none' onclick="document.getElementById('a195').style.display=''; document.getElementById('q196').style.display=''; document.getElementById('q195').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a195' style='display: none' ><b>+ </b>You want to rotate the top spinner once and finish by firing the bottom yellow tile upwards three times (to blow up the green walls)
        </div>
        <div id='q196' style='display: none' onclick="document.getElementById('a196').style.display=''; document.getElementById('q197').style.display=''; document.getElementById('q196').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a196' style='display: none' ><b>+ </b>To do this, from the green tile down-left of the top spinner, go DR, D, U, UR, UL, DR, DL
        </div>
        <div id='q197' style='display: none' onclick="document.getElementById('a197').style.display=''; document.getElementById('q198').style.display=''; document.getElementById('q197').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a197' style='display: none' ><b>+ </b>Then D, D, D, UR, D, UL, D
        </div>
        <div id='q198' style='display: none' onclick="document.getElementById('a198').style.display=''; document.getElementById('q199').style.display=''; document.getElementById('q198').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a198' style='display: none' ><b>+ </b>Finish with U, D, DR, UL, U, D, U
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Mini Island</font>
</td><td valign="top" bgcolor=#948474><div id='q199'></div>

        <div id='q201' style='display: ' onclick="document.getElementById('a201').style.display=''; document.getElementById('q202').style.display=''; document.getElementById('q201').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a201' style='display: none' ><b>+ </b>As usual, make sure you don't leave any unreachable dead-ends of green tiles behind.
        </div>
        <div id='q202' style='display: none' onclick="document.getElementById('a202').style.display=''; document.getElementById('q203').style.display=''; document.getElementById('q202').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a202' style='display: none' ><b>+ </b>You should finish on the central island.
        </div>
        <div id='q203' style='display: none' onclick="document.getElementById('a203').style.display=''; document.getElementById('q204').style.display=''; document.getElementById('q203').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a203' style='display: none' ><b>+ </b>Don't go to the central island until you've broken all the other green tiles.
        </div>
        <div id='q204' style='display: none' onclick="document.getElementById('a204').style.display=''; document.getElementById('q205').style.display=''; document.getElementById('q204').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a204' style='display: none' ><b>+ </b>To get the two green tiles in between the trampolines at the right, jump onto one of the green tiles then reverse direction. (I.e. bounce south off the north trampoline, then hop north twice.)
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >More Stripes</font>
</td><td valign="top" bgcolor=#847464><div id='q205'></div>

        <div id='q207' style='display: ' onclick="document.getElementById('a207').style.display=''; document.getElementById('q208').style.display=''; document.getElementById('q207').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a207' style='display: none' ><b>+ </b>Make sure you don't leave any green tiles behind in the first column when you leave it.
        </div>
        <div id='q208' style='display: none' onclick="document.getElementById('a208').style.display=''; document.getElementById('q209').style.display=''; document.getElementById('q208').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a208' style='display: none' ><b>+ </b>Then walk over all the green tiles in the right-hand two columns before jumping downwards.
        </div>
        <div id='q209' style='display: none' onclick="document.getElementById('a209').style.display=''; document.getElementById('q210').style.display=''; document.getElementById('q209').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a209' style='display: none' ><b>+ </b>Then you want to jump up off the left trampoline of the three at the bottom. Make sure you leave a route so you can get back to the middle trampoline later.
        </div>
        <div id='q210' style='display: none' onclick="document.getElementById('a210').style.display=''; document.getElementById('q211').style.display=''; document.getElementById('q210').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a210' style='display: none' ><b>+ </b>Then go back round to the bottom (don't destroy too many tiles in the section with a column of green tiles next to a column of blue tiles)
        </div>
        <div id='q211' style='display: none' onclick="document.getElementById('a211').style.display=''; document.getElementById('q212').style.display=''; document.getElementById('q211').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a211' style='display: none' ><b>+ </b>Finally, clean up any green tiles at the bottom and jump upwards from the middle trampoline. You should then be able to finish off the remaining tiles and finish either on a blue tile or by jumping down-right back to the grey tiles at the bottom.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >No Swimming Allowed</font>
</td><td valign="top" bgcolor=#948474><div id='q212'></div>

        <div id='q214' style='display: ' onclick="document.getElementById('a214').style.display=''; document.getElementById('q215').style.display=''; document.getElementById('q214').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a214' style='display: none' ><b>+ </b>You need to take one of the boats upwards along the column to the right of where they start.
        </div>
        <div id='q215' style='display: none' onclick="document.getElementById('a215').style.display=''; document.getElementById('q216').style.display=''; document.getElementById('q215').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a215' style='display: none' ><b>+ </b>So you need to get to a tile directly under a boat so you can jump onto it.
        </div>
        <div id='q216' style='display: none' onclick="document.getElementById('a216').style.display=''; document.getElementById('q217').style.display=''; document.getElementById('q216').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a216' style='display: none' ><b>+ </b>The ice is no help for that, since you can't stop in the right place, so you need to use the other boat.
        </div>
        <div id='q217' style='display: none' onclick="document.getElementById('a217').style.display=''; document.getElementById('q218').style.display=''; document.getElementById('q217').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a217' style='display: none' ><b>+ </b>Take the top boat down-right, then look at where the other boat is.
        </div>
        <div id='q218' style='display: none' onclick="document.getElementById('a218').style.display=''; document.getElementById('q219').style.display=''; document.getElementById('q218').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a218' style='display: none' ><b>+ </b>Go back round to the left without moving the top boat again, then take the bottom boat up-right. From there you can step upwards onto the first boat.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Nucleus</font>
</td><td valign="top" bgcolor=#847464><div id='q219'></div>

        <div id='q221' style='display: ' onclick="document.getElementById('a221').style.display=''; document.getElementById('q222').style.display=''; document.getElementById('q221').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a221' style='display: none' ><b>+ </b>You leave the central area by going upwards.
        </div>
        <div id='q222' style='display: none' onclick="document.getElementById('a222').style.display=''; document.getElementById('q223').style.display=''; document.getElementById('q222').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a222' style='display: none' ><b>+ </b>You mainly go anti-clockwise around the outside, but you should destroy one blue and one green tile to the right first.
        </div>
        <div id='q223' style='display: none' onclick="document.getElementById('a223').style.display=''; document.getElementById('q224').style.display=''; document.getElementById('q223').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a223' style='display: none' ><b>+ </b>You finish by jumping onto the top-right yellow tile from the outside.
        </div>
        <div id='q224' style='display: none' onclick="document.getElementById('a224').style.display=''; document.getElementById('q225').style.display=''; document.getElementById('q224').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a224' style='display: none' ><b>+ </b>You need to have already gotten rid of one of the green tiles in the central area so it doesn't block the laser.
        </div>
        <div id='q225' style='display: none' onclick="document.getElementById('a225').style.display=''; document.getElementById('q226').style.display=''; document.getElementById('q225').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a225' style='display: none' ><b>+ </b>Start by going up-right then down-left, then up.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >One Two One Two</font>
</td><td valign="top" bgcolor=#948474><div id='q226'></div>

        <div id='q228' style='display: ' onclick="document.getElementById('a228').style.display=''; document.getElementById('q229').style.display=''; document.getElementById('q228').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a228' style='display: none' ><b>+ </b>Step on as few blue tiles as possible, since once they've gone green you have to destroy them. The exception to this is that you can finish a level by stepping onto a blue tile (since then you never step off, so it doesn't turn green.)
        </div>
        <div id='q229' style='display: none' onclick="document.getElementById('a229').style.display=''; document.getElementById('q230').style.display=''; document.getElementById('q229').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a229' style='display: none' ><b>+ </b>A line of blue tiles followed by one green tile can be destroyed by walking along it then back again.
        </div>
        <div id='q230' style='display: none' onclick="document.getElementById('a230').style.display=''; document.getElementById('q231').style.display=''; document.getElementById('q230').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a230' style='display: none' ><b>+ </b>Solution: DL, DL, D, D, DL, UL, UL, UL, DL, UR, DR, DR, DR, UR...
        </div>
        <div id='q231' style='display: none' onclick="document.getElementById('a231').style.display=''; document.getElementById('q232').style.display=''; document.getElementById('q231').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a231' style='display: none' ><b>+ </b>Then: DR, D, U, UR, DR, D, U, UL, U, UR, DR, UR, U, UL, DL, UL, U (onto trampoline)
        </div>
        <div id='q232' style='display: none' onclick="document.getElementById('a232').style.display=''; document.getElementById('q233').style.display=''; document.getElementById('q232').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a232' style='display: none' ><b>+ </b>Finally trample the remaining green tiles and finish by stepping onto a blue tile.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Only One Way Up</font>
</td><td valign="top" bgcolor=#847464><div id='q233'></div>

        <div id='q235' style='display: ' onclick="document.getElementById('a235').style.display=''; document.getElementById('q236').style.display=''; document.getElementById('q235').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a235' style='display: none' ><b>+ </b>Plan to fire the bottom yellow tile up-right at the other yellow tile.
        </div>
        <div id='q236' style='display: none' onclick="document.getElementById('a236').style.display=''; document.getElementById('q237').style.display=''; document.getElementById('q236').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a236' style='display: none' ><b>+ </b>After firing the laser, you'll need to head towards the right-hand spinner.
        </div>
        <div id='q237' style='display: none' onclick="document.getElementById('a237').style.display=''; document.getElementById('q238').style.display=''; document.getElementById('q237').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a237' style='display: none' ><b>+ </b>You don't need to lower the blue walls.
        </div>
        <div id='q238' style='display: none' onclick="document.getElementById('a238').style.display=''; document.getElementById('q239').style.display=''; document.getElementById('q238').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a238' style='display: none' ><b>+ </b>You should go up the lift when it is down-left of the spinner.
        </div>
        <div id='q239' style='display: none' onclick="document.getElementById('a239').style.display=''; document.getElementById('q240').style.display=''; document.getElementById('q239').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a239' style='display: none' ><b>+ </b>You need to step on the spinner 5 times. Note there is a trampoline positioned so you bounce onto the spinner.
        </div>
        <div id='q240' style='display: none' onclick="document.getElementById('a240').style.display=''; document.getElementById('q241').style.display=''; document.getElementById('q240').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a240' style='display: none' ><b>+ </b>Start with UL, DL, DR, UR - this clears out a green tile which would otherwise be problematic later.
        </div>
        <div id='q241' style='display: none' onclick="document.getElementById('a241').style.display=''; document.getElementById('q242').style.display=''; document.getElementById('q241').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a241' style='display: none' ><b>+ </b>Then go DR, DL, DL, DL, DL to clear the firing path between the yellow tiles.
        </div>
        <div id='q242' style='display: none' onclick="document.getElementById('a242').style.display=''; document.getElementById('q243').style.display=''; document.getElementById('q242').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a242' style='display: none' ><b>+ </b>Then step on the spinner a couple of times, then proceed round the top right before bouncing back onto the spinner.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Pro Skater</font>
</td><td valign="top" bgcolor=#948474><div id='q243'></div>

        <div id='q245' style='display: ' onclick="document.getElementById('a245').style.display=''; document.getElementById('q246').style.display=''; document.getElementById('q245').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a245' style='display: none' ><b>+ </b>Note that the right-hand side of the level is not symmetrical.
        </div>
        <div id='q246' style='display: none' onclick="document.getElementById('a246').style.display=''; document.getElementById('q247').style.display=''; document.getElementById('q246').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a246' style='display: none' ><b>+ </b>You use the anti-ice to get the green tile immeadiatly to the left of the anti-ice pickup (there's no other way to reach it)
        </div>
        <div id='q247' style='display: none' onclick="document.getElementById('a247').style.display=''; document.getElementById('q248').style.display=''; document.getElementById('q247').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a247' style='display: none' ><b>+ </b>Finish on the top-most blue tile.
        </div>
        <div id='q248' style='display: none' onclick="document.getElementById('a248').style.display=''; document.getElementById('q249').style.display=''; document.getElementById('q248').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a248' style='display: none' ><b>+ </b>When you first go to the right, make sure you leave no green tiles except the top-most one.
        </div>
        <div id='q249' style='display: none' onclick="document.getElementById('a249').style.display=''; document.getElementById('q250').style.display=''; document.getElementById('q249').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a249' style='display: none' ><b>+ </b>Start with UR, D, UR, UR, D, UR
        </div>
        <div id='q250' style='display: none' onclick="document.getElementById('a250').style.display=''; document.getElementById('q251').style.display=''; document.getElementById('q250').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a250' style='display: none' ><b>+ </b>Then go the right-hand side and get all but the top-most green tile before going and collecting the anti-ice.
        </div>
        <div id='q251' style='display: none' onclick="document.getElementById('a251').style.display=''; document.getElementById('q252').style.display=''; document.getElementById('q251').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a251' style='display: none' ><b>+ </b>Then from the anti-ice tile, go DL, UL, UR, D
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Radioactive Ice</font>
</td><td valign="top" bgcolor=#847464><div id='q252'></div>

        <div id='q254' style='display: ' onclick="document.getElementById('a254').style.display=''; document.getElementById('q255').style.display=''; document.getElementById('q254').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a254' style='display: none' ><b>+ </b>You can get all the green tiles except the top-most and bottom-most ones without collecting any anti-ice.
        </div>
        <div id='q255' style='display: none' onclick="document.getElementById('a255').style.display=''; document.getElementById('q256').style.display=''; document.getElementById('q255').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a255' style='display: none' ><b>+ </b>You can start by destroying all the initial green tiles except the top and bottom ones - you will be left with all four blue tiles turned green.
        </div>
        <div id='q256' style='display: none' onclick="document.getElementById('a256').style.display=''; document.getElementById('q257').style.display=''; document.getElementById('q256').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a256' style='display: none' ><b>+ </b>You might not need to collect all the anti-ice.
        </div>
        <div id='q257' style='display: none' onclick="document.getElementById('a257').style.display=''; document.getElementById('q258').style.display=''; document.getElementById('q257').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a257' style='display: none' ><b>+ </b>You can get the two awkward green tiles by anti-icing one of the rightmost ice tiles, then sliding from there.
        </div>
        <div id='q258' style='display: none' onclick="document.getElementById('a258').style.display=''; document.getElementById('q259').style.display=''; document.getElementById('q258').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a258' style='display: none' ><b>+ </b>Use a trampoline to get to the rightmost column of ice. You'll need two anti-ice to do this.
        </div>
        <div id='q259' style='display: none' onclick="document.getElementById('a259').style.display=''; document.getElementById('q260').style.display=''; document.getElementById('q259').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a259' style='display: none' ><b>+ </b>Remember to leave an escape route to use after getting those outermost green tiles!
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Refraction</font>
</td><td valign="top" bgcolor=#948474><div id='q260'></div>

        <div id='q262' style='display: ' onclick="document.getElementById('a262').style.display=''; document.getElementById('q263').style.display=''; document.getElementById('q262').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a262' style='display: none' ><b>+ </b>The green wall and the right-most of the three green tiles at the top must both be shot with lasers.
        </div>
        <div id='q263' style='display: none' onclick="document.getElementById('a263').style.display=''; document.getElementById('q264').style.display=''; document.getElementById('q263').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a263' style='display: none' ><b>+ </b>Use refraction to destroy the right-most of the three green tiles at the top.
        </div>
        <div id='q264' style='display: none' onclick="document.getElementById('a264').style.display=''; document.getElementById('q265').style.display=''; document.getElementById('q264').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a264' style='display: none' ><b>+ </b>Don't destroy the bottom-most yellow tile.
        </div>
        <div id='q265' style='display: none' onclick="document.getElementById('a265').style.display=''; document.getElementById('q266').style.display=''; document.getElementById('q265').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a265' style='display: none' ><b>+ </b>Start by firing the first yellow tile up-right, then fire it down-right.
        </div>
        <div id='q266' style='display: none' onclick="document.getElementById('a266').style.display=''; document.getElementById('q267').style.display=''; document.getElementById('q266').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a266' style='display: none' ><b>+ </b>Fire the second yellow tile down-right, then down-left.
        </div>
        <div id='q267' style='display: none' onclick="document.getElementById('a267').style.display=''; document.getElementById('q268').style.display=''; document.getElementById('q267').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a267' style='display: none' ><b>+ </b>Finally, fire the bottom-most yellow tile upwards.
        </div>
        <div id='q268' style='display: none' onclick="document.getElementById('a268').style.display=''; document.getElementById('q269').style.display=''; document.getElementById('q268').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a268' style='display: none' ><b>+ </b>Move sequence: D, DR, UR, UL, DL, DL, UR, DL (blows up green wall)
        </div>
        <div id='q269' style='display: none' onclick="document.getElementById('a269').style.display=''; document.getElementById('q270').style.display=''; document.getElementById('q269').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a269' style='display: none' ><b>+ </b>Then: D, DR, UR, U, U, DR, D, D, D, DL, DR, DL, DL, DL, DL
        </div>
        <div id='q270' style='display: none' onclick="document.getElementById('a270').style.display=''; document.getElementById('q271').style.display=''; document.getElementById('q270').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a270' style='display: none' ><b>+ </b>Finally: DL, UL, UL, UR, DR, U
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Reversing Space</font>
</td><td valign="top" bgcolor=#847464><div id='q271'></div>

        <div id='q273' style='display: ' onclick="document.getElementById('a273').style.display=''; document.getElementById('q274').style.display=''; document.getElementById('q273').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a273' style='display: none' ><b>+ </b>Travel from left to right, doing one section at a time. Remember you don't need to break all the blue tiles.
        </div>
        <div id='q274' style='display: none' onclick="document.getElementById('a274').style.display=''; document.getElementById('q275').style.display=''; document.getElementById('q274').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a274' style='display: none' ><b>+ </b>Don't step on the builder when there are any green tiles next to it else they'll become walls.
        </div>
        <div id='q275' style='display: none' onclick="document.getElementById('a275').style.display=''; document.getElementById('q276').style.display=''; document.getElementById('q275').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a275' style='display: none' ><b>+ </b>Start with: U, U, D, U, UR, UR, U
        </div>
        <div id='q276' style='display: none' onclick="document.getElementById('a276').style.display=''; document.getElementById('q277').style.display=''; document.getElementById('q276').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a276' style='display: none' ><b>+ </b>First section (builder) is then: UL, DR, UL, UR, DL, DR, D, DR, DR, D
        </div>
        <div id='q277' style='display: none' onclick="document.getElementById('a277').style.display=''; document.getElementById('q278').style.display=''; document.getElementById('q277').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a277' style='display: none' ><b>+ </b>Second section (spinner) is then: DL, D, UR, UR, DL, UR, UL, U, UR, UR, U
        </div>
        <div id='q278' style='display: none' onclick="document.getElementById('a278').style.display=''; document.getElementById('q279').style.display=''; document.getElementById('q278').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a278' style='display: none' ><b>+ </b>Final section is then: UL, U, UR, D, UR, D, DL, D, DR, DR
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Rental Boat</font>
</td><td valign="top" bgcolor=#948474><div id='q279'></div>

        <div id='q281' style='display: ' onclick="document.getElementById('a281').style.display=''; document.getElementById('q282').style.display=''; document.getElementById('q281').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a281' style='display: none' ><b>+ </b>Roughly speaking, you need to move the boat up-left, then destroy all the green tiles and take the boat up-right.
        </div>
        <div id='q282' style='display: none' onclick="document.getElementById('a282').style.display=''; document.getElementById('q283').style.display=''; document.getElementById('q282').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a282' style='display: none' ><b>+ </b>To move the boat up-left, you start by taking it down-right.
        </div>
        <div id='q283' style='display: none' onclick="document.getElementById('a283').style.display=''; document.getElementById('q284').style.display=''; document.getElementById('q283').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a283' style='display: none' ><b>+ </b>To move the boat where you need it, go UR, DR, U, DR, D, DL, DR, DR, UL
        </div>
        <div id='q284' style='display: none' onclick="document.getElementById('a284').style.display=''; document.getElementById('q285').style.display=''; document.getElementById('q284').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a284' style='display: none' ><b>+ </b>From here, you can _almost_ finish the level by going D, D, UL, U, UR but that leaves you with no safe finishing move.
        </div>
        <div id='q285' style='display: none' onclick="document.getElementById('a285').style.display=''; document.getElementById('q286').style.display=''; document.getElementById('q285').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a285' style='display: none' ><b>+ </b>Maybe if you created somewhere to finish by jumping on the bottom-right-most builder tile.
        </div>
        <div id='q286' style='display: none' onclick="document.getElementById('a286').style.display=''; document.getElementById('q287').style.display=''; document.getElementById('q286').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a286' style='display: none' ><b>+ </b>After moving the boat up-left (and with Emi standing on the boat) go: D, DR, DR, DR, U, D
        </div>
        <div id='q287' style='display: none' onclick="document.getElementById('a287').style.display=''; document.getElementById('q288').style.display=''; document.getElementById('q287').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a287' style='display: none' ><b>+ </b>Then finish with UL, UL, DL, UL, U, UR (riding boat), UR, U, UL, D, D, D, D, DL
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Revolver Cannon</font>
</td><td valign="top" bgcolor=#847464><div id='q288'></div>

        <div id='q290' style='display: ' onclick="document.getElementById('a290').style.display=''; document.getElementById('q291').style.display=''; document.getElementById('q290').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a290' style='display: none' ><b>+ </b>If you can fire the bottom-right yellow tile upwards twice from the position above the right-hand spinner, you'll take out both the awkward green tiles.
        </div>
        <div id='q291' style='display: none' onclick="document.getElementById('a291').style.display=''; document.getElementById('q292').style.display=''; document.getElementById('q291').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a291' style='display: none' ><b>+ </b>Then you'd want to move that yellow tile to just up-left of the left-hand spinner and fire it upwards from there to destroy the last blue tile and make the blue wall retract.
        </div>
        <div id='q292' style='display: none' onclick="document.getElementById('a292').style.display=''; document.getElementById('q293').style.display=''; document.getElementById('q292').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a292' style='display: none' ><b>+ </b>Make sure you get rid of all the blue tiles as you do this.
        </div>
        <div id='q293' style='display: none' onclick="document.getElementById('a293').style.display=''; document.getElementById('q294').style.display=''; document.getElementById('q293').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a293' style='display: none' ><b>+ </b>Remember that if Emi's standing on a spinner, you can rotate it by stepping onto an adjacent yellow tile and then back again (as long as the laser won't destroy anything important at least!)
        </div>
        <div id='q294' style='display: none' onclick="document.getElementById('a294').style.display=''; document.getElementById('q295').style.display=''; document.getElementById('q294').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a294' style='display: none' ><b>+ </b>To start, go stand on the first blue tile then go to the right spinner: DR, DR, UR
        </div>
        <div id='q295' style='display: none' onclick="document.getElementById('a295').style.display=''; document.getElementById('q296').style.display=''; document.getElementById('q295').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a295' style='display: none' ><b>+ </b>Then spin the right spinner until you can fire upwards with DR, UL, D, U, D, U, D, U, U
        </div>
        <div id='q296' style='display: none' onclick="document.getElementById('a296').style.display=''; document.getElementById('q297').style.display=''; document.getElementById('q296').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a296' style='display: none' ><b>+ </b>To fire it again, you need to spin 6 times. D, UR, DL, DR, UL, D, U, UR, UL, D, D, U, U
        </div>
        <div id='q297' style='display: none' onclick="document.getElementById('a297').style.display=''; document.getElementById('q298').style.display=''; document.getElementById('q297').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a297' style='display: none' ><b>+ </b>Then rotate 4 times and move over to the left spinner: D, UR, DL, UR, DL, UL, DR, UL, DL
        </div>
        <div id='q298' style='display: none' onclick="document.getElementById('a298').style.display=''; document.getElementById('q299').style.display=''; document.getElementById('q298').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a298' style='display: none' ><b>+ </b>Rotate the left spinner twice more and then fire upwards: DL, U, UR, DR, DL, UL, UR, DR, DL, DL, U
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Rolling Hexagons</font>
</td><td valign="top" bgcolor=#948474><div id='q299'></div>

        <div id='q301' style='display: ' onclick="document.getElementById('a301').style.display=''; document.getElementById('q302').style.display=''; document.getElementById('q301').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a301' style='display: none' ><b>+ </b>Don't destroy both of the lower two blue tiles at the beginning.
        </div>
        <div id='q302' style='display: none' onclick="document.getElementById('a302').style.display=''; document.getElementById('q303').style.display=''; document.getElementById('q302').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a302' style='display: none' ><b>+ </b>After your second move, the two spinners will be in a vertical line. How can you move so that you make them into another vertical line one tile further up?
        </div>
        <div id='q303' style='display: none' onclick="document.getElementById('a303').style.display=''; document.getElementById('q304').style.display=''; document.getElementById('q303').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a303' style='display: none' ><b>+ </b>If you step on the top spinner 3 times (without stepping on the other spinner), you'll move the other spinner to touch the first of the three blue tiles.
        </div>
        <div id='q304' style='display: none' onclick="document.getElementById('a304').style.display=''; document.getElementById('q305').style.display=''; document.getElementById('q304').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a304' style='display: none' ><b>+ </b>From the start, step U, DR, U, DR, UL, D, U, U
        </div>
        <div id='q305' style='display: none' onclick="document.getElementById('a305').style.display=''; document.getElementById('q306').style.display=''; document.getElementById('q305').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a305' style='display: none' ><b>+ </b>Then UR, DL, DR, UL, U.
        </div>
        <div id='q306' style='display: none' onclick="document.getElementById('a306').style.display=''; document.getElementById('q307').style.display=''; document.getElementById('q306').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a306' style='display: none' ><b>+ </b>Then UR, DL, DR, UL, U.
        </div>
        <div id='q307' style='display: none' onclick="document.getElementById('a307').style.display=''; document.getElementById('q308').style.display=''; document.getElementById('q307').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a307' style='display: none' ><b>+ </b>Then UR, DL, DR, UL, U. for a third time
        </div>
        <div id='q308' style='display: none' onclick="document.getElementById('a308').style.display=''; document.getElementById('q309').style.display=''; document.getElementById('q308').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a308' style='display: none' ><b>+ </b>Finally: U, U, UR, UR, UR, DR, DR, D, D, DL, UL, UL, D, DR, DL, UL
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Route Finder</font>
</td><td valign="top" bgcolor=#847464><div id='q309'></div>

        <div id='q311' style='display: ' onclick="document.getElementById('a311').style.display=''; document.getElementById('q312').style.display=''; document.getElementById('q311').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a311' style='display: none' ><b>+ </b>You should finish on the right-hand blue wall. So you need to turn all the blue tiles green.
        </div>
        <div id='q312' style='display: none' onclick="document.getElementById('a312').style.display=''; document.getElementById('q313').style.display=''; document.getElementById('q312').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a312' style='display: none' ><b>+ </b>Try to break all the tiles except for the blue tile in between the two ice tiles (leave that green) while ending up on the bottom-right route (where the two blue walls start)
        </div>
        <div id='q313' style='display: none' onclick="document.getElementById('a313').style.display=''; document.getElementById('q314').style.display=''; document.getElementById('q313').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a313' style='display: none' ><b>+ </b>Start UL, DR, DR, UR, DL, UR, UR, D, D, U, D
        </div>
        <div id='q314' style='display: none' onclick="document.getElementById('a314').style.display=''; document.getElementById('q315').style.display=''; document.getElementById('q314').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a314' style='display: none' ><b>+ </b>Then DR, UR, U, UR, D, UL, UR (10 blue tiles remaining after this)
        </div>
        <div id='q315' style='display: none' onclick="document.getElementById('a315').style.display=''; document.getElementById('q316').style.display=''; document.getElementById('q315').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a315' style='display: none' ><b>+ </b>Then UR, UR, UL, U, U, UL, UR, DR, UR, DR, DL, D, D (8 blue tiles remaining)
        </div>
        <div id='q316' style='display: none' onclick="document.getElementById('a316').style.display=''; document.getElementById('q317').style.display=''; document.getElementById('q316').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a316' style='display: none' ><b>+ </b>Then DR, D, UL, DR, D, DL, UL, U, U, DL. Should be easy now!
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Somewhat Constructive</font>
</td><td valign="top" bgcolor=#948474><div id='q317'></div>

        <div id='q319' style='display: ' onclick="document.getElementById('a319').style.display=''; document.getElementById('q320').style.display=''; document.getElementById('q319').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a319' style='display: none' ><b>+ </b>Don't let the builder tiles build any walls. Don't leave green tiles behind.
        </div>
        <div id='q320' style='display: none' onclick="document.getElementById('a320').style.display=''; document.getElementById('q321').style.display=''; document.getElementById('q320').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a320' style='display: none' ><b>+ </b>After stepping on the first builder, go: DL, U, UR, DR, D, UR to get to the second builder.
        </div>
        <div id='q321' style='display: none' onclick="document.getElementById('a321').style.display=''; document.getElementById('q322').style.display=''; document.getElementById('q321').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a321' style='display: none' ><b>+ </b>Then go: UL, D, DR, UR, D to get to the last builder (there's no point stepping onto the right-most builder tile.)
        </div>
        <div id='q322' style='display: none' onclick="document.getElementById('a322').style.display=''; document.getElementById('q323').style.display=''; document.getElementById('q322').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a322' style='display: none' ><b>+ </b>In the bottom right corner, a lot of possible moves leave in unsolvable (by making in impossible to leave that area.) If you avoid those moves, it's easy :-)
        </div>
        <div id='q323' style='display: none' onclick="document.getElementById('a323').style.display=''; document.getElementById('q324').style.display=''; document.getElementById('q323').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a323' style='display: none' ><b>+ </b>After stepping on the first lift, go: UR, DR, UR, UR, DL, DR, UL, DL, DR, UL.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Sprocket</font>
</td><td valign="top" bgcolor=#847464><div id='q324'></div>

        <div id='q326' style='display: ' onclick="document.getElementById('a326').style.display=''; document.getElementById('q327').style.display=''; document.getElementById('q326').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a326' style='display: none' ><b>+ </b>You want all the green walls to end up together near the middle.
        </div>
        <div id='q327' style='display: none' onclick="document.getElementById('a327').style.display=''; document.getElementById('q328').style.display=''; document.getElementById('q327').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a327' style='display: none' ><b>+ </b>Start with: DR, UR, DR, DR, DR, UL, DR, UL, DR, UL, DR, UL, DR, UL, U (now standing on left-hand spinner)
        </div>
        <div id='q328' style='display: none' onclick="document.getElementById('a328').style.display=''; document.getElementById('q329').style.display=''; document.getElementById('q328').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a328' style='display: none' ><b>+ </b>Then: U, U, UR, DR, DR, UL, D, UR (now standing on the top-right spinner)
        </div>
        <div id='q329' style='display: none' onclick="document.getElementById('a329').style.display=''; document.getElementById('q330').style.display=''; document.getElementById('q329').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a329' style='display: none' ><b>+ </b>Then: DR, DR, D, DL, UL, D (the green walls now retract)
        </div>
        <div id='q330' style='display: none' onclick="document.getElementById('a330').style.display=''; document.getElementById('q331').style.display=''; document.getElementById('q330').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a330' style='display: none' ><b>+ </b>Finally: D, UL, UL, UR, U, UL, UR, DR, DR
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Stripes</font>
</td><td valign="top" bgcolor=#948474><div id='q331'></div>

        <div id='q333' style='display: ' onclick="document.getElementById('a333').style.display=''; document.getElementById('q334').style.display=''; document.getElementById('q333').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a333' style='display: none' ><b>+ </b>First you need to break all the green tiles and all the blue tiles except the bottom-right-most one.
        </div>
        <div id='q334' style='display: none' onclick="document.getElementById('a334').style.display=''; document.getElementById('q335').style.display=''; document.getElementById('q334').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a334' style='display: none' ><b>+ </b>Try turning all the blue tiles green first (expect the one in the bottom-right corner.)
        </div>
        <div id='q335' style='display: none' onclick="document.getElementById('a335').style.display=''; document.getElementById('q336').style.display=''; document.getElementById('q335').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a335' style='display: none' ><b>+ </b>For example, you could start with: Up*5, Up-right, Down-right, Down*5, Up-right*2, Up*4, Up-right, Down*4, Up-left. This should leave you with an fairly easy green tile problem.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Switch</font>
</td><td valign="top" bgcolor=#847464><div id='q336'></div>

        <div id='q338' style='display: ' onclick="document.getElementById('a338').style.display=''; document.getElementById('q339').style.display=''; document.getElementById('q338').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a338' style='display: none' ><b>+ </b>Leave the 6 green tiles at the top until you can shoot the yellow tile in the middle of them.
        </div>
        <div id='q339' style='display: none' onclick="document.getElementById('a339').style.display=''; document.getElementById('q340').style.display=''; document.getElementById('q339').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a339' style='display: none' ><b>+ </b>The last thing to do is use the trampoline in the bottom-right corner to arrive on the green walls once they retract.
        </div>
        <div id='q340' style='display: none' onclick="document.getElementById('a340').style.display=''; document.getElementById('q341').style.display=''; document.getElementById('q340').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a340' style='display: none' ><b>+ </b>You need to step on the spinner twice at the beginning of the level to leave the trampolines in the right place.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Three More Ways</font>
</td><td valign="top" bgcolor=#948474><div id='q341'></div>

        <div id='q343' style='display: ' onclick="document.getElementById('a343').style.display=''; document.getElementById('q344').style.display=''; document.getElementById('q343').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a343' style='display: none' ><b>+ </b>Leave the top part till last.
        </div>
        <div id='q344' style='display: none' onclick="document.getElementById('a344').style.display=''; document.getElementById('q345').style.display=''; document.getElementById('q344').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a344' style='display: none' ><b>+ </b>To complete the bottom-left part, go DL, DL, UL, D, DL, U, DR, DL, UR, UR
        </div>
        <div id='q345' style='display: none' onclick="document.getElementById('a345').style.display=''; document.getElementById('q346').style.display=''; document.getElementById('q345').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a345' style='display: none' ><b>+ </b>To complete the bottom-right part, you need to move the bottom-right trampoline to be adjacent to the trampoline you use to enter the bottom-right part. I.e. rotate the bottom-right spinner twice, then the other spinner 3 times.
        </div>
        <div id='q346' style='display: none' onclick="document.getElementById('a346').style.display=''; document.getElementById('q347').style.display=''; document.getElementById('q346').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a346' style='display: none' ><b>+ </b>From the centre, to complete the bottom-right part, go DR, DR, UR, DR, D, UL, UL, DR, UL, DL, UR, DR, DL, U, UL
        </div>
        <div id='q347' style='display: none' onclick="document.getElementById('a347').style.display=''; document.getElementById('q348').style.display=''; document.getElementById('q347').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a347' style='display: none' ><b>+ </b>For the top part, you want to step on the top spinner once so there's a trampoline beneath it, then use that trampoline to jump over the spinner.
        </div>
        <div id='q348' style='display: none' onclick="document.getElementById('a348').style.display=''; document.getElementById('q349').style.display=''; document.getElementById('q348').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a348' style='display: none' ><b>+ </b>Moves: U, U, U, DR, U, UR, DR, D, DL, U
        </div>
        <div id='q349' style='display: none' onclick="document.getElementById('a349').style.display=''; document.getElementById('q350').style.display=''; document.getElementById('q349').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a349' style='display: none' ><b>+ </b>Then from here (the tile above the top spinner) go: D, DL, UL, U, UR, DL
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Trampoline Retrieval</font>
</td><td valign="top" bgcolor=#847464><div id='q350'></div>

        <div id='q352' style='display: ' onclick="document.getElementById('a352').style.display=''; document.getElementById('q353').style.display=''; document.getElementById('q352').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a352' style='display: none' ><b>+ </b>You need to fetch a trampoline.
        </div>
        <div id='q353' style='display: none' onclick="document.getElementById('a353').style.display=''; document.getElementById('q354').style.display=''; document.getElementById('q353').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a353' style='display: none' ><b>+ </b>The green tiles on the right are seperate; you can leave them till you've managed to get a trampoline where you need it.
        </div>
        <div id='q354' style='display: none' onclick="document.getElementById('a354').style.display=''; document.getElementById('q355').style.display=''; document.getElementById('q354').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a354' style='display: none' ><b>+ </b>You need to get a trampoline onto the tile down-right of the right-hand spinner.
        </div>
        <div id='q355' style='display: none' onclick="document.getElementById('a355').style.display=''; document.getElementById('q356').style.display=''; document.getElementById('q355').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a355' style='display: none' ><b>+ </b>There aren't that many permutations of possible moves involving just the left-hand boat, the trampolines and the spinners.
        </div>
        <div id='q356' style='display: none' onclick="document.getElementById('a356').style.display=''; document.getElementById('q357').style.display=''; document.getElementById('q356').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a356' style='display: none' ><b>+ </b>Start by taking the left-hand boat down-left, then stepping on the first spinner four times, so the boat is up-left of the right-hand spinner.
        </div>
        <div id='q357' style='display: none' onclick="document.getElementById('a357').style.display=''; document.getElementById('q358').style.display=''; document.getElementById('q357').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a357' style='display: none' ><b>+ </b>Then starting from standing on the boat go DL, DR, U, UR. Then you should be able to spin the right-hand spinner until the trampoline is where it needs to be.
        </div>
        <div id='q358' style='display: none' onclick="document.getElementById('a358').style.display=''; document.getElementById('q359').style.display=''; document.getElementById('q358').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a358' style='display: none' ><b>+ </b>Now you can go and get all the green tiles at the right - take the boat up-right, then get all the top group before riding the boat downwards. Finish off the bottom group of green tiles.
        </div>
        <div id='q359' style='display: none' onclick="document.getElementById('a359').style.display=''; document.getElementById('q360').style.display=''; document.getElementById('q359').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a359' style='display: none' ><b>+ </b>Finally, use the lift to get onto the blue walls from where you can bounce northwards and get the last group of green tiles.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Trampolines</font>
</td><td valign="top" bgcolor=#948474><div id='q360'></div>

        <div id='q362' style='display: ' onclick="document.getElementById('a362').style.display=''; document.getElementById('q363').style.display=''; document.getElementById('q362').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a362' style='display: none' ><b>+ </b>Don't leave any green tiles behind. Remember to use undo (right mouse button or 'Z' on keyboard) if you make mistakes.
        </div>
        <div id='q363' style='display: none' onclick="document.getElementById('a363').style.display=''; document.getElementById('q364').style.display=''; document.getElementById('q363').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a363' style='display: none' ><b>+ </b>Start by bouncing downwards off the first trampoline, then go down once more then up-right.
        </div>
        <div id='q364' style='display: none' onclick="document.getElementById('a364').style.display=''; document.getElementById('q365').style.display=''; document.getElementById('q364').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a364' style='display: none' ><b>+ </b>Demolish the remaining 6 green tiles in this section before taking the next trampoline down-left.
        </div>
        <div id='q365' style='display: none' onclick="document.getElementById('a365').style.display=''; document.getElementById('q366').style.display=''; document.getElementById('q365').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a365' style='display: none' ><b>+ </b>Then bounce up-left from the bottom-right most trampoline.
        </div>
        <div id='q366' style='display: none' onclick="document.getElementById('a366').style.display=''; document.getElementById('q367').style.display=''; document.getElementById('q366').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a366' style='display: none' ><b>+ </b>Then bounce downwards.
        </div>
        <div id='q367' style='display: none' onclick="document.getElementById('a367').style.display=''; document.getElementById('q368').style.display=''; document.getElementById('q367').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a367' style='display: none' ><b>+ </b>Then UR, U, UL, UL to arrive it the top-left section after taking out the remaing 3 green tiles in the middle..
        </div>
        <div id='q368' style='display: none' onclick="document.getElementById('a368').style.display=''; document.getElementById('q369').style.display=''; document.getElementById('q368').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a368' style='display: none' ><b>+ </b>Finally, go UR, DL, UL (so the wall stops you drowing on your last move)
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Transport Hub</font>
</td><td valign="top" bgcolor=#847464><div id='q369'></div>

        <div id='q371' style='display: ' onclick="document.getElementById('a371').style.display=''; document.getElementById('q372').style.display=''; document.getElementById('q371').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a371' style='display: none' ><b>+ </b>The blue tiles can be ignored.
        </div>
        <div id='q372' style='display: none' onclick="document.getElementById('a372').style.display=''; document.getElementById('q373').style.display=''; document.getElementById('q372').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a372' style='display: none' ><b>+ </b>Go for two lonely green tiles first.
        </div>
        <div id='q373' style='display: none' onclick="document.getElementById('a373').style.display=''; document.getElementById('q374').style.display=''; document.getElementById('q373').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a373' style='display: none' ><b>+ </b>Start with DL, DL, UR, U, U, D, DR (get the top-most green tile)
        </div>
        <div id='q374' style='display: none' onclick="document.getElementById('a374').style.display=''; document.getElementById('q375').style.display=''; document.getElementById('q374').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a374' style='display: none' ><b>+ </b>Consider how to get to the right-most green tiles.
        </div>
        <div id='q375' style='display: none' onclick="document.getElementById('a375').style.display=''; document.getElementById('q376').style.display=''; document.getElementById('q375').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a375' style='display: none' ><b>+ </b>If you could take a boat down-right from the tile below where you start...
        </div>
        <div id='q376' style='display: none' onclick="document.getElementById('a376').style.display=''; document.getElementById('q377').style.display=''; document.getElementById('q376').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a376' style='display: none' ><b>+ </b>Take the left-most boat up-right, then down-right
        </div>
        <div id='q377' style='display: none' onclick="document.getElementById('a377').style.display=''; document.getElementById('q378').style.display=''; document.getElementById('q377').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a377' style='display: none' ><b>+ </b>If you're having trouble with that, remember you could leave one of the left-hand set of green tiles unbroken.
        </div>
        <div id='q378' style='display: none' onclick="document.getElementById('a378').style.display=''; document.getElementById('q379').style.display=''; document.getElementById('q378').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a378' style='display: none' ><b>+ </b>Next moves are: UR, D, D, U, UL (get the bottom-most green tile)
        </div>
        <div id='q379' style='display: none' onclick="document.getElementById('a379').style.display=''; document.getElementById('q380').style.display=''; document.getElementById('q379').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a379' style='display: none' ><b>+ </b>Then: UL, UL, UL, D, D, D, D, D, D, DR, UR, UL, UR (now on a boat just below the grey tile)
        </div>
        <div id='q380' style='display: none' onclick="document.getElementById('a380').style.display=''; document.getElementById('q381').style.display=''; document.getElementById('q380').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a380' style='display: none' ><b>+ </b>Finally: UL, UL, DR, DR, DR, U, UL, U, U, U, UL, DL, DL
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Trigger Happy</font>
</td><td valign="top" bgcolor=#948474><div id='q381'></div>

        <div id='q383' style='display: ' onclick="document.getElementById('a383').style.display=''; document.getElementById('q384').style.display=''; document.getElementById('q383').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a383' style='display: none' ><b>+ </b>You destroy the three green walls at the right by shooting the yellow tile adjacent to them.
        </div>
        <div id='q384' style='display: none' onclick="document.getElementById('a384').style.display=''; document.getElementById('q385').style.display=''; document.getElementById('q384').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a384' style='display: none' ><b>+ </b>You fire a laser down-right to do this.
        </div>
        <div id='q385' style='display: none' onclick="document.getElementById('a385').style.display=''; document.getElementById('q386').style.display=''; document.getElementById('q385').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a385' style='display: none' ><b>+ </b>But you can only fire that laser twice.
        </div>
        <div id='q386' style='display: none' onclick="document.getElementById('a386').style.display=''; document.getElementById('q387').style.display=''; document.getElementById('q386').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a386' style='display: none' ><b>+ </b>So shoot out a grey tile by firing the laser in the middle upwards.
        </div>
        <div id='q387' style='display: none' onclick="document.getElementById('a387').style.display=''; document.getElementById('q388').style.display=''; document.getElementById('q387').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a387' style='display: none' ><b>+ </b>Inital moves are: UL, U, UL, U, UR, U, UL, U, UL
        </div>
        <div id='q388' style='display: none' onclick="document.getElementById('a388').style.display=''; document.getElementById('q389').style.display=''; document.getElementById('q388').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a388' style='display: none' ><b>+ </b>Then take out all the green tiles and fire a laser upwards from the bottom-centre yellow tiles to destroy a grey tile.
        </div>
        <div id='q389' style='display: none' onclick="document.getElementById('a389').style.display=''; document.getElementById('q390').style.display=''; document.getElementById('q389').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a389' style='display: none' ><b>+ </b>Then trample the blue tile in the bottom left and the attached 7 green tiles (used to be green walls)
        </div>
        <div id='q390' style='display: none' onclick="document.getElementById('a390').style.display=''; document.getElementById('q391').style.display=''; document.getElementById('q390').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a390' style='display: none' ><b>+ </b>Then fire the laser near the top of the level down-right twice to take out the left-overs from near the beginning.
        </div>
        <div id='q391' style='display: none' onclick="document.getElementById('a391').style.display=''; document.getElementById('q392').style.display=''; document.getElementById('q391').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a391' style='display: none' ><b>+ </b>Move sequence for last section (after breaking the bottom-left blue tile and attached greens), stand on top-left grey tile then go: UR, DR, U, UR, DL, UR, DR, U, DR (fire), UL, DR (fire), UR, UL
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Turtle</font>
</td><td valign="top" bgcolor=#847464><div id='q392'></div>

        <div id='q394' style='display: ' onclick="document.getElementById('a394').style.display=''; document.getElementById('q395').style.display=''; document.getElementById('q394').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a394' style='display: none' ><b>+ </b>Try to go around anti-clockwise, getting the four "legs" as you go. Leave the "head" till last.
        </div>
        <div id='q395' style='display: none' onclick="document.getElementById('a395').style.display=''; document.getElementById('q396').style.display=''; document.getElementById('q395').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a395' style='display: none' ><b>+ </b>Get all the legs except the first one by jumping onto the extremity from the nearest trampoline.
        </div>
        <div id='q396' style='display: none' onclick="document.getElementById('a396').style.display=''; document.getElementById('q397').style.display=''; document.getElementById('q396').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a396' style='display: none' ><b>+ </b>Get the head by jumping upwards on the middle column of trampolines and finish on the blue "head" tile. This is quite a hard level, so experiment a bit before reading more hints.
        </div>
        <div id='q397' style='display: none' onclick="document.getElementById('a397').style.display=''; document.getElementById('q398').style.display=''; document.getElementById('q397').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a397' style='display: none' ><b>+ </b>Move sequence (there are variations on this which work, too): UL, DR, UL, U, U, DL, UL, UR (Now on top-right leg)
        </div>
        <div id='q398' style='display: none' onclick="document.getElementById('a398').style.display=''; document.getElementById('q399').style.display=''; document.getElementById('q398').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a398' style='display: none' ><b>+ </b>Then: DL, UL, DL, U, UL, DL, DL, DR, DR, DL, UL (Now on top-left leg)
        </div>
        <div id='q399' style='display: none' onclick="document.getElementById('a399').style.display=''; document.getElementById('q400').style.display=''; document.getElementById('q399').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a399' style='display: none' ><b>+ </b>Then: DR, D, D, UR, DR, DL (Now on bottom-left leg)
        </div>
        <div id='q400' style='display: none' onclick="document.getElementById('a400').style.display=''; document.getElementById('q401').style.display=''; document.getElementById('q400').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a400' style='display: none' ><b>+ </b>Finally: UR, DR, DR, U, UR, UR, D, DR, DL, DL, U, U (Done!)
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Two Fish</font>
</td><td valign="top" bgcolor=#948474><div id='q401'></div>

        <div id='q403' style='display: ' onclick="document.getElementById('a403').style.display=''; document.getElementById('q404').style.display=''; document.getElementById('q403').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a403' style='display: none' ><b>+ </b>Break all the raised green tiles before jumping down. (You can't break all the blue tiles, so there's no way to lower the raised blue tiles.)
        </div>
        <div id='q404' style='display: none' onclick="document.getElementById('a404').style.display=''; document.getElementById('q405').style.display=''; document.getElementById('q404').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a404' style='display: none' ><b>+ </b>This level should be fairly easy. If you're having problems, try playing the level "Stripes" again.
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#847464>
    <font size="h4" >Wand</font>
</td><td valign="top" bgcolor=#847464><div id='q405'></div>

        <div id='q407' style='display: ' onclick="document.getElementById('a407').style.display=''; document.getElementById('q408').style.display=''; document.getElementById('q407').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a407' style='display: none' ><b>+ </b>You don't need to break all the blue tiles.
        </div>
        <div id='q408' style='display: none' onclick="document.getElementById('a408').style.display=''; document.getElementById('q409').style.display=''; document.getElementById('q408').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a408' style='display: none' ><b>+ </b>Get the left-most green tile last. (Not counting the green wall)
        </div>
        <div id='q409' style='display: none' onclick="document.getElementById('a409').style.display=''; document.getElementById('q410').style.display=''; document.getElementById('q409').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a409' style='display: none' ><b>+ </b>Get the right-most green tile second to last.
        </div>
        <div id='q410' style='display: none' onclick="document.getElementById('a410').style.display=''; document.getElementById('q411').style.display=''; document.getElementById('q410').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a410' style='display: none' ><b>+ </b>First follow one of the blue paths, breaking it completely as you go.
        </div>
        <div id='q411' style='display: none' onclick="document.getElementById('a411').style.display=''; document.getElementById('q412').style.display=''; document.getElementById('q411').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a411' style='display: none' ><b>+ </b>Move list: Start with: DR, DR, UL, DR, DR, UR, DL, UR, U, U, D, UL, U, U, DL, DR
        </div>
        <div id='q412' style='display: none' onclick="document.getElementById('a412').style.display=''; document.getElementById('q413').style.display=''; document.getElementById('q412').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a412' style='display: none' ><b>+ </b>Then finish with: UR, DL, DL, D, UL, UL
        </div>
</td></tr>
<tr><td valign="top" bgcolor=#948474>
    <font size="h4" >Wave Cannon</font>
</td><td valign="top" bgcolor=#948474><div id='q413'></div>

        <div id='q415' style='display: ' onclick="document.getElementById('a415').style.display=''; document.getElementById('q416').style.display=''; document.getElementById('q415').style.display='none';"><u><i>Click here to view a hint</u></i>
        </div>
        <div id='a415' style='display: none' ><b>+ </b>If you had enough jump pickups, you could stand on the spinner, and keep firing lasers upwards to take out the green tiles in the top-left corner.
        </div>
        <div id='q416' style='display: none' onclick="document.getElementById('a416').style.display=''; document.getElementById('q417').style.display=''; document.getElementById('q416').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a416' style='display: none' ><b>+ </b>Go round the blue tile area clockwise, finishing by bouncing down-left off the trampoline. You want to make a profit of 3 jumps, and leave no green tiles behind.
        </div>
        <div id='q417' style='display: none' onclick="document.getElementById('a417').style.display=''; document.getElementById('q418').style.display=''; document.getElementById('q417').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a417' style='display: none' ><b>+ </b>Remember that a dead-end string of blue tiles can be cleared by jumping on the end tile then reversing direction.
        </div>
        <div id='q418' style='display: none' onclick="document.getElementById('a418').style.display=''; document.getElementById('q419').style.display=''; document.getElementById('q418').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a418' style='display: none' ><b>+ </b>After landing next to the spinner (with 3 jumps in hand), going: DL, jump, U, D, jump, U, D, jump, U should finish the level.
        </div>
        <div id='q419' style='display: none' onclick="document.getElementById('a419').style.display=''; document.getElementById('q420').style.display=''; document.getElementById('q419').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a419' style='display: none' ><b>+ </b>Solution: Start with UR, DR, UR, DR, UR, UR, DL, UR
        </div>
        <div id='q420' style='display: none' onclick="document.getElementById('a420').style.display=''; document.getElementById('q421').style.display=''; document.getElementById('q420').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a420' style='display: none' ><b>+ </b>Then: UR, UR, D, UL, DR, U, UR, U, UR, DR, jump, UL, DL, D, DR
        </div>
        <div id='q421' style='display: none' onclick="document.getElementById('a421').style.display=''; document.getElementById('q422').style.display=''; document.getElementById('q421').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a421' style='display: none' ><b>+ </b>Then: D, U, D, DR, D, U, D, D, DR, UL, DR, D, D, UL, UR, D, UL, UL
        </div>
        <div id='q422' style='display: none' onclick="document.getElementById('a422').style.display=''; document.getElementById('q423').style.display=''; document.getElementById('q422').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a422' style='display: none' ><b>+ </b>Then: DL, UR, DL, UL, U, U, DR, UL, DR, DL, DL, DR
        </div>
        <div id='q423' style='display: none' onclick="document.getElementById('a423').style.display=''; document.getElementById('q424').style.display=''; document.getElementById('q423').style.display='none';"><u><i>Another hint...</u></i>
        </div>
        <div id='a423' style='display: none' ><b>+ </b>Finally: UL, UL, UL, DR, UL, U, DL, then you're in position to fire those lasers.
        </div><div id='q424'></div>

</td></tr>

</table>

<p><a href="http://hexahop.sourceforge.net/">Hex-a-hop homepage</a>