The document in this frame controls the animation in the other frame. Here is the function that loads the animation:
function writeframe(countdown){
var i = parseInt(countdown);
if (i++ < 10) {
parent.JSANIMATE.location.href="globe" + i + ".gif";
var timerstring = "writeframe(" + i + ")";
timer=setTimeout(timerstring,1000);
}
We chose to load the gif directly into the frame rather than accessing it via an IMG tag. For finer control over image placement, you may prefer to write the tags to the document.
If you want to see the animation again: