function testNavigateur()
{
   testValue = 0;

   if (navigator.appName.indexOf('Internet Explorer') >= 0 && navigator.appVersion.indexOf('MSIE 6') >= 0)
   {
      document.navimg.src = 'ico/ie6.png';
      document.navimg.alt = 'IE6';
      qual = 'partiellement ';
      testValue = 1;
   };
   if (navigator.appName.indexOf('Internet Explorer') >= 0 && navigator.appVersion.indexOf('MSIE 7') >= 0)
   {
      document.navimg.src = 'ico/ie7.png';
      document.navimg.alt = 'IE7 ou supérieur';
      qual = 'totalement ';
      testValue = 1;
   };
   if (navigator.userAgent.indexOf('Firefox') >= 0)
   {
      document.navimg.src = 'ico/firefox.png';
      document.navimg.alt = 'Mozilla Firefox';
      qual = 'totalement ';
      testValue = 1;
   };
   if (navigator.userAgent.indexOf('Opera') >= 0)
   {
      document.navimg.src = 'ico/opera.png';
      document.navimg.alt = 'Tucows Opera';
      qual = 'totalement ';
      testValue = 1;
   };


   if (testValue == 1 )
   {
      document.navqual.alt = 'Ce site est ' + qual + 'compatible avec ' + document.navimg.alt ;

      if (qual == 'totalement ')
      { document.navqual.src = 'ico/compatiblefull.png';}; 
   
      if (qual == 'partiellement ')
      { document.navqual.src = 'ico/compatiblepartial.png';}; 
   
      if (qual == 'in')
      { document.navqual.src = 'ico/compatiblenon.png';};
   };

   
};