//********* SET UP VARIABLES *********************                                  
                                                                                    
first_image = 1;   // always 1                                                      
var last_image;    // the number of files of the graphic               
animation_height = 716;                                                             
animation_width = 895;                                                              
                                                                                    
//*****************************************************************                 
                                                                                    
//=== THE CODE STARTS HERE - change just the filenames below ===                    
                                                                                    
                                                                                    
//=== global variables ====                                                         
theImages = new Array();      //holds the images                                    
imageNum = new Array();       //keeps track of which images to omit from loop       
normal_delay = 250;                                                                 
delay = normal_delay;         //delay between frames in 1/100 seconds               
delay_step = 25;                                                                    
delay_max = 4000;                                                                   
delay_min = 50;                                                                     
dwell_multipler = 5;                                                                
dwell_step = 1;                                                                     
end_dwell_multipler = dwell_multipler;                                              
start_dwell_multipler = 1;                                                          
current_image = first_image;     //number of the current image                      
timeID = null;                                                                      
status = 0;                      // 0-stopped, 1-playing                            
play_mode = 0;                   // 0-normal, 1-loop, 2-sweep                       
                                                                                    
                                                                                    
//===> Make sure the first image number is not bigger than the last image number    
if (first_image > last_image)                                                       
{                                                                                   
   var help = last_image;                                                           
   last_image = first_image;                                                        
   first_image = help;                                                              
}                                                                                   
                                                                                    
//==============================================================                    
//== All previous statements are performed as the page loads. ==                    
//== The following functions are also defined at this time.   ==                    
//==============================================================                    
                                                                                    
//===> Stop the animation                                                           
function stop()                                                                     
{                                                                                   
   //== cancel animation (timeID holds the expression which calls the fwd or bkwd function) ==
   if (status == 1)                                                                 
      clearTimeout (timeID);                                                        
   status = 0;                                                                      
//   setTimeout("history.back()", 60000);	   //when stop function called, "kicksback" to previous document 
}                                               //after 60 seconds                  
                                                                                    
                                                                                    
//===> Display animation in fwd direction in either loop or sweep mode              
function animate_fwd()                                                              
{                                                                                   
   current_image ++;                      //increment image number                  
                                                                                    
   //== check if current image has exceeded loop bound ==                           
   if (current_image > last_image) {                                                
      if (play_mode == 1) {              //fwd loop mode - skip to first image      
         current_image = first_image;                                               
      }                                                                             
      if (play_mode == 2) {              //sweep mode - change directions (go bkwd) 
         current_image = last_image;                                                
         animate_rev();                                                             
         return;                                                                    
      }                                                                             
   }                                                                                
                                                                                    
   document.animation.src = theImages[current_image].src;   //display image onto screen
   document.control_form.frame_nr.value = current_image;    //display image number  
                                                                                    
   delay_time = delay;                                                              
   if ( current_image == first_image) delay_time = start_dwell_multipler*delay;     
   if (current_image == last_image)   delay_time = end_dwell_multipler*delay;       
                                                                                    
   //== call "animate_fwd()" again after a set time (delay_time) has elapsed ==   
   timeID = setTimeout("animate_fwd()", delay_time);                              
}                                                                                   
                                                                                    
                                                                                    
//===> Display animation in reverse direction                                       
function animate_rev()                                                              
{                                                                                   
   current_image--;                      //decrement image number                   
                                                                                    
   //== check if image number is before lower loop bound ==                         
   if (current_image < first_image) {                                               
     if (play_mode == 1) {               //rev loop mode - skip to last image       
        current_image = last_image;                                                 
     }                                                                              
     if (play_mode == 2) {                                                          
        current_image = first_image;     //sweep mode - change directions (go fwd)  
        animate_fwd();                                                              
        return;                                                                     
     }                                                                              
   }                                                                                
                                                                                    
   document.animation.src = theImages[current_image].src;   //display image onto screen
   document.control_form.frame_nr.value = current_image;    //display image number  
                                                                                    
   delay_time = delay;                                                              
   if ( current_image == first_image) delay_time = start_dwell_multipler*delay;     
   if (current_image == last_image)   delay_time = end_dwell_multipler*delay;       
                                                                                    
   //== call "animate_rev()" again after a set amount of time (delay_time) has elapsed ==
   timeID = setTimeout("animate_rev()", delay_time);                                
}                                                                                   
                                                                                    
                                                                                    
//===> Changes playing speed by adding to or substracting from the delay between frames
function change_speed(dv)                                                           
{                                                                                   
   delay+=dv;                                                                       
   //== check to ensure max and min delay constraints have not been crossed ==      
   if(delay > delay_max) delay = delay_max;                                         
   if(delay < delay_min) delay = delay_min;                                         
}                                                                                   
                                                                                    
//===> functions that changed the dwell rates.                                      
function change_end_dwell(dv) {                                                     
   end_dwell_multipler+=dv;                                                         
   if ( end_dwell_multipler < 1 ) end_dwell_multipler = 0;                          
   }                                                                                
                                                                                    
function change_start_dwell(dv) {                                                   
   start_dwell_multipler+=dv;                                                       
   if ( start_dwell_multipler < 1 ) start_dwell_multipler = 0;                      
   }                                                                                
                                                                                    
                                                                                    
//===> Increment to next image                                                      
function incrementImage(number)                                                     
{                                                                                   
   stop();                                                                          
                                                                                    
   //== if image is last in loop, increment to first image ==                       
   if (number > last_image) number = first_image;                                   
   current_image = number;                                                          
   document.animation.src = theImages[current_image].src;   //display image         
   document.control_form.frame_nr.value = current_image;    //display image number  
}                                                                                   
                                                                                    
//===> Decrement to next image                                                      
function decrementImage(number)                                                     
{                                                                                   
   stop();                                                                          
                                                                                    
   //== if image is first in loop, decrement to last image ==                       
   if (number < first_image) number = last_image;                                   
   current_image = number;                                                          
   document.animation.src = theImages[current_image].src;   //display image         
   document.control_form.frame_nr.value = current_image;    //display image number  
}                                                                                   
                                                                                    
//===> "Play forward"                                                               
function fwd()                                                                      
{                                                                                   
   stop();                                                                          
   status = 1;                                                                      
   play_mode = 1;                                                                   
   animate_fwd();                                                                   
}                                                                                   
                                                                                    
//===> "Play reverse"                                                             
function rev()                                                                      
{                                                                                   
   stop();                                                                          
   status = 1;                                                                      
   play_mode = 1;                                                                   
   animate_rev();                                                                   
}                                                                                   
                                                                                    
//===> "play sweep"                                                               
function sweep() {                                                                  
   stop();                                                                          
   status = 1;                                                                      
   play_mode = 2;                                                                   
   animate_fwd();                                                                   
   }                                                                                
                                                                                    
//===> Change play mode (normal, loop, swing)                                       
function change_mode(mode)                                                          
{                                                                                   
   play_mode = mode;                                                                
}
function Tropical_Depression_One() { 
last_image=5;

                                                                                    
      // *** Here is the list of files for the animations ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al01/AL012009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al01/AL012009_5W_002_0.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al01/AL012009_5W_003_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al01/AL012009_5W_004_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al01/AL012009_5W_005_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al01/AL012009_5W_006_0.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      fwd();                                                                     
}     
function Ana() { 
last_image=31;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_002_0.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_003_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_004_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_005_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_006_0.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      i_name = 7;                                                           
      theImages[7] = new Image();                                           
      theImages[7].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_007_0.GIF";                       
      imageNum[7] = true;                                                   
      document.animation.src = theImages[7].src;                            
      document.control_form.frame_nr.value = 7;                             
                                                                                 
      i_name = 8;                                                           
      theImages[8] = new Image();                                           
      theImages[8].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_008_0.GIF";                       
      imageNum[8] = true;                                                   
      document.animation.src = theImages[8].src;                            
      document.control_form.frame_nr.value = 8;                             
                                                                                 
      i_name = 9;                                                           
      theImages[9] = new Image();                                           
      theImages[9].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_009_0.GIF";                       
      imageNum[9] = true;                                                   
      document.animation.src = theImages[9].src;                            
      document.control_form.frame_nr.value = 9;                             
                                                                                 
      i_name = 10;                                                           
      theImages[10] = new Image();                                           
      theImages[10].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_010_0.GIF";                       
      imageNum[10] = true;                                                   
      document.animation.src = theImages[10].src;                            
      document.control_form.frame_nr.value = 10;                             
                                                                                 
      i_name = 11;                                                           
      theImages[11] = new Image();                                           
      theImages[11].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_011_0.GIF";                       
      imageNum[11] = true;                                                   
      document.animation.src = theImages[11].src;                            
      document.control_form.frame_nr.value = 11;                             
                                                                                 
      i_name = 12;                                                           
      theImages[12] = new Image();                                           
      theImages[12].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_012_0.GIF";                       
      imageNum[12] = true;                                                   
      document.animation.src = theImages[12].src;                            
      document.control_form.frame_nr.value = 12;                             
                                                                                 
      i_name = 13;                                                           
      theImages[13] = new Image();                                           
      theImages[13].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_013_0.GIF";                       
      imageNum[13] = true;                                                   
      document.animation.src = theImages[13].src;                            
      document.control_form.frame_nr.value = 13;                             
                                                                                 
      i_name = 14;                                                           
      theImages[14] = new Image();                                           
      theImages[14].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_014_0.GIF";                       
      imageNum[14] = true;                                                   
      document.animation.src = theImages[14].src;                            
      document.control_form.frame_nr.value = 14;                             
                                                                                 
      i_name = 15;                                                           
      theImages[15] = new Image();                                           
      theImages[15].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_015_0.GIF";                       
      imageNum[15] = true;                                                   
      document.animation.src = theImages[15].src;                            
      document.control_form.frame_nr.value = 15;                             
                                                                                 
      i_name = 16;                                                           
      theImages[16] = new Image();                                           
      theImages[16].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_015_A.GIF";                       
      imageNum[16] = true;                                                   
      document.animation.src = theImages[16].src;                            
      document.control_form.frame_nr.value = 16;                             
                                                                                 
      i_name = 17;                                                           
      theImages[17] = new Image();                                           
      theImages[17].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_016_0.GIF";                       
      imageNum[17] = true;                                                   
      document.animation.src = theImages[17].src;                            
      document.control_form.frame_nr.value = 17;                             
                                                                                 
      i_name = 18;                                                           
      theImages[18] = new Image();                                           
      theImages[18].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_016_A.GIF";                       
      imageNum[18] = true;                                                   
      document.animation.src = theImages[18].src;                            
      document.control_form.frame_nr.value = 18;                             
                                                                                 
      i_name = 19;                                                           
      theImages[19] = new Image();                                           
      theImages[19].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_017_0.GIF";                       
      imageNum[19] = true;                                                   
      document.animation.src = theImages[19].src;                            
      document.control_form.frame_nr.value = 19;                             
                                                                                 
      i_name = 20;                                                           
      theImages[20] = new Image();                                           
      theImages[20].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_017_A.GIF";                       
      imageNum[20] = true;                                                   
      document.animation.src = theImages[20].src;                            
      document.control_form.frame_nr.value = 20;                             
                                                                                 
      i_name = 21;                                                           
      theImages[21] = new Image();                                           
      theImages[21].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_018_0.GIF";                       
      imageNum[21] = true;                                                   
      document.animation.src = theImages[21].src;                            
      document.control_form.frame_nr.value = 21;                             
                                                                                 
      i_name = 22;                                                           
      theImages[22] = new Image();                                           
      theImages[22].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_018_A.GIF";                       
      imageNum[22] = true;                                                   
      document.animation.src = theImages[22].src;                            
      document.control_form.frame_nr.value = 22;                             
                                                                                 
      i_name = 23;                                                           
      theImages[23] = new Image();                                           
      theImages[23].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_019_0.GIF";                       
      imageNum[23] = true;                                                   
      document.animation.src = theImages[23].src;                            
      document.control_form.frame_nr.value = 23;                             
                                                                                 
      i_name = 24;                                                           
      theImages[24] = new Image();                                           
      theImages[24].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_019_A.GIF";                       
      imageNum[24] = true;                                                   
      document.animation.src = theImages[24].src;                            
      document.control_form.frame_nr.value = 24;                             
                                                                                 
      i_name = 25;                                                           
      theImages[25] = new Image();                                           
      theImages[25].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_020_0.GIF";                       
      imageNum[25] = true;                                                   
      document.animation.src = theImages[25].src;                            
      document.control_form.frame_nr.value = 25;                             
                                                                                 
      i_name = 26;                                                           
      theImages[26] = new Image();                                           
      theImages[26].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_020_A.GIF";                       
      imageNum[26] = true;                                                   
      document.animation.src = theImages[26].src;                            
      document.control_form.frame_nr.value = 26;                             
                                                                                 
      i_name = 27;                                                           
      theImages[27] = new Image();                                           
      theImages[27].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_021_0.GIF";                       
      imageNum[27] = true;                                                   
      document.animation.src = theImages[27].src;                            
      document.control_form.frame_nr.value = 27;                             
                                                                                 
      i_name = 28;                                                           
      theImages[28] = new Image();                                           
      theImages[28].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_021_A.GIF";                       
      imageNum[28] = true;                                                   
      document.animation.src = theImages[28].src;                            
      document.control_form.frame_nr.value = 28;                             
                                                                                 
      i_name = 29;                                                           
      theImages[29] = new Image();                                           
      theImages[29].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_022_0.GIF";                       
      imageNum[29] = true;                                                   
      document.animation.src = theImages[29].src;                            
      document.control_form.frame_nr.value = 29;                             
                                                                                 
      i_name = 30;                                                           
      theImages[30] = new Image();                                           
      theImages[30].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_022_A.GIF";                       
      imageNum[30] = true;                                                   
      document.animation.src = theImages[30].src;                            
      document.control_form.frame_nr.value = 30;                             
                                                                                 
      i_name = 31;                                                           
      theImages[31] = new Image();                                           
      theImages[31].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al02/AL022009_5W_023_0.GIF";                       
      imageNum[31] = true;                                                   
      document.animation.src = theImages[31].src;                            
      document.control_form.frame_nr.value = 31;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Bill() { 
last_image=51;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_002_0.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_003_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_004_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_005_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_006_0.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      i_name = 7;                                                           
      theImages[7] = new Image();                                           
      theImages[7].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_007_0.GIF";                       
      imageNum[7] = true;                                                   
      document.animation.src = theImages[7].src;                            
      document.control_form.frame_nr.value = 7;                             
                                                                                 
      i_name = 8;                                                           
      theImages[8] = new Image();                                           
      theImages[8].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_008_0.GIF";                       
      imageNum[8] = true;                                                   
      document.animation.src = theImages[8].src;                            
      document.control_form.frame_nr.value = 8;                             
                                                                                 
      i_name = 9;                                                           
      theImages[9] = new Image();                                           
      theImages[9].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_009_0.GIF";                       
      imageNum[9] = true;                                                   
      document.animation.src = theImages[9].src;                            
      document.control_form.frame_nr.value = 9;                             
                                                                                 
      i_name = 10;                                                           
      theImages[10] = new Image();                                           
      theImages[10].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_010_0.GIF";                       
      imageNum[10] = true;                                                   
      document.animation.src = theImages[10].src;                            
      document.control_form.frame_nr.value = 10;                             
                                                                                 
      i_name = 11;                                                           
      theImages[11] = new Image();                                           
      theImages[11].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_011_0.GIF";                       
      imageNum[11] = true;                                                   
      document.animation.src = theImages[11].src;                            
      document.control_form.frame_nr.value = 11;                             
                                                                                 
      i_name = 12;                                                           
      theImages[12] = new Image();                                           
      theImages[12].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_012_0.GIF";                       
      imageNum[12] = true;                                                   
      document.animation.src = theImages[12].src;                            
      document.control_form.frame_nr.value = 12;                             
                                                                                 
      i_name = 13;                                                           
      theImages[13] = new Image();                                           
      theImages[13].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_013_0.GIF";                       
      imageNum[13] = true;                                                   
      document.animation.src = theImages[13].src;                            
      document.control_form.frame_nr.value = 13;                             
                                                                                 
      i_name = 14;                                                           
      theImages[14] = new Image();                                           
      theImages[14].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_014_0.GIF";                       
      imageNum[14] = true;                                                   
      document.animation.src = theImages[14].src;                            
      document.control_form.frame_nr.value = 14;                             
                                                                                 
      i_name = 15;                                                           
      theImages[15] = new Image();                                           
      theImages[15].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_015_0.GIF";                       
      imageNum[15] = true;                                                   
      document.animation.src = theImages[15].src;                            
      document.control_form.frame_nr.value = 15;                             
                                                                                 
      i_name = 16;                                                           
      theImages[16] = new Image();                                           
      theImages[16].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_016_0.GIF";                       
      imageNum[16] = true;                                                   
      document.animation.src = theImages[16].src;                            
      document.control_form.frame_nr.value = 16;                             
                                                                                 
      i_name = 17;                                                           
      theImages[17] = new Image();                                           
      theImages[17].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_017_0.GIF";                       
      imageNum[17] = true;                                                   
      document.animation.src = theImages[17].src;                            
      document.control_form.frame_nr.value = 17;                             
                                                                                 
      i_name = 18;                                                           
      theImages[18] = new Image();                                           
      theImages[18].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_018_0.GIF";                       
      imageNum[18] = true;                                                   
      document.animation.src = theImages[18].src;                            
      document.control_form.frame_nr.value = 18;                             
                                                                                 
      i_name = 19;                                                           
      theImages[19] = new Image();                                           
      theImages[19].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_019_0.GIF";                       
      imageNum[19] = true;                                                   
      document.animation.src = theImages[19].src;                            
      document.control_form.frame_nr.value = 19;                             
                                                                                 
      i_name = 20;                                                           
      theImages[20] = new Image();                                           
      theImages[20].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_020_0.GIF";                       
      imageNum[20] = true;                                                   
      document.animation.src = theImages[20].src;                            
      document.control_form.frame_nr.value = 20;                             
                                                                                 
      i_name = 21;                                                           
      theImages[21] = new Image();                                           
      theImages[21].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_021_0.GIF";                       
      imageNum[21] = true;                                                   
      document.animation.src = theImages[21].src;                            
      document.control_form.frame_nr.value = 21;                             
                                                                                 
      i_name = 22;                                                           
      theImages[22] = new Image();                                           
      theImages[22].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_021_A.GIF";                       
      imageNum[22] = true;                                                   
      document.animation.src = theImages[22].src;                            
      document.control_form.frame_nr.value = 22;                             
                                                                                 
      i_name = 23;                                                           
      theImages[23] = new Image();                                           
      theImages[23].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_022_0.GIF";                       
      imageNum[23] = true;                                                   
      document.animation.src = theImages[23].src;                            
      document.control_form.frame_nr.value = 23;                             
                                                                                 
      i_name = 24;                                                           
      theImages[24] = new Image();                                           
      theImages[24].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_022_A.GIF";                       
      imageNum[24] = true;                                                   
      document.animation.src = theImages[24].src;                            
      document.control_form.frame_nr.value = 24;                             
                                                                                 
      i_name = 25;                                                           
      theImages[25] = new Image();                                           
      theImages[25].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_023_0.GIF";                       
      imageNum[25] = true;                                                   
      document.animation.src = theImages[25].src;                            
      document.control_form.frame_nr.value = 25;                             
                                                                                 
      i_name = 26;                                                           
      theImages[26] = new Image();                                           
      theImages[26].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_023_A.GIF";                       
      imageNum[26] = true;                                                   
      document.animation.src = theImages[26].src;                            
      document.control_form.frame_nr.value = 26;                             
                                                                                 
      i_name = 27;                                                           
      theImages[27] = new Image();                                           
      theImages[27].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_024_0.GIF";                       
      imageNum[27] = true;                                                   
      document.animation.src = theImages[27].src;                            
      document.control_form.frame_nr.value = 27;                             
                                                                                 
      i_name = 28;                                                           
      theImages[28] = new Image();                                           
      theImages[28].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_024_A.GIF";                       
      imageNum[28] = true;                                                   
      document.animation.src = theImages[28].src;                            
      document.control_form.frame_nr.value = 28;                             
                                                                                 
      i_name = 29;                                                           
      theImages[29] = new Image();                                           
      theImages[29].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_025_0.GIF";                       
      imageNum[29] = true;                                                   
      document.animation.src = theImages[29].src;                            
      document.control_form.frame_nr.value = 29;                             
                                                                                 
      i_name = 30;                                                           
      theImages[30] = new Image();                                           
      theImages[30].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_025_A.GIF";                       
      imageNum[30] = true;                                                   
      document.animation.src = theImages[30].src;                            
      document.control_form.frame_nr.value = 30;                             
                                                                                 
      i_name = 31;                                                           
      theImages[31] = new Image();                                           
      theImages[31].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_026_0.GIF";                       
      imageNum[31] = true;                                                   
      document.animation.src = theImages[31].src;                            
      document.control_form.frame_nr.value = 31;                             
                                                                                 
      i_name = 32;                                                           
      theImages[32] = new Image();                                           
      theImages[32].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_026_A.GIF";                       
      imageNum[32] = true;                                                   
      document.animation.src = theImages[32].src;                            
      document.control_form.frame_nr.value = 32;                             
                                                                                 
      i_name = 33;                                                           
      theImages[33] = new Image();                                           
      theImages[33].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_027_0.GIF";                       
      imageNum[33] = true;                                                   
      document.animation.src = theImages[33].src;                            
      document.control_form.frame_nr.value = 33;                             
                                                                                 
      i_name = 34;                                                           
      theImages[34] = new Image();                                           
      theImages[34].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_027_A.GIF";                       
      imageNum[34] = true;                                                   
      document.animation.src = theImages[34].src;                            
      document.control_form.frame_nr.value = 34;                             
                                                                                 
      i_name = 35;                                                           
      theImages[35] = new Image();                                           
      theImages[35].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_028_0.GIF";                       
      imageNum[35] = true;                                                   
      document.animation.src = theImages[35].src;                            
      document.control_form.frame_nr.value = 35;                             
                                                                                 
      i_name = 36;                                                           
      theImages[36] = new Image();                                           
      theImages[36].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_028_A.GIF";                       
      imageNum[36] = true;                                                   
      document.animation.src = theImages[36].src;                            
      document.control_form.frame_nr.value = 36;                             
                                                                                 
      i_name = 37;                                                           
      theImages[37] = new Image();                                           
      theImages[37].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_029_0.GIF";                       
      imageNum[37] = true;                                                   
      document.animation.src = theImages[37].src;                            
      document.control_form.frame_nr.value = 37;                             
                                                                                 
      i_name = 38;                                                           
      theImages[38] = new Image();                                           
      theImages[38].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_029_A.GIF";                       
      imageNum[38] = true;                                                   
      document.animation.src = theImages[38].src;                            
      document.control_form.frame_nr.value = 38;                             
                                                                                 
      i_name = 39;                                                           
      theImages[39] = new Image();                                           
      theImages[39].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_030_0.GIF";                       
      imageNum[39] = true;                                                   
      document.animation.src = theImages[39].src;                            
      document.control_form.frame_nr.value = 39;                             
                                                                                 
      i_name = 40;                                                           
      theImages[40] = new Image();                                           
      theImages[40].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_030_A.GIF";                       
      imageNum[40] = true;                                                   
      document.animation.src = theImages[40].src;                            
      document.control_form.frame_nr.value = 40;                             
                                                                                 
      i_name = 41;                                                           
      theImages[41] = new Image();                                           
      theImages[41].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_031_0.GIF";                       
      imageNum[41] = true;                                                   
      document.animation.src = theImages[41].src;                            
      document.control_form.frame_nr.value = 41;                             
                                                                                 
      i_name = 42;                                                           
      theImages[42] = new Image();                                           
      theImages[42].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_031_A.GIF";                       
      imageNum[42] = true;                                                   
      document.animation.src = theImages[42].src;                            
      document.control_form.frame_nr.value = 42;                             
                                                                                 
      i_name = 43;                                                           
      theImages[43] = new Image();                                           
      theImages[43].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_032_0.GIF";                       
      imageNum[43] = true;                                                   
      document.animation.src = theImages[43].src;                            
      document.control_form.frame_nr.value = 43;                             
                                                                                 
      i_name = 44;                                                           
      theImages[44] = new Image();                                           
      theImages[44].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_032_A.GIF";                       
      imageNum[44] = true;                                                   
      document.animation.src = theImages[44].src;                            
      document.control_form.frame_nr.value = 44;                             
                                                                                 
      i_name = 45;                                                           
      theImages[45] = new Image();                                           
      theImages[45].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_033_0.GIF";                       
      imageNum[45] = true;                                                   
      document.animation.src = theImages[45].src;                            
      document.control_form.frame_nr.value = 45;                             
                                                                                 
      i_name = 46;                                                           
      theImages[46] = new Image();                                           
      theImages[46].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_033_A.GIF";                       
      imageNum[46] = true;                                                   
      document.animation.src = theImages[46].src;                            
      document.control_form.frame_nr.value = 46;                             
                                                                                 
      i_name = 47;                                                           
      theImages[47] = new Image();                                           
      theImages[47].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_034_0.GIF";                       
      imageNum[47] = true;                                                   
      document.animation.src = theImages[47].src;                            
      document.control_form.frame_nr.value = 47;                             
                                                                                 
      i_name = 48;                                                           
      theImages[48] = new Image();                                           
      theImages[48].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_034_A.GIF";                       
      imageNum[48] = true;                                                   
      document.animation.src = theImages[48].src;                            
      document.control_form.frame_nr.value = 48;                             
                                                                                 
      i_name = 49;                                                           
      theImages[49] = new Image();                                           
      theImages[49].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_035_0.GIF";                       
      imageNum[49] = true;                                                   
      document.animation.src = theImages[49].src;                            
      document.control_form.frame_nr.value = 49;                             
                                                                                 
      i_name = 50;                                                           
      theImages[50] = new Image();                                           
      theImages[50].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_035_A.GIF";                       
      imageNum[50] = true;                                                   
      document.animation.src = theImages[50].src;                            
      document.control_form.frame_nr.value = 50;                             
                                                                                 
      i_name = 51;                                                           
      theImages[51] = new Image();                                           
      theImages[51].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al03/AL032009_5W_036_0.GIF";                       
      imageNum[51] = true;                                                   
      document.animation.src = theImages[51].src;                            
      document.control_form.frame_nr.value = 51;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Claudette() { 
last_image=10;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_001_A.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_002_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_003_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_004_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_004_A.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      i_name = 7;                                                           
      theImages[7] = new Image();                                           
      theImages[7].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_005_0.GIF";                       
      imageNum[7] = true;                                                   
      document.animation.src = theImages[7].src;                            
      document.control_form.frame_nr.value = 7;                             
                                                                                 
      i_name = 8;                                                           
      theImages[8] = new Image();                                           
      theImages[8].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_005_A.GIF";                       
      imageNum[8] = true;                                                   
      document.animation.src = theImages[8].src;                            
      document.control_form.frame_nr.value = 8;                             
                                                                                 
      i_name = 9;                                                           
      theImages[9] = new Image();                                           
      theImages[9].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_006_0.GIF";                       
      imageNum[9] = true;                                                   
      document.animation.src = theImages[9].src;                            
      document.control_form.frame_nr.value = 9;                             
                                                                                 
      i_name = 10;                                                           
      theImages[10] = new Image();                                           
      theImages[10].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al04/AL042009_5W_006_A.GIF";                       
      imageNum[10] = true;                                                   
      document.animation.src = theImages[10].src;                            
      document.control_form.frame_nr.value = 10;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Danny() { 
last_image=18;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_002_0.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_003_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_004_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_005_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_006_0.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      i_name = 7;                                                           
      theImages[7] = new Image();                                           
      theImages[7].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_006_A.GIF";                       
      imageNum[7] = true;                                                   
      document.animation.src = theImages[7].src;                            
      document.control_form.frame_nr.value = 7;                             
                                                                                 
      i_name = 8;                                                           
      theImages[8] = new Image();                                           
      theImages[8].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_007_0.GIF";                       
      imageNum[8] = true;                                                   
      document.animation.src = theImages[8].src;                            
      document.control_form.frame_nr.value = 8;                             
                                                                                 
      i_name = 9;                                                           
      theImages[9] = new Image();                                           
      theImages[9].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_007_A.GIF";                       
      imageNum[9] = true;                                                   
      document.animation.src = theImages[9].src;                            
      document.control_form.frame_nr.value = 9;                             
                                                                                 
      i_name = 10;                                                           
      theImages[10] = new Image();                                           
      theImages[10].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_008_0.GIF";                       
      imageNum[10] = true;                                                   
      document.animation.src = theImages[10].src;                            
      document.control_form.frame_nr.value = 10;                             
                                                                                 
      i_name = 11;                                                           
      theImages[11] = new Image();                                           
      theImages[11].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_008_A.GIF";                       
      imageNum[11] = true;                                                   
      document.animation.src = theImages[11].src;                            
      document.control_form.frame_nr.value = 11;                             
                                                                                 
      i_name = 12;                                                           
      theImages[12] = new Image();                                           
      theImages[12].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_009_0.GIF";                       
      imageNum[12] = true;                                                   
      document.animation.src = theImages[12].src;                            
      document.control_form.frame_nr.value = 12;                             
                                                                                 
      i_name = 13;                                                           
      theImages[13] = new Image();                                           
      theImages[13].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_009_A.GIF";                       
      imageNum[13] = true;                                                   
      document.animation.src = theImages[13].src;                            
      document.control_form.frame_nr.value = 13;                             
                                                                                 
      i_name = 14;                                                           
      theImages[14] = new Image();                                           
      theImages[14].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_010_0.GIF";                       
      imageNum[14] = true;                                                   
      document.animation.src = theImages[14].src;                            
      document.control_form.frame_nr.value = 14;                             
                                                                                 
      i_name = 15;                                                           
      theImages[15] = new Image();                                           
      theImages[15].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_010_A.GIF";                       
      imageNum[15] = true;                                                   
      document.animation.src = theImages[15].src;                            
      document.control_form.frame_nr.value = 15;                             
                                                                                 
      i_name = 16;                                                           
      theImages[16] = new Image();                                           
      theImages[16].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_011_0.GIF";                       
      imageNum[16] = true;                                                   
      document.animation.src = theImages[16].src;                            
      document.control_form.frame_nr.value = 16;                             
                                                                                 
      i_name = 17;                                                           
      theImages[17] = new Image();                                           
      theImages[17].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_011_A.GIF";                       
      imageNum[17] = true;                                                   
      document.animation.src = theImages[17].src;                            
      document.control_form.frame_nr.value = 17;                             
                                                                                 
      i_name = 18;                                                           
      theImages[18] = new Image();                                           
      theImages[18].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al05/AL052009_5W_012_0.GIF";                       
      imageNum[18] = true;                                                   
      document.animation.src = theImages[18].src;                            
      document.control_form.frame_nr.value = 18;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Erika() { 
last_image=18;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_001_A.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_002_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_002_A.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_003_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_003_A.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      i_name = 7;                                                           
      theImages[7] = new Image();                                           
      theImages[7].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_004_0.GIF";                       
      imageNum[7] = true;                                                   
      document.animation.src = theImages[7].src;                            
      document.control_form.frame_nr.value = 7;                             
                                                                                 
      i_name = 8;                                                           
      theImages[8] = new Image();                                           
      theImages[8].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_004_A.GIF";                       
      imageNum[8] = true;                                                   
      document.animation.src = theImages[8].src;                            
      document.control_form.frame_nr.value = 8;                             
                                                                                 
      i_name = 9;                                                           
      theImages[9] = new Image();                                           
      theImages[9].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_005_0.GIF";                       
      imageNum[9] = true;                                                   
      document.animation.src = theImages[9].src;                            
      document.control_form.frame_nr.value = 9;                             
                                                                                 
      i_name = 10;                                                           
      theImages[10] = new Image();                                           
      theImages[10].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_005_A.GIF";                       
      imageNum[10] = true;                                                   
      document.animation.src = theImages[10].src;                            
      document.control_form.frame_nr.value = 10;                             
                                                                                 
      i_name = 11;                                                           
      theImages[11] = new Image();                                           
      theImages[11].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_006_0.GIF";                       
      imageNum[11] = true;                                                   
      document.animation.src = theImages[11].src;                            
      document.control_form.frame_nr.value = 11;                             
                                                                                 
      i_name = 12;                                                           
      theImages[12] = new Image();                                           
      theImages[12].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_006_A.GIF";                       
      imageNum[12] = true;                                                   
      document.animation.src = theImages[12].src;                            
      document.control_form.frame_nr.value = 12;                             
                                                                                 
      i_name = 13;                                                           
      theImages[13] = new Image();                                           
      theImages[13].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_007_0.GIF";                       
      imageNum[13] = true;                                                   
      document.animation.src = theImages[13].src;                            
      document.control_form.frame_nr.value = 13;                             
                                                                                 
      i_name = 14;                                                           
      theImages[14] = new Image();                                           
      theImages[14].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_007_A.GIF";                       
      imageNum[14] = true;                                                   
      document.animation.src = theImages[14].src;                            
      document.control_form.frame_nr.value = 14;                             
                                                                                 
      i_name = 15;                                                           
      theImages[15] = new Image();                                           
      theImages[15].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_008_0.GIF";                       
      imageNum[15] = true;                                                   
      document.animation.src = theImages[15].src;                            
      document.control_form.frame_nr.value = 15;                             
                                                                                 
      i_name = 16;                                                           
      theImages[16] = new Image();                                           
      theImages[16].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_008_A.GIF";                       
      imageNum[16] = true;                                                   
      document.animation.src = theImages[16].src;                            
      document.control_form.frame_nr.value = 16;                             
                                                                                 
      i_name = 17;                                                           
      theImages[17] = new Image();                                           
      theImages[17].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_009_0.GIF";                       
      imageNum[17] = true;                                                   
      document.animation.src = theImages[17].src;                            
      document.control_form.frame_nr.value = 17;                             
                                                                                 
      i_name = 18;                                                           
      theImages[18] = new Image();                                           
      theImages[18].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al06/AL062009_5W_010_0.GIF";                       
      imageNum[18] = true;                                                   
      document.animation.src = theImages[18].src;                            
      document.control_form.frame_nr.value = 18;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Fred() { 
last_image=21;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_002_0.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_003_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_004_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_005_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_006_0.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      i_name = 7;                                                           
      theImages[7] = new Image();                                           
      theImages[7].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_007_0.GIF";                       
      imageNum[7] = true;                                                   
      document.animation.src = theImages[7].src;                            
      document.control_form.frame_nr.value = 7;                             
                                                                                 
      i_name = 8;                                                           
      theImages[8] = new Image();                                           
      theImages[8].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_008_0.GIF";                       
      imageNum[8] = true;                                                   
      document.animation.src = theImages[8].src;                            
      document.control_form.frame_nr.value = 8;                             
                                                                                 
      i_name = 9;                                                           
      theImages[9] = new Image();                                           
      theImages[9].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_009_0.GIF";                       
      imageNum[9] = true;                                                   
      document.animation.src = theImages[9].src;                            
      document.control_form.frame_nr.value = 9;                             
                                                                                 
      i_name = 10;                                                           
      theImages[10] = new Image();                                           
      theImages[10].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_010_0.GIF";                       
      imageNum[10] = true;                                                   
      document.animation.src = theImages[10].src;                            
      document.control_form.frame_nr.value = 10;                             
                                                                                 
      i_name = 11;                                                           
      theImages[11] = new Image();                                           
      theImages[11].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_011_0.GIF";                       
      imageNum[11] = true;                                                   
      document.animation.src = theImages[11].src;                            
      document.control_form.frame_nr.value = 11;                             
                                                                                 
      i_name = 12;                                                           
      theImages[12] = new Image();                                           
      theImages[12].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_012_0.GIF";                       
      imageNum[12] = true;                                                   
      document.animation.src = theImages[12].src;                            
      document.control_form.frame_nr.value = 12;                             
                                                                                 
      i_name = 13;                                                           
      theImages[13] = new Image();                                           
      theImages[13].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_013_0.GIF";                       
      imageNum[13] = true;                                                   
      document.animation.src = theImages[13].src;                            
      document.control_form.frame_nr.value = 13;                             
                                                                                 
      i_name = 14;                                                           
      theImages[14] = new Image();                                           
      theImages[14].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_014_0.GIF";                       
      imageNum[14] = true;                                                   
      document.animation.src = theImages[14].src;                            
      document.control_form.frame_nr.value = 14;                             
                                                                                 
      i_name = 15;                                                           
      theImages[15] = new Image();                                           
      theImages[15].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_015_0.GIF";                       
      imageNum[15] = true;                                                   
      document.animation.src = theImages[15].src;                            
      document.control_form.frame_nr.value = 15;                             
                                                                                 
      i_name = 16;                                                           
      theImages[16] = new Image();                                           
      theImages[16].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_016_0.GIF";                       
      imageNum[16] = true;                                                   
      document.animation.src = theImages[16].src;                            
      document.control_form.frame_nr.value = 16;                             
                                                                                 
      i_name = 17;                                                           
      theImages[17] = new Image();                                           
      theImages[17].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_017_0.GIF";                       
      imageNum[17] = true;                                                   
      document.animation.src = theImages[17].src;                            
      document.control_form.frame_nr.value = 17;                             
                                                                                 
      i_name = 18;                                                           
      theImages[18] = new Image();                                           
      theImages[18].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_018_0.GIF";                       
      imageNum[18] = true;                                                   
      document.animation.src = theImages[18].src;                            
      document.control_form.frame_nr.value = 18;                             
                                                                                 
      i_name = 19;                                                           
      theImages[19] = new Image();                                           
      theImages[19].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_019_0.GIF";                       
      imageNum[19] = true;                                                   
      document.animation.src = theImages[19].src;                            
      document.control_form.frame_nr.value = 19;                             
                                                                                 
      i_name = 20;                                                           
      theImages[20] = new Image();                                           
      theImages[20].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_020_0.GIF";                       
      imageNum[20] = true;                                                   
      document.animation.src = theImages[20].src;                            
      document.control_form.frame_nr.value = 20;                             
                                                                                 
      i_name = 21;                                                           
      theImages[21] = new Image();                                           
      theImages[21].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al07/AL072009_5W_021_0.GIF";                       
      imageNum[21] = true;                                                   
      document.animation.src = theImages[21].src;                            
      document.control_form.frame_nr.value = 21;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Tropical_Depression_Eight() { 
last_image=5;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al08/AL082009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al08/AL082009_5W_002_0.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al08/AL082009_5W_003_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al08/AL082009_5W_004_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al08/AL082009_5W_005_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Grace() { 
last_image=5;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al09/AL092009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al09/AL092009_5W_002_0.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al09/AL092009_5W_003_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al09/AL092009_5W_004_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al09/AL092009_5W_005_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Henri() { 
last_image=9;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_002_0.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_003_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_004_0.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_005_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_006_0.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      i_name = 7;                                                           
      theImages[7] = new Image();                                           
      theImages[7].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_007_0.GIF";                       
      imageNum[7] = true;                                                   
      document.animation.src = theImages[7].src;                            
      document.control_form.frame_nr.value = 7;                             
                                                                                 
      i_name = 8;                                                           
      theImages[8] = new Image();                                           
      theImages[8].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_008_0.GIF";                       
      imageNum[8] = true;                                                   
      document.animation.src = theImages[8].src;                            
      document.control_form.frame_nr.value = 8;                             
                                                                                 
      i_name = 9;                                                           
      theImages[9] = new Image();                                           
      theImages[9].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al10/AL102009_5W_009_0.GIF";                       
      imageNum[9] = true;                                                   
      document.animation.src = theImages[9].src;                            
      document.control_form.frame_nr.value = 9;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    

function Ida() { 
last_image=47;

// *** Here is the list of files for the animation ***                        
      i_name = 1;                                                           
      theImages[1] = new Image();                                           
      theImages[1].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_001_0.GIF";                       
      imageNum[1] = true;                                                   
      document.animation.src = theImages[1].src;                            
      document.control_form.frame_nr.value = 1;                             
                                                                                 
      i_name = 2;                                                           
      theImages[2] = new Image();                                           
      theImages[2].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_001_A.GIF";                       
      imageNum[2] = true;                                                   
      document.animation.src = theImages[2].src;                            
      document.control_form.frame_nr.value = 2;                             
                                                                                 
      i_name = 3;                                                           
      theImages[3] = new Image();                                           
      theImages[3].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_002_0.GIF";                       
      imageNum[3] = true;                                                   
      document.animation.src = theImages[3].src;                            
      document.control_form.frame_nr.value = 3;                             
                                                                                 
      i_name = 4;                                                           
      theImages[4] = new Image();                                           
      theImages[4].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_002_A.GIF";                       
      imageNum[4] = true;                                                   
      document.animation.src = theImages[4].src;                            
      document.control_form.frame_nr.value = 4;                             
                                                                                 
      i_name = 5;                                                           
      theImages[5] = new Image();                                           
      theImages[5].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_003_0.GIF";                       
      imageNum[5] = true;                                                   
      document.animation.src = theImages[5].src;                            
      document.control_form.frame_nr.value = 5;                             
                                                                                 
      i_name = 6;                                                           
      theImages[6] = new Image();                                           
      theImages[6].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_003_A.GIF";                       
      imageNum[6] = true;                                                   
      document.animation.src = theImages[6].src;                            
      document.control_form.frame_nr.value = 6;                             
                                                                                 
      i_name = 7;                                                           
      theImages[7] = new Image();                                           
      theImages[7].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_004_0.GIF";                       
      imageNum[7] = true;                                                   
      document.animation.src = theImages[7].src;                            
      document.control_form.frame_nr.value = 7;                             
                                                                                 
      i_name = 8;                                                           
      theImages[8] = new Image();                                           
      theImages[8].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_004_A.GIF";                       
      imageNum[8] = true;                                                   
      document.animation.src = theImages[8].src;                            
      document.control_form.frame_nr.value = 8;                             
                                                                                 
      i_name = 9;                                                           
      theImages[9] = new Image();                                           
      theImages[9].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_005_0.GIF";                       
      imageNum[9] = true;                                                   
      document.animation.src = theImages[9].src;                            
      document.control_form.frame_nr.value = 9;                             
                                                                                 
      i_name = 10;                                                           
      theImages[10] = new Image();                                           
      theImages[10].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_005_A.GIF";                       
      imageNum[10] = true;                                                   
      document.animation.src = theImages[10].src;                            
      document.control_form.frame_nr.value = 10;                             
                                                                                 
      i_name = 11;                                                           
      theImages[11] = new Image();                                           
      theImages[11].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_006_0.GIF";                       
      imageNum[11] = true;                                                   
      document.animation.src = theImages[11].src;                            
      document.control_form.frame_nr.value = 11;                             
                                                                                 
      i_name = 12;                                                           
      theImages[12] = new Image();                                           
      theImages[12].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_006_A.GIF";                       
      imageNum[12] = true;                                                   
      document.animation.src = theImages[12].src;                            
      document.control_form.frame_nr.value = 12;                             
                                                                                 
      i_name = 13;                                                           
      theImages[13] = new Image();                                           
      theImages[13].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_007_0.GIF";                       
      imageNum[13] = true;                                                   
      document.animation.src = theImages[13].src;                            
      document.control_form.frame_nr.value = 13;                             
                                                                                 
      i_name = 14;                                                           
      theImages[14] = new Image();                                           
      theImages[14].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_007_A.GIF";                       
      imageNum[14] = true;                                                   
      document.animation.src = theImages[14].src;                            
      document.control_form.frame_nr.value = 14;                             
                                                                                 
      i_name = 15;                                                           
      theImages[15] = new Image();                                           
      theImages[15].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_008_0.GIF";                       
      imageNum[15] = true;                                                   
      document.animation.src = theImages[15].src;                            
      document.control_form.frame_nr.value = 15;                             
                                                                                 
      i_name = 16;                                                           
      theImages[16] = new Image();                                           
      theImages[16].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_008_A.GIF";                       
      imageNum[16] = true;                                                   
      document.animation.src = theImages[16].src;                            
      document.control_form.frame_nr.value = 16;                             
                                                                                 
      i_name = 17;                                                           
      theImages[17] = new Image();                                           
      theImages[17].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_009_0.GIF";                       
      imageNum[17] = true;                                                   
      document.animation.src = theImages[17].src;                            
      document.control_form.frame_nr.value = 17;                             
                                                                                 
      i_name = 18;                                                           
      theImages[18] = new Image();                                           
      theImages[18].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_010_0.GIF";                       
      imageNum[18] = true;                                                   
      document.animation.src = theImages[18].src;                            
      document.control_form.frame_nr.value = 18;                             
                                                                                 
      i_name = 19;                                                           
      theImages[19] = new Image();                                           
      theImages[19].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_011_0.GIF";                       
      imageNum[19] = true;                                                   
      document.animation.src = theImages[19].src;                            
      document.control_form.frame_nr.value = 19;                             
                                                                                 
      i_name = 20;                                                           
      theImages[20] = new Image();                                           
      theImages[20].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_012_0.GIF";                       
      imageNum[20] = true;                                                   
      document.animation.src = theImages[20].src;                            
      document.control_form.frame_nr.value = 20;                             
                                                                                 
      i_name = 21;                                                           
      theImages[21] = new Image();                                           
      theImages[21].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_012_A.GIF";                       
      imageNum[21] = true;                                                   
      document.animation.src = theImages[21].src;                            
      document.control_form.frame_nr.value = 21;                             
                                                                                 
      i_name = 22;                                                           
      theImages[22] = new Image();                                           
      theImages[22].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_013_0.GIF";                       
      imageNum[22] = true;                                                   
      document.animation.src = theImages[22].src;                            
      document.control_form.frame_nr.value = 22;                             
                                                                                 
      i_name = 23;                                                           
      theImages[23] = new Image();                                           
      theImages[23].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_013_A.GIF";                       
      imageNum[23] = true;                                                   
      document.animation.src = theImages[23].src;                            
      document.control_form.frame_nr.value = 23;                             
                                                                                 
      i_name = 24;                                                           
      theImages[24] = new Image();                                           
      theImages[24].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_014_0.GIF";                       
      imageNum[24] = true;                                                   
      document.animation.src = theImages[24].src;                            
      document.control_form.frame_nr.value = 24;                             
                                                                                 
      i_name = 25;                                                           
      theImages[25] = new Image();                                           
      theImages[25].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_014_A.GIF";                       
      imageNum[25] = true;                                                   
      document.animation.src = theImages[25].src;                            
      document.control_form.frame_nr.value = 25;                             
                                                                                 
      i_name = 26;                                                           
      theImages[26] = new Image();                                           
      theImages[26].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_015_0.GIF";                       
      imageNum[26] = true;                                                   
      document.animation.src = theImages[26].src;                            
      document.control_form.frame_nr.value = 26;                             
                                                                                 
      i_name = 27;                                                           
      theImages[27] = new Image();                                           
      theImages[27].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_015_A.GIF";                       
      imageNum[27] = true;                                                   
      document.animation.src = theImages[27].src;                            
      document.control_form.frame_nr.value = 27;                             
                                                                                 
      i_name = 28;                                                           
      theImages[28] = new Image();                                           
      theImages[28].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_016_0.GIF";                       
      imageNum[28] = true;                                                   
      document.animation.src = theImages[28].src;                            
      document.control_form.frame_nr.value = 28;                             
                                                                                 
      i_name = 29;                                                           
      theImages[29] = new Image();                                           
      theImages[29].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_017_0.GIF";                       
      imageNum[29] = true;                                                   
      document.animation.src = theImages[29].src;                            
      document.control_form.frame_nr.value = 29;                             
                                                                                 
      i_name = 30;                                                           
      theImages[30] = new Image();                                           
      theImages[30].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_017_A.GIF";                       
      imageNum[30] = true;                                                   
      document.animation.src = theImages[30].src;                            
      document.control_form.frame_nr.value = 30;                             
                                                                                 
      i_name = 31;                                                           
      theImages[31] = new Image();                                           
      theImages[31].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_018_0.GIF";                       
      imageNum[31] = true;                                                   
      document.animation.src = theImages[31].src;                            
      document.control_form.frame_nr.value = 31;                             
                                                                                 
      i_name = 32;                                                           
      theImages[32] = new Image();                                           
      theImages[32].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_019_0.GIF";                       
      imageNum[32] = true;                                                   
      document.animation.src = theImages[32].src;                            
      document.control_form.frame_nr.value = 32;                             
                                                                                 
      i_name = 33;                                                           
      theImages[33] = new Image();                                           
      theImages[33].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_020_0.GIF";                       
      imageNum[33] = true;                                                   
      document.animation.src = theImages[33].src;                            
      document.control_form.frame_nr.value = 33;                             
                                                                                 
      i_name = 34;                                                           
      theImages[34] = new Image();                                           
      theImages[34].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_020_A.GIF";                       
      imageNum[34] = true;                                                   
      document.animation.src = theImages[34].src;                            
      document.control_form.frame_nr.value = 34;                             
                                                                                 
      i_name = 35;                                                           
      theImages[35] = new Image();                                           
      theImages[35].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_021_0.GIF";                       
      imageNum[35] = true;                                                   
      document.animation.src = theImages[35].src;                            
      document.control_form.frame_nr.value = 35;                             
                                                                                 
      i_name = 36;                                                           
      theImages[36] = new Image();                                           
      theImages[36].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_021_A.GIF";                       
      imageNum[36] = true;                                                   
      document.animation.src = theImages[36].src;                            
      document.control_form.frame_nr.value = 36;                             
                                                                                 
      i_name = 37;                                                           
      theImages[37] = new Image();                                           
      theImages[37].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_022_0.GIF";                       
      imageNum[37] = true;                                                   
      document.animation.src = theImages[37].src;                            
      document.control_form.frame_nr.value = 37;                             
                                                                                 
      i_name = 38;                                                           
      theImages[38] = new Image();                                           
      theImages[38].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_022_A.GIF";                       
      imageNum[38] = true;                                                   
      document.animation.src = theImages[38].src;                            
      document.control_form.frame_nr.value = 38;                             
                                                                                 
      i_name = 39;                                                           
      theImages[39] = new Image();                                           
      theImages[39].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_023_0.GIF";                       
      imageNum[39] = true;                                                   
      document.animation.src = theImages[39].src;                            
      document.control_form.frame_nr.value = 39;                             
                                                                                 
      i_name = 40;                                                           
      theImages[40] = new Image();                                           
      theImages[40].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_023_A.GIF";                       
      imageNum[40] = true;                                                   
      document.animation.src = theImages[40].src;                            
      document.control_form.frame_nr.value = 40;                             
                                                                                 
      i_name = 41;                                                           
      theImages[41] = new Image();                                           
      theImages[41].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_024_0.GIF";                       
      imageNum[41] = true;                                                   
      document.animation.src = theImages[41].src;                            
      document.control_form.frame_nr.value = 41;                             
                                                                                 
      i_name = 42;                                                           
      theImages[42] = new Image();                                           
      theImages[42].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_024_A.GIF";                       
      imageNum[42] = true;                                                   
      document.animation.src = theImages[42].src;                            
      document.control_form.frame_nr.value = 42;                             
                                                                                 
      i_name = 43;                                                           
      theImages[43] = new Image();                                           
      theImages[43].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_025_0.GIF";                       
      imageNum[43] = true;                                                   
      document.animation.src = theImages[43].src;                            
      document.control_form.frame_nr.value = 43;                             
                                                                                 
      i_name = 44;                                                           
      theImages[44] = new Image();                                           
      theImages[44].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_025_A.GIF";                       
      imageNum[44] = true;                                                   
      document.animation.src = theImages[44].src;                            
      document.control_form.frame_nr.value = 44;                             
                                                                                 
      i_name = 45;                                                           
      theImages[45] = new Image();                                           
      theImages[45].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_026_0.GIF";                       
      imageNum[45] = true;                                                   
      document.animation.src = theImages[45].src;                            
      document.control_form.frame_nr.value = 45;                             
                                                                                 
      i_name = 46;                                                           
      theImages[46] = new Image();                                           
      theImages[46].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_026_A.GIF";                       
      imageNum[46] = true;                                                   
      document.animation.src = theImages[46].src;                            
      document.control_form.frame_nr.value = 46;                             
                                                                                 
      i_name = 47;                                                           
      theImages[47] = new Image();                                           
      theImages[47].src = "http://www.nhc.noaa.gov/archive/2009/graphics/al11/AL112009_5W_027_0.GIF";                       
      imageNum[47] = true;                                                   
      document.animation.src = theImages[47].src;                            
      document.control_form.frame_nr.value = 47;                             
                                                                                 
      fwd();                                                                     
}                                                                                   
                                                                                    
//===> Check selection status of image in animation loop                            
function checkImage(status,i)                                                       
{                                                                                   
   if (status == true)                                                              
      imageNum[i] = false;                                                          
   else imageNum[i] = true;                                                         
}                                                                                   
                                                                                    
                                                                                    
//===> Reload graphics with new image_type                                          
function go2image(number)                                                           
{                                                                                   
   stop();                                                                          
   current_image = number;                                                          
   document.animation.src = theImages[number].src;          //display image         
   document.control_form.frame_nr.value = current_image;    //display image number  
}                                                                                   
                                                                                    
//===> resize graphic                                                               
function enlargeImage()                                                             
{                                                                                   
   document.animation.height="716";                                               
   document.animation.width="895";                                                
}                                                                                   
function shrinkImage()                                                              
{                                                                                   
   document.animation.height="432";                                               
   document.animation.width="540";                                                
}
