<!--
    var Loaded = false;
    var LastImg0 = null;
    var LastImg1 = null;
    var LastImg2 = null;
    var img0, img1, img2, txt;
    
    function RollOn( image0 )
    {
     RollOn( image0, null, null );
    }
    
    function RollOn( image0, image1 )
    {
     RollOn( image0, image1, null );
    }
    
    function RollOn( image0, image1, image2 )
    {
     var rtrn = false;
     if( Loaded )
     {
      if( img0[ image0 ] )
      {
       LastImg0 = document.images[ image0 ].src;
       document.images[ image0 ].src = img0[ image0 ].src;
      }
      if( image1 && img1[ image0 ] )
      {
       LastImg1 = document.images[ image1 ].src;
       document.images[ image1 ].src = img1[ image0 ].src;
      }
      if( image2 && img2[ image0 ] )
      {
       LastImg2 = document.images[ image2 ].src;
       document.images[ image2 ].src = img2[ image0 ].src;
      }
      if( txt[ image0 ] )
      {
       window.status = txt[ image0 ];
       rtrn = true;
      }
     }
     return rtrn;
    }
    
    function RollOff( image0 )
    {
     RollOff( image0, null, null );
    }
    
    function RollOff( image0, image1 )
    {
      RollOff( image0, image1, null );
    }
    
    function RollOff( image0, image1, image2 )
    {
     var rtrn = false;
     if( Loaded )
     {
      if( LastImg0 )
      {
       document.images[ image0 ].src = LastImg0;
       LastImg0 = null;
      }
      if( LastImg1 )
      {
       document.images[ image1 ].src = LastImg1;
       LastImg1 = null;
      }
      if( LastImg2 )
      {
       document.images[ image2 ].src = LastImg2;
       LastImg2 = null;
      }
      if( txt[ "DEFAULT" ] )
      {
       window.status = txt[ "DEFAULT" ];
       rtrn = true;
      }
     }
     return rtrn;
    }
    
    function PageInit()
    {
     if( document.images )
     {
      img0 = new Array();
      img1 = new Array();
      img2 = new Array();
      txt = new Array();
      setTimeout( 'if( txt[ "DEFAULT" ] ) window.status = txt[ "DEFAULT" ]', 2000 );


      // EDIT BEGIN -- ROLLOVER DEFINITIONS

      txt[ "DEFAULT" ] = 'Protection Technologies';

      img0[ "Preview" ] = new Image();
      img0[ "Preview" ].src = 'images/nav_preview_on.gif';
      txt[ "Preview" ] = 'Seminar Previews';
      
      img0[ "Training" ] = new Image();
      img0[ "Training" ].src = 'images/nav_training_on.gif';
      txt[ "Training" ] = 'Training';
      
      img0[ "About" ] = new Image();
      img0[ "About" ].src = 'images/nav_about_on.gif';
      txt[ "About" ] = 'About Us';
      
      img0[ "Clients" ] = new Image();
      img0[ "Clients" ].src = 'images/nav_clients_on.gif';
      txt[ "Clients" ] = 'Our Clients';
      
      img0[ "Contact" ] = new Image();
      img0[ "Contact" ].src = 'images/nav_contact_on.gif';
      txt[ "Contact" ] = 'Contact Us';
      
      // EDIT END -- ROLLOVER DEFINITIONS

      Loaded = true;
     }
    }
 //-->
