-
Notifications
You must be signed in to change notification settings - Fork 0
/
a001_chapter_3_activity2_terrain.html
1404 lines (1204 loc) · 52.7 KB
/
a001_chapter_3_activity2_terrain.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>Activity2-Terrain</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.text6572Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text6572Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text6585Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#000000;}
span.text6585Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text6586Font1 { font-size:16px; font-family:"Arial", sans-serif; color:#000000;}
span.text6586Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text6587Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text6588Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text6589Font0 { font-size:19px; font-family:"Arial", sans-serif; color:#000000;}
span.text6589Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text7180Font5 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text7180Font6 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text7180Font8 { font-size:21px; font-family:"Arial", sans-serif; color:#eddea2; font-weight:bold;}
span.text7180Font11 { font-size:19px; font-family:"Helvetica", sans-serif; color:#eddea2;}
span.text7180Font12 { font-size:19px; font-family:"Helvetica", sans-serif; color:#eddea2;}
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.text6578Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text6578Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text6573Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text6573Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text6574Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text6576Font1 { font-size:19px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text6576Font2 { font-size:19px; font-family:"Arial", sans-serif; color:#010101;}
span.text6579Font1 { font-size:21px; font-family:"Arial", sans-serif; color:#eddea2;}
span.text7698Font1 { font-size:29px; font-family:"Arial", sans-serif; color:#ffd966; font-weight:bold;}
span.text7698Font2 { 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'); }
#image6556 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6556 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image6599 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6599 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape009_1_7001.png',sizingMethod='scale'); }
#image6606 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6606 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape017_1_7022.png',sizingMethod='scale'); }
#image6612 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6612 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape014_1_7040.png',sizingMethod='scale'); }
#image6618 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6618 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape011_1_1_7108.png',sizingMethod='scale'); }
#image6624 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6624 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape011_2_7115.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'); }
#image6566 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6566 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image6560 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6560 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image6564 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6564 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image6568 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image6568 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/checkmark.png',sizingMethod='scale'); }
#image7686 img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
#image7686 { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/shape021_7685.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" src="trivantis-media.js"></script>
<script language = "JavaScript" src="trivantis-trans.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( '8' )
VarCurrentChapterName = new Variable( 'VarCurrentChapterName', null, 0, 0, null, null, 'template_joshua' )
VarCurrentChapterName.set( 'Chapter 3' )
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( 'Activity2-Terrain' )
Varhotspot1 = new Variable( 'Varhotspot1', '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/shape008_2003.png','images/shape008_1_2084.png','images/shape008_2_2089.png','images/shape008_3_2094.png','images/checkmark.png','images/circle_yellow_over.png','images/circle_yellow_click.png','images/circle_yellow.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/image002_6518.jpg','images/shape009_1_7001.png','images/shape017_1_7022.png','images/shape014_1_7040.png','images/shape011_1_1_7108.png','images/shape011_2_7115.png','images/shape021_7685.png','images/open_book_large_t.png','images/text6587_1.gif','images/text6587_2.gif','images/text6587_3.gif','images/text6587_4.gif','images/text6587_5.gif','images/text6587_6.gif','images/text6587_7.gif','images/text6587_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()
button6536.init()
image6556.init()
text6572.init()
text6585.init()
text6586.init()
text6587.init()
text6588.init()
text6589.init()
image6599.init()
image6606.init()
image6612.init()
image6618.init()
image6624.init()
text7180.init()
audio8477Audio.init()
audio8477.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()
og6538.init()
button6539.init()
button6541.init()
button6543.init()
button6545.init()
button6547.init()
image6566.init()
image6560.init()
image6564.init()
image6568.init()
text6578.init()
text6573.init()
text6574.init()
text6576.init()
text6579.init()
image6519.init()
og7752.init()
image7686.init()
audio7839.init()
text7698.init()
image9224.activate()
button5708.activate()
button5727.activate()
text1284.activate()
image648.activate()
image701.activate()
text5807.activate()
text5812.activate()
image6049.activate()
image6100.activate()
text6147.activate()
button6536.activate()
image6556.activate()
text6572.activate()
text6585.activate()
text6586.activate()
text6587.activate()
text6588.activate()
text6589.activate()
image6599.activate()
image6606.activate()
image6612.activate()
image6618.activate()
image6624.activate()
text7180.activate()
audio8477Audio.activate()
audio8477.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()
og6538.activate()
button6539.activate()
button6541.activate()
button6543.activate()
button6545.activate()
button6547.activate()
image6566.activate()
image6560.activate()
image6564.activate()
image6568.activate()
text6578.activate()
text6573.activate()
text6574.activate()
text6576.activate()
text6579.activate()
image6519.activate()
og7752.activate()
image7686.activate()
audio7839.activate()
text7698.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_3_step2_terrain.html', true )
}
function trivNextPage() {
trivExitPage( 'a001_chapter_4_step_3.html', true )
}
function trivUpdateTOC( bRecurse ) {
var i
}
function trivUpdateEntry() {
}
function trivResetEntry() {
}
function playerReady(obj){
if(obj['id'] == 'swfaudio8477Audio') {}
if(obj['id'] == 'swfaudio7839') {}
if(obj['id'] == 'swfaudio8477Audio') { audio8477Audio.setFlashPlayer(); audio8477Audio.flsPlayer.addModelListener("STATE", "OnStateChange"); }
if(obj['id'] == 'swfaudio8477Audio') { audio8477Audio.setFlashPlayer(); audio8477Audio.flsPlayer.addModelListener("TIME", "OnTimeChange"); }
if(obj['id'] == 'swfaudio7839') { audio7839.setFlashPlayer(); audio7839.flsPlayer.addModelListener("STATE", "OnStateChange"); }
if(obj['id'] == 'swfaudio7839') { audio7839.setFlashPlayer(); audio7839.flsPlayer.addModelListener("TIME", "OnTimeChange"); }
}
function getUpdate(typ, pr1, pr2, swf) {
if( typ == 'item' && swf == 'swfaudio8477Audio' ) {setTimeout("",100);}
if( typ == 'item' && swf == 'swfaudio7839' ) {setTimeout("",100);}
}
function OnStateChange(obj){
if(obj['id'] == 'swfaudio8477Audio') { if( obj['newstate'] == 'PLAYING') audio8477Audio.autoPlay = true; else audio8477Audio.autoPlay = false; }
if(obj['id'] == 'swfaudio7839') { if( obj['newstate'] == 'PLAYING') audio7839.autoPlay = true; else audio7839.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_4_step_3.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_3_step2_terrain.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 action6537(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button6536onUp() {
action6537();
}
function action6600(fn){
Varhotspot1.set('1');
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6601(fn){
if(Varhotspot1.equals('1'))
{image6556.actionShow();
}
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6602(fn){
text6588.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6603(fn){
text6574.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6604(fn){
image6606.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image6599onUp() {
action6600();action6601();action6602();setTimeout( 'action6603()', 500); action6604();
}
function action6607(fn){
image6566.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6608(fn){
text6589.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6609(fn){
text6576.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6610(fn){
image6612.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image6606onUp() {
action6607();action6608();action6609();action6610();
}
function action6613(fn){
image6560.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6614(fn){
text6586.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6615(fn){
image6618.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6616(fn){
text6573.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image6612onUp() {
action6613();action6614();action6615();action6616();
}
function action6619(fn){
image6564.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6620(fn){
text6587.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6621(fn){
text6572.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6622(fn){
image6624.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image6618onUp() {
action6619();action6620();action6621();action6622();
}
function action6625(fn){
image6568.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action6626(fn){
text6585.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action7758(fn){
og7752.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action7850(fn){
audio7839.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action8501(fn){
audio8477Audio.actionPlay();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image6624onUp() {
action6625();action6626();setTimeout( 'action7758()', 1000); action7850();setTimeout( 'action8501()', 2000);
}
function audio8477onUp() {
audio8477Audio.actionTogglePlay();
}
function audio8477actionShow() {
setTimeout("if(!audio8477.isVisible()) { audio8477.objLyr.doTrans( 0, 2, 1, null, audio8477.objLyr.x, audio8477.objLyr.y, -817, -170, winW+20, winH+27, 0 ); }", 1 )
}
function action6540(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button6539onUp() {
action6540();
}
function action6542(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button6541onUp() {
action6542();
}
function action6544(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button6543onUp() {
action6544();
}
function action6546(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button6545onUp() {
action6546();
}
function action6548(fn){
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function button6547onUp() {
action6548();
}
function action7774(fn){
text7180.actionShow();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function action7817(fn){
og6538.actionHide();
if(fn && typeof(fn) == 'string' ) eval(fn);
else if(fn && typeof(fn) == 'function' ) fn();
}
function image7686actionShow() {
setTimeout("if(!image7686.isVisible()) { image7686.objLyr.doTrans( 0, 2, 1, 'setTimeout( \\\'action7774()\\\', 1000); action7817();', image7686.objLyr.x, image7686.objLyr.y, -222, -177, winW+615, winH+20, 0 ); }", 1 )
}
function audio7839actionShow() {
setTimeout("if(!audio7839.isVisible()) { audio7839.objLyr.doTrans( 0, 2, 1, null, audio7839.objLyr.x, audio7839.objLyr.y, -566, -46, winW+271, winH+151, 0 ); }", 1 )
}
function text7698actionShow() {
setTimeout("if(!text7698.isVisible()) { text7698.objLyr.doTrans( 0, 2, 1, null, text7698.objLyr.x, text7698.objLyr.y, -197, -159, winW+640, winH+38, 0 ); }", 1 )
}
if( is.min ){
image9224 = new ObjImage('image9224','images/open_book_large_t.png','open_book_large_T',808,34,52,23,1,68,'div')
image9224.build()
button5708 = new ObjButton('button5708','Outline Home',935,20,44,40,1,69,'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,70,'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,71,null,'div')
text1284.build()
image648 = new ObjImage('image648','images/shape006_647.png','Triangle Right',952,612,45,41,1,72,'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,73,'div')
image701.onUp = image701onUp
image701.hasOnUp = true
image701.capture=4
image701.build()
text5807 = new ObjInline('text5807',null,38,418,183,58,1,74,null,'div')
text5807.build()
text5812 = new ObjInline('text5812',null,36,484,183,61,1,75,null,'div')
text5812.build()
image6049 = new ObjImage('image6049','images/shape004_6048.png','Ellipse',91,59,64,64,1,76,'div')
image6049.build()
image6100 = new ObjImage('image6100','images/shape020_6099.png','Ellipse 2',97,64,54,54,1,77,'div')
image6100.build()
text6147 = new ObjInline('text6147',null,107,77,33,29,1,78,null,'div')
text6147.build()
button6536 = new ObjButton('button6536','Button',588,232,368,253,1,79,'div')
button6536.setImages('transbtn.gif',null,null,'images/')
button6536.onUp = button6536onUp
button6536.hasOnUp = true
button6536.capture=4
button6536.build()
image6556 = new ObjImage('image6556','images/checkmark.png','mountain-check',331,241,19,24,0,80,'div')
image6556.build()
text6572 = new ObjInline('text6572',null,364,449,74,31,0,81,null,'div')
text6572.build()
text6585 = new ObjInline('text6585',null,837,245,94,25,0,82,'#ffd966','div')
text6585.build()
text6586 = new ObjInline('text6586',null,734,331,94,26,0,83,'#0078e4','div')
text6586.build()
text6587 = new ObjInline('text6587',null,651,249,94,29,0,84,'#b45f06','div')
text6587.build()
text6588 = new ObjInline('text6588',null,842,355,106,27,0,85,'#990000','div')
text6588.build()
text6589 = new ObjInline('text6589',null,838,423,51,26,0,86,'#38761d','div')
text6589.build()
image6599 = new ObjImage('image6599','images/shape009_1_7001.png','MtHS',835,303,112,180,1,87,'div')
image6599.onUp = image6599onUp
image6599.hasOnUp = true
image6599.capture=4
image6599.build()
image6606 = new ObjImage('image6606','images/shape017_1_7022.png','HillsHS',820,379,95,102,0,88,'div')
image6606.onUp = image6606onUp
image6606.hasOnUp = true
image6606.capture=4
image6606.build()
image6612 = new ObjImage('image6612','images/shape014_1_7040.png','RiverHS',733,263,79,149,0,89,'div')
image6612.onUp = image6612onUp
image6612.hasOnUp = true
image6612.capture=4
image6612.build()
image6618 = new ObjImage('image6618','images/shape011_1_1_7108.png','DesertHS',625,242,140,59,0,90,'div')
image6618.onUp = image6618onUp
image6618.hasOnUp = true
image6618.capture=4
image6618.build()
image6624 = new ObjImage('image6624','images/shape011_2_7115.png','PlainsHS',821,241,124,43,0,91,'div')
image6624.onUp = image6624onUp
image6624.hasOnUp = true
image6624.capture=4
image6624.build()
text7180 = new ObjInline('text7180',null,288,228,290,357,0,92,null,'div')
text7180.build()
audio8477Audio = new ObjInline('audio8477Audio','answer-narration',103,144,1,1,1,93,0,'div');
audio8477Audio.iType='flashvid';
audio8477Audio
if (is.useHTML5Video()) {
audio8477Audio.addParm( "<audio src='media/audio007.mp3' width='1px' height='1px' id='html5audio8477Audio' name='html5audio8477Audio' class=''></audio>")
}else{
if (is.Mac) {
audio8477Audio.addParm( "<object type='application/x-shockwave-flash' data='media/player.swf' width='1' height='1' id='swfaudio8477Audio' name='swfaudio8477Audio'>" )
}
else{
audio8477Audio.addParm( "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0' width='1' height='1' name='swfaudio8477Audio' id='swfaudio8477Audio'>" )
}
audio8477Audio.addParm( "<param name='movie' value='media/player.swf'>" )
audio8477Audio.addParm( "<param name='wmode' value='transparent'>" )
audio8477Audio.addParm( "<param name='allowScriptAccess' value='always'>" )
audio8477Audio.addParm( "<param name='FlashVars' value='file=media/audio007.mp3&fullscreen=true&stretching=exactfit&displayclick=none&width=1&height=1&icons=false'>" )
if (!is.Mac) {
audio8477Audio.addParm( "<embed src='media/player.swf' width='1' height='1' type='application/x-shockwave-flash' pluginspage='//www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' name='swfaudio8477Audio' swLiveConnect='true' wmode='opaque' allowScriptAccess='always' FlashVars='file=media/audio007.mp3&fullscreen=true&stretching=exactfit&displayclick=none&width=1&height=1&icons=false'>" )
audio8477Audio.addParm( "</embed> </object>" )
}
else {
audio8477Audio.addParm( "</object>" )
}
}
audio8477Audio.build()
audio8477 = new ObjButton('audio8477','answer-narration',103,144,40,40,1,93,'div')
audio8477.setImages( 'audiobtn.gif',null,null,'images/')
audio8477.onUp = audio8477onUp
audio8477.hasOnUp = true
audio8477.actionShow = audio8477actionShow
audio8477.capture=4
audio8477.build()
image130 = new ObjImage('image130','images/shape002_129.png','Rounded Rectangle',8,93,241,561,1,26,'div')
image130.build()
image205 = new ObjImage('image205','images/shape003_1_1_218.png','Rounded Rectangle 2',268,100,720,540,1,27,'div')
image205.build()
image55 = new ObjImage('image55','images/shape001_54.png','Rectangle',4,3,1002,78,1,28,'div')
image55.build()
image1112 = new ObjImage('image1112','images/mekorot-logo.png','Mekorot-Logo',21,11,210,49,1,29,'div')
image1112.build()
image2004 = new ObjImage('image2004','images/shape008_2_2089.png','Rectangle 2',28,348,201,52,1,30,'div')
image2004.build()
image2011 = new ObjImage('image2011','images/shape008_1_2084.png','Rectangle 2',28,288,201,52,1,31,'div')
image2011.build()
text5761 = new ObjInline('text5761',null,35,304,183,30,1,32,null,'div')
text5761.build()
text8754 = new ObjInline('text8754',null,35,304,183,30,0,33,null,'div')
text8754.build()
text5796 = new ObjInline('text5796',null,36,363,183,27,1,34,null,'div')
text5796.build()
image2027 = new ObjImage('image2027','images/shape008_3_2094.png','Rectangle 2',28,408,201,52,1,35,'div')
image2027.build()
image2019 = new ObjImage('image2019','images/shape008_2003.png','Rectangle 2',28,468,201,52,1,36,'div')
image2019.build()
og6245 = new ObjInline('og6245',null,0,0,170,135,1,0)
og6245.isGrp = true
og6245.addChild('image6049')
og6245.addChild('image6100')
og6245.addChild('text6147')
og6245.build()
og6538 = new ObjInline('og6538',null,0,0,616,528,1,0)
og6538.isGrp = true
og6538.addChild('button6539')
og6538.addChild('button6541')
og6538.addChild('button6543')
og6538.addChild('button6545')
og6538.addChild('button6547')
og6538.addChild('image6566')
og6538.addChild('image6556')
og6538.addChild('image6560')
og6538.addChild('image6564')
og6538.addChild('image6568')
og6538.addChild('text6578')
og6538.addChild('text6572')
og6538.addChild('text6573')
og6538.addChild('text6574')
og6538.addChild('text6576')
og6538.build()
button6539 = new ObjButton('button6539','Circle Yellow',329,249,19,19,1,37,'div')
button6539.setImages('images/circle_yellow.png','images/circle_yellow_click.png','images/circle_yellow_over.png')
button6539.onUp = button6539onUp
button6539.hasOnUp = true
button6539.capture=4
button6539.build()
button6541 = new ObjButton('button6541','Circle Yellow',329,299,19,19,1,38,'div')
button6541.setImages('images/circle_yellow.png','images/circle_yellow_click.png','images/circle_yellow_over.png')
button6541.onUp = button6541onUp
button6541.hasOnUp = true
button6541.capture=4
button6541.build()
button6543 = new ObjButton('button6543','Circle Yellow',329,349,19,19,1,39,'div')
button6543.setImages('images/circle_yellow.png','images/circle_yellow_click.png','images/circle_yellow_over.png')
button6543.onUp = button6543onUp
button6543.hasOnUp = true
button6543.capture=4
button6543.build()
button6545 = new ObjButton('button6545','Circle Yellow',329,399,19,19,1,40,'div')
button6545.setImages('images/circle_yellow.png','images/circle_yellow_click.png','images/circle_yellow_over.png')
button6545.onUp = button6545onUp
button6545.hasOnUp = true
button6545.capture=4
button6545.build()
button6547 = new ObjButton('button6547','Circle Yellow',329,449,19,19,1,41,'div')
button6547.setImages('images/circle_yellow.png','images/circle_yellow_click.png','images/circle_yellow_over.png')
button6547.onUp = button6547onUp
button6547.hasOnUp = true
button6547.capture=4
button6547.build()
image6566 = new ObjImage('image6566','images/checkmark.png','hills-check',331,291,19,24,0,42,'div')
image6566.build()
image6560 = new ObjImage('image6560','images/checkmark.png','river-check',331,341,19,24,0,43,'div')
image6560.build()
image6564 = new ObjImage('image6564','images/checkmark.png','desert-check',331,391,19,24,0,44,'div')
image6564.build()
image6568 = new ObjImage('image6568','images/checkmark.png','plains-check',331,441,19,24,0,45,'div')
image6568.build()
text6578 = new ObjInline('text6578',null,364,249,148,29,1,46,null,'div')
text6578.build()
text6573 = new ObjInline('text6573',null,364,399,67,30,0,47,null,'div')
text6573.build()
text6574 = new ObjInline('text6574',null,364,299,93,43,0,48,null,'div')
text6574.build()
text6576 = new ObjInline('text6576',null,360,349,200,28,0,49,null,'div')
text6576.build()
text6579 = new ObjInline('text6579',null,320,158,313,51,1,50,null,'div')
text6579.build()
image6519 = new ObjImage('image6519','images/image002_6518.jpg','Terrain-map',589,229,370,258,1,51,'div')
image6519.build()
og7752 = new ObjInline('og7752',null,0,0,990,323,1,0)
og7752.isGrp = true