Javascript is NOT turned on.

You must have javascript turned on to view the animation.

 


[Animation]


This Javascript Movie was inspired by one of the many 9/11 videos that can be found on the web-page:

http://globalresearch.ca.myforums.net/viewtopic.php?t=523

If you wish to save your own copy of this animation, you should download the entire contents of the directory linux.50webs.org/jsmovies/wtc/, that is, the images 1.jpg, 2.jpg,.... 66.jpg, wait.jpg and this file movie3.htm. Put them all in a directory of your choice and then open the file movies.htm in your browser (and, of course, make sure that you have javascript turned on). For Linux users, the easiest way to save the directory is to enter the command

wget -r -l 1 -nd -np http://linux.50webs.org/jsmovies/wtc/

in a terminal window. This will save all the files from linux.50webs.org/jsmovies/wtc/ to your current directory.

The code for this is:

<HTML>
<HEAD>
<TITLE>Closeup of North Tower Explosions (Animation).</TITLE>
<SCRIPT>

var k=1
var delay = 40
var imageNum = 1

j = new Array()
theImages = new Array()

function load() {
for(i = 1; i < 67; i++) {
theImages[i] = new Image()
theImages[i].src = i + ".jpg"
}
}

function animate() {
document.animation.src = theImages[imageNum].src
imageNum++
if(imageNum==66){k=1}
}

function slower() {
if(delay==40) delay = 0
delay+=100
if(delay > 4000) delay=4000
}

function faster() {
delay-=100
if(delay < 100) delay=40
}

function go() {
imageNum=k
for(i = k; i < 67; i++) { j[i]=setTimeout('animate()',(i-k+1)*delay) }
}

function stop() {
if(imageNum<67) { k=imageNum } else { k=1 }
for(i = 1; i < 67; i++) { clearTimeout(j[i]) }
}
</SCRIPT>

<NOSCRIPT>
<P> <P>Javascript is NOT turned on.
<P><font color="red">You must have javascript turned on to view the animation.</font>
</NOSCRIPT>

</HEAD>

<BODY onLoad="load();setTimeout('document.animation.src = theImages[1].src',10000)">

<IMG NAME="animation" SRC="wait.jpg" ALT="[Animation]">

<FORM>
<INPUT name="s" TYPE="button" Value="Start" onClick="imageNum=k;go()">
<INPUT TYPE="button" Value="Stop" onClick="stop()">
<INPUT TYPE="button" Value="Slower" onClick="stop();slower();go();speed.value=delay+' ms between frames'">
<INPUT TYPE="button" Value="Faster" onClick="stop();faster();go();speed.value=delay+' ms between frames'">
<INPUT name="speed" TYPE="button" Value="40 ms gap = actual speed" ALT="40 ms between frames = 25 frames/sec = actual speed" TITLE="40 ms between frames = 25 frames/sec = actual speed">
</FORM>

</BODY>