function browser(){
              // dectection du navigateur
              if(navigator.userAgent.indexOf('opera')!=-1)
                 this.opera=true;
              if(navigator.userAgent.indexOf('Konqueror')!=-1)
                 this.Konqueror=true;

              if(navigator.userAgent.indexOf('Safari')!=-1)
                 this.Safari=true;

               if(navigator.userAgent.indexOf('Firefox/1.0')!=-1)
                 this.ff10=true;

               if(navigator.userAgent.indexOf('Firefox/1.5')!=-1)
                 this.ff15=true;


               if(navigator.userAgent.indexOf('Firefox/3.5')!=-1)
                 this.ff35=true;


 	       if(navigator.userAgent.indexOf('Netscape/7.0')!=-1)
                 this.netscape=true;


	      if(navigator.userAgent.indexOf('MSIE 7.')!=-1)
                 this.ie7=true;

	      if(navigator.userAgent.indexOf('MSIE 6.')!=-1)
                 this.ie6=true;

            if(navigator.userAgent.indexOf('MSIE 5.')!=-1)
                 this.ie5=true;

               //le navigateur en chaîne de caractères
               if(this.opera)
                  this.navigateur='opera';

                if(this.Konqueror)
                  this.navigateur='Konqueror';

                if(this.Safari)
                  this.navigateur='Safari';

                if(this.ff10 || this.ff15 || this.ff35)
                  this.navigateur='Firefox';

                if(this.ie7 || this.ie6 || this.ie5)
                  this.navigateur='Internet Explorer';

                if(!this.navigateur)
                  this.navigateur='inconnu';

            }
