-
Notifications
You must be signed in to change notification settings - Fork 0
/
a001_chapter_2_activity1_label_map.html
1700 lines (1452 loc) · 60.7 KB
/
a001_chapter_2_activity1_label_map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<!--GENERATED BY: Lectora Inspire v.11.2a(9020) (http://www.trivantis.com) -->
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="viewport" content="width=1009" />
<title>Activity1-Label Map</title>
<link rel="stylesheet" href="trivantis.css" type="text/css" />
<style text="text/css">
body { background-color:#ffffff; }
span.text1284Font1 { font-size:21px; font-family:"Arial", sans-serif; color:#ffffff; font-weight:bold;}
span.text1284Font2 { font-size:13px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text5807Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#000000;}
span.text5807Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text5812Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#000000;}
span.text6147Font1 { font-size:24px; font-family:"Arial", sans-serif; color:#597eaa; font-weight:bold;}
span.text6147Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#597eaa;}
span.text3748Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#eddea2; font-weight:bold;}
span.text3748Font2 { font-size:16px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text3733Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text4981Font1 { font-size:13px; font-family:"Arial", sans-serif; color:#000000;}
span.text4981Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text4922Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#000000;}
span.text4922Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text3421Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text4717Font0 { font-size:19px; font-family:"Arial", sans-serif; color:#000000;}
span.text4717Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text4823Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#ffffff;}
span.text4823Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#ffffff;}
span.text3389Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text3389Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text4893Font1 { font-size:13px; font-family:"Arial", sans-serif; color:#ffffff;}
span.text4893Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#ffffff;}
span.text5761Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#010101;}
span.text8754Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#010101;}
span.text5796Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#000000;}
span.text5796Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text3724Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text3701Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text2820Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text2813Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text2797Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text2748Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text2711Font1 { font-size:21px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text2711Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
</style>
<!--[if lt IE 7]>
<style text="text/css">
#image9224 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image9224 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/open_book_large_t.png',sizingMethod='scale'); }
#image648 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image648 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape006_647.png',sizingMethod='scale'); }
#image701 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image701 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape007_700.png',sizingMethod='scale'); }
#image6049 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6049 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape004_6048.png',sizingMethod='scale'); }
#image6100 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6100 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape020_6099.png',sizingMethod='scale'); }
#image2873 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image2873 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image4778 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4778 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/compass_rose.png',sizingMethod='scale'); }
#image4805 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4805 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape012_4804.png',sizingMethod='scale'); }
#image4864 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4864 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape013_4863.png',sizingMethod='scale'); }
#image5031 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image5031 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape017_5030.png',sizingMethod='scale'); }
#image4998 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4998 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape014_4997.png',sizingMethod='scale'); }
#image4586 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4586 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape011_1_5552.png',sizingMethod='scale'); }
#image4617 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4617 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape011_4585.png',sizingMethod='scale'); }
#image3223 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image3223 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape010_3222.png',sizingMethod='scale'); }
#image5009 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image5009 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape015_5008.png',sizingMethod='scale'); }
#image5020 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image5020 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape016_5019.png',sizingMethod='scale'); }
#image3125 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image3125 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape009_3124.png',sizingMethod='scale'); }
#image130 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image130 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape002_129.png',sizingMethod='scale'); }
#image205 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image205 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape003_1_1_218.png',sizingMethod='scale'); }
#image55 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image55 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape001_54.png',sizingMethod='scale'); }
#image1112 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image1112 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/mekorot-logo.png',sizingMethod='scale'); }
#image2004 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image2004 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape008_2_2089.png',sizingMethod='scale'); }
#image2011 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image2011 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape008_1_2084.png',sizingMethod='scale'); }
#image2027 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image2027 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape008_3_2094.png',sizingMethod='scale'); }
#image2019 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image2019 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape008_2003.png',sizingMethod='scale'); }
#image2913 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image2913 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image2923 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image2923 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image4259 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4259 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image4269 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4269 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image4279 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4279 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image4289 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4289 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image4299 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image4299 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image5558 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image5558 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape018_5557.png',sizingMethod='scale'); }
#image5577 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image5577 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape019_5576.png',sizingMethod='scale'); }
</style>
<![endif]-->
<script language = "JavaScript" src="trivantis.js"></script>
<script language = "JavaScript" src="trivantis-timedate.js"></script>
<script language = "JavaScript" src="trivantis-cookie.js"></script>
<script language = "JavaScript" src="trivantis-button.js"></script>
<script language = "JavaScript" src="trivantis-image.js"></script>
<script language = "JavaScript" src="trivantis-inline.js"></script>
<script language = "JavaScript">
<!--
trivWeb20Popups = true;
if( !is.min )
document.write( 'Your browser does not support dynamic html. Please download a current version of either <a href="http://www.microsoft.com/ie/">Microsoft Internet Explorer</a> or <a href="http://www.mozilla.com/en-US/firefox/">Mozilla Firefox </a> and try visiting our site again. Thank You.<br /><br />' )
var pageLayer = null
var winW = screen.width
var winH = screen.height
function findWH(){
if (navigator.appVersion.indexOf('MSIE 8')!=-1 || navigator.appVersion.indexOf('MSIE 7')!=-1) {
winW = document.documentElement.clientWidth-16;
winH = document.documentElement.clientHeight;
}
else
{
winW = (window.innerWidth)? window.innerWidth-16 : document.body.offsetWidth-20
winH = (window.innerHeight)? window.innerHeight : document.body.offsetHeight
}
}
function ReFlow() {
}
VarPageInTitle = new Variable( 'VarPageInTitle', null, 0, 0, null, null, 'template_joshua' )
VarPageInTitle.set( '6' )
VarCurrentChapterName = new Variable( 'VarCurrentChapterName', null, 0, 0, null, null, 'template_joshua' )
VarCurrentChapterName.set( 'Chapter 2' )
VarCurrentSectionName = new Variable( 'VarCurrentSectionName', null, 0, 0, null, null, 'template_joshua' )
VarCurrentSectionName.set( null )
VarCurrentPageName = new Variable( 'VarCurrentPageName', null, 0, 0, null, null, 'template_joshua' )
VarCurrentPageName.set( 'Activity1-Label Map' )
Varhotspot1 = new Variable( 'Varhotspot1', '0', 0, 0, null, null, 'template_joshua', false )
Varhotspot2 = new Variable( 'Varhotspot2', '0', 0, 0, null, null, 'template_joshua', false )
onload = init
if( is.webkit )
onbeforeunload = finish
else
onunload = finish
function init() {
findWH()
if( is.min ){
setTimeout( "preload( 'images/shape001_54.png','images/shape002_129.png','images/shape003_1_1_218.png','images/shape006_647.png','images/shape007_700.png','images/mekorot-logo.png','images/image_1192.jpg','images/compass_rose.png','images/shape008_2003.png','images/shape008_1_2084.png','images/shape008_2_2089.png','images/shape008_3_2094.png','images/checkmark.png','images/shape009_3124.png','images/shape010_3222.png','images/circle_yellow_over.png','images/circle_yellow_click.png','images/circle_yellow.png','images/shape011_4585.png','images/shape012_4804.png','images/shape013_4863.png','images/shape014_4997.png','images/shape015_5008.png','images/shape016_5019.png','images/shape017_5030.png','images/shape011_1_5552.png','images/shape018_5557.png','images/shape019_5576.png','images/outline_home_over.png','images/outline_home_click.png','images/outline_home.png','images/black_ultra_help_over.png','images/black_ultra_help_click.png','images/black_ultra_help.png','images/shape004_6048.png','images/shape020_6099.png','images/open_book_large_t.png','images/text3421_1.gif','images/text3421_2.gif','images/text3421_3.gif','images/text3421_4.gif','images/text3421_5.gif','images/text3421_6.gif','images/text3421_7.gif','images/text3421_8.gif' )", 0 )
pageLayer = new ObjLayer( 'pageDIV' );
ReFlow();
pageLayer.show();
image9224.init()
button5708.init()
button5727.init()
text1284.init()
image648.init()
image701.init()
text5807.init()
text5812.init()
image6049.init()
image6100.init()
text6147.init()
button3251.init()
image2873.init()
text3748.init()
text3733.init()
image4778.init()
text4981.init()
text4922.init()
text3421.init()
text4717.init()
image4805.init()
text4823.init()
text3389.init()
image4864.init()
text4893.init()
image5031.init()
image4998.init()
image4586.init()
image4617.init()
image3223.init()
image5009.init()
image5020.init()
image3125.init()
image130.init()
image205.init()
image55.init()
image1112.init()
image2004.init()
image2011.init()
text5761.init()
text8754.init()
text5796.init()
image2027.init()
image2019.init()
og6245.init()
audio7528.init()
og5246.init()
button3801.init()
button3925.init()
button3930.init()
button3935.init()
button3940.init()
button3945.init()
button3950.init()
button4218.init()
image2913.init()
image2923.init()
image4259.init()
image4269.init()
image4279.init()
image4289.init()
image4299.init()
text3724.init()
text3701.init()
text2820.init()
text2813.init()
text2797.init()
text2748.init()
text2711.init()
image2684.init()
og4848.init()
og4913.init()
image5558.init()
image5577.init()
image9224.activate()
button5708.activate()
button5727.activate()
text1284.activate()
image648.activate()
image701.activate()
text5807.activate()
text5812.activate()
image6049.activate()
image6100.activate()
text6147.activate()
button3251.activate()
image2873.activate()
text3748.activate()
text3733.activate()
image4778.activate()
text4981.activate()
text4922.activate()
text3421.activate()
text4717.activate()
image4805.activate()
text4823.activate()
text3389.activate()
image4864.activate()
text4893.activate()
image5031.activate()
image4998.activate()
image4586.activate()
image4617.activate()
image3223.activate()
image5009.activate()
image5020.activate()
image3125.activate()
image130.activate()
image205.activate()
image55.activate()
image1112.activate()
image2004.activate()
image2011.activate()
text5761.activate()
text8754.activate()
text5796.activate()
image2027.activate()
image2019.activate()
og6245.activate()
audio7528.activate()
og5246.activate()
button3801.activate()
button3925.activate()
button3930.activate()
button3935.activate()
button3940.activate()
button3945.activate()
button3950.activate()
button4218.activate()
image2913.activate()
image2923.activate()
image4259.activate()
image4269.activate()
image4279.activate()
image4289.activate()
image4299.activate()
text3724.activate()
text3701.activate()
text2820.activate()
text2813.activate()
text2797.activate()
text2748.activate()
text2711.activate()
image2684.activate()
og4848.activate()
og4913.activate()
image5558.activate()
image5577.activate()
action1285();action1286();action1287();action1288();action6169();action6197();
if( location.hash )
{
var newHash
if( location.hash.charAt(0) == '#' )
newHash = location.hash.slice( 1 )
else
newHash = location.hash
location.hash = newHash
}
setTimeout( 'trivUpdateTOC( 1 )', 500 )
}
}
var trivGoToPage = null
var trivCompleteCnt = 1;
var hasProcessedExitActions = false;
var trivActFBCnt = 0;
var currFeedbackIdx = 0;
var trivPageExited = false;
function finish() {
}
function trivOnFocus() {
if( trivPageExited ) return
}
function checkLeavePage() {
if( trivPageExited ) return
if( trivActFBCnt == 0 )
{
currFeedbackIdx++;
if( currFeedbackIdx > -1)
{
trivLeavePage();
return;
}
else if( !checkQuestions( true ))
return;
}
setTimeout( 'checkLeavePage()', 100)
}
function trivExitPage( newPage, bFeedback ) {
if( newPage.indexOf( "ObjLayerAction" ) >= 0 || newPage.indexOf( ".action" ) >= 0 || newPage.indexOf( "history.back()" ) >= 0) trivGoToPage = newPage
else trivGoToPage = 'ObjLayerActionGoTo("' + newPage + '")'
if( !hasProcessedExitActions ) {
findWH()
hasProcessedExitActions = true
setTimeout( 'checkLeavePage()', 100)
}
}
function trivLeavePage() {
trivCompleteCnt--
if( trivCompleteCnt <= 0 ) {
hasProcessedExitActions = false
if( trivGoToPage != null )
{
eval( trivGoToPage )
trivGoToPage = null;
if( window.closed ) trivPageExited = true;
}
}
}
function trivPrevPage() {
trivExitPage( 'a001_chapter_2_background.html', true )
}
function trivNextPage() {
trivExitPage( 'a001_chapter_3_step2_terrain.html', true )
}
function trivUpdateTOC( bRecurse ) {
var i
}
function trivUpdateEntry() {
}
function trivResetEntry() {
}
function playerReady(obj){
if(obj['id'] == 'swfaudio7528') { audio7528.setFlashPlayer(); audio7528.flsPlayer.addModelListener("STATE", "OnStateChange"); }
if(obj['id'] == 'swfaudio7528') { audio7528.setFlashPlayer(); audio7528.flsPlayer.addModelListener("TIME", "OnTimeChange"); }
}
function OnStateChange(obj){
if(obj['id'] == 'swfaudio7528') { if( obj['newstate'] == 'PLAYING') audio7528.autoPlay = true; else audio7528.autoPlay = false; }
}
function action5712(fn){
trivExitPage('index.html',true);
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button5708onUp() {
action5712();
}
function action5731(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button5727onUp() {
action5731();
}
function action1285else(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action1285(fn){
if(!VarCurrentChapterName.equals('~~~null~~~')&&!VarCurrentSectionName.equals('~~~null~~~'))
{text1284.actionChangeContents( "Joshua > Chapter 2 > " + VarCurrentChapterName.getValue() + " > " + VarCurrentSectionName.getValue() + " > " + VarCurrentPageName.getValue() + "","alignleft","1" );
}else{ action1285else();}
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action1286else(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action1286(fn){
if(!VarCurrentChapterName.equals('~~~null~~~')&&VarCurrentSectionName.equals('~~~null~~~'))
{text1284.actionChangeContents( "Joshua > Chapter 2 > " + VarCurrentChapterName.getValue() + " > " + VarCurrentPageName.getValue() + "","alignleft","1" );
}else{ action1286else();}
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action1287else(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action1287(fn){
if(VarCurrentChapterName.equals('~~~null~~~')&&VarCurrentSectionName.equals('~~~null~~~'))
{text1284.actionChangeContents(VarCurrentPageName.getValue(),'alignleft','1');
}else{ action1287else();}
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action1288(fn){
text1284.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action960(fn){
trivExitPage('a001_chapter_3_step2_terrain.html',true);
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image648onUp() {
action960();
}
function action978(fn){
trivExitPage('a001_chapter_2_background.html',false);
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image701onUp() {
action978();
}
function action6169(fn){
text6147.actionChangeContents( "" + VarPageInTitle.getValue() + "","aligncenter","1" );
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6197(fn){
text6147.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action3252(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button3251onUp() {
action3252();
}
function action7560(fn){
audio7528.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image2873actionShow() {
setTimeout("if(!image2873.isVisible()) { image2873.objLyr.moveTo(image2873.x, image2873.y);image2873.onShow();action7560(); }", 1 )
}
function action5335(fn){
image4279.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5338(fn){
text4717.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5341(fn){
text2813.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5344(fn){
image4998.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image5031onUp() {
action5335();action5338();action5341();action5344();
}
function action5423(fn){
image2923.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5426(fn){
text4922.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5429(fn){
image4586.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5432(fn){
text3724.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image4998onUp() {
action5423();action5426();action5429();action5432();
}
function action5445(fn){
image4269.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5448(fn){
og4913.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5451(fn){
text3733.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5454(fn){
image4617.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image4586onUp() {
action5445();action5448();action5451();action5454();
}
function action5459(fn){
image4289.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5462(fn){
og4848.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5465(fn){
text2797.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5468(fn){
image3223.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image4617onUp() {
action5459();action5462();action5465();action5468();
}
function action3311(fn){
Varhotspot2.set('1');
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action3307(fn){
image2913.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action3325(fn){
text3421.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action3315(fn){
text3748.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5479(fn){
image5009.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image3223onUp() {
action3311();action3307();action3325();action3315();action5479();
}
function action5484(fn){
image4299.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5487(fn){
text4981.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5490(fn){
text2820.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5493(fn){
image5020.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image5009onUp() {
action5484();action5487();action5490();action5493();
}
function action5498(fn){
image4259.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action5501(fn){
image4778.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image5020onUp() {
action5498();action5501();
}
function action3147(fn){
Varhotspot1.set('1');
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action3150(fn){
if(Varhotspot1.equals('1'))
{image2873.actionShow();
}
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action3216(fn){
text3389.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action3205(fn){
text3701.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action3220(fn){
image5031.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image3125onUp() {
action3147();action3150();action3216();setTimeout( 'action3205()', 500); action3220();
}
function action3802(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button3801onUp() {
action3802();
}
function action3926(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button3925onUp() {
action3926();
}
function action3931(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button3930onUp() {
action3931();
}
function action3936(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button3935onUp() {
action3936();
}
function action3941(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button3940onUp() {
action3941();
}
function action3946(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button3945onUp() {
action3946();
}
function action3951(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button3950onUp() {
action3951();
}
function action4219(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button4218onUp() {
action4219();
}
function action7611(fn){
audio7528.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image2913actionShow() {
setTimeout("if(!image2913.isVisible()) { image2913.objLyr.moveTo(image2913.x, image2913.y);image2913.onShow();action7611(); }", 1 )
}
function action7616(fn){
audio7528.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image2923actionShow() {
setTimeout("if(!image2923.isVisible()) { image2923.objLyr.moveTo(image2923.x, image2923.y);image2923.onShow();action7616(); }", 1 )
}
function action7621(fn){
audio7528.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image4259actionShow() {
setTimeout("if(!image4259.isVisible()) { image4259.objLyr.moveTo(image4259.x, image4259.y);image4259.onShow();action7621(); }", 1 )
}
function action7626(fn){
audio7528.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image4269actionShow() {
setTimeout("if(!image4269.isVisible()) { image4269.objLyr.moveTo(image4269.x, image4269.y);image4269.onShow();action7626(); }", 1 )
}
function action7631(fn){
audio7528.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image4279actionShow() {
setTimeout("if(!image4279.isVisible()) { image4279.objLyr.moveTo(image4279.x, image4279.y);image4279.onShow();action7631(); }", 1 )
}
function action7636(fn){
audio7528.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image4289actionShow() {
setTimeout("if(!image4289.isVisible()) { image4289.objLyr.moveTo(image4289.x, image4289.y);image4289.onShow();action7636(); }", 1 )
}
function action7641(fn){
audio7528.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image4299actionShow() {
setTimeout("if(!image4299.isVisible()) { image4299.objLyr.moveTo(image4299.x, image4299.y);image4299.onShow();action7641(); }", 1 )
}
if( is.min ){
image9224 = new ObjImage('image9224','images/open_book_large_t.png','open_book_large_T',808,34,52,23,1,84,'div')
image9224.build()
button5708 = new ObjButton('button5708','Outline Home',935,20,44,40,1,85,'div')
button5708.setImages('images/outline_home.png','images/outline_home_click.png','images/outline_home_over.png')
button5708.onUp = button5708onUp
button5708.hasOnUp = true
button5708.capture=4
button5708.build()
button5727 = new ObjButton('button5727','Black Ultra Help',878,27,23,30,1,86,'div')
button5727.setImages('images/black_ultra_help.png','images/black_ultra_help_click.png','images/black_ultra_help_over.png')
button5727.onUp = button5727onUp
button5727.hasOnUp = true
button5727.capture=4
button5727.build()
text1284 = new ObjInline('text1284',null,304,28,464,34,0,87,null,'div')
text1284.build()
image648 = new ObjImage('image648','images/shape006_647.png','Triangle Right',952,612,45,41,1,88,'div')
image648.onUp = image648onUp
image648.hasOnUp = true
image648.capture=4
image648.build()
image701 = new ObjImage('image701','images/shape007_700.png','Triangle Left',260,610,44,40,1,89,'div')
image701.onUp = image701onUp
image701.hasOnUp = true
image701.capture=4
image701.build()
text5807 = new ObjInline('text5807',null,38,418,183,58,1,90,null,'div')
text5807.build()
text5812 = new ObjInline('text5812',null,36,484,183,61,1,91,null,'div')
text5812.build()
image6049 = new ObjImage('image6049','images/shape004_6048.png','Ellipse',91,59,64,64,1,92,'div')
image6049.build()
image6100 = new ObjImage('image6100','images/shape020_6099.png','Ellipse 2',97,64,54,54,1,93,'div')
image6100.build()
text6147 = new ObjInline('text6147',null,107,77,33,29,1,94,null,'div')
text6147.build()
button3251 = new ObjButton('button3251','Button',561,215,381,361,1,95,'div')
button3251.setImages('transbtn.gif',null,null,'images/')
button3251.onUp = button3251onUp
button3251.hasOnUp = true
button3251.capture=4
button3251.build()
image2873 = new ObjImage('image2873','images/checkmark.png','canaan-check',327,192,19,24,0,96,'div')
image2873.actionShow = image2873actionShow
image2873.build()
text3748 = new ObjInline('text3748',null,360,500,142,45,0,97,null,'div')
text3748.build()
text3733 = new ObjInline('text3733',null,360,400,74,31,0,98,null,'div')
text3733.build()
image4778 = new ObjImage('image4778','images/compass_rose.png','compass_rose',579,499,63,65,0,99,'div')
image4778.build()
text4981 = new ObjInline('text4981',null,837,245,94,38,0,100,'#ffd966','div')
text4981.build()
text4922 = new ObjInline('text4922',null,793,328,120,33,0,101,'#0078e4','div')
text4922.build()
text3421 = new ObjInline('text3421',null,575,290,130,50,0,102,'#0078e4','div')
text3421.build()
text4717 = new ObjInline('text4717',null,825,502,51,47,0,103,'#0078e4','div')
text4717.build()
image4805 = new ObjImage('image4805','images/shape012_4804.png','Arrow Top Left to Bottom Right',804,409,30,11,0,104,'div')
image4805.build()