function Browser() {
this.nom="? (inconnu au bataillon)";
if (navigator.userAgent.indexOf('Opera') !=-1)
	{
	this.opera = true;
	this.nom="Opera";
	}
if (navigator.userAgent.indexOf('Konqueror') !=-1)
	{
	this.konqueror = true;
	this.nom="Konqueror";
	}
if (navigator.userAgent.indexOf('Safari') !=-1)
	{
	this.safari = true;
	this.nom="Safari";
	}
if (navigator.userAgent.indexOf('Firefox') !=-1)
	{
	this.ff10 = true;
	this.nom="Firefox";
	}
if (navigator.userAgent.indexOf('Firefox/1') !=-1)
	{
	this.ff15 = true;
	this.nom="Firefox 1";
	}
if (navigator.userAgent.indexOf('Firefox/2') !=-1)
	{
	this.ff20 = true;
	this.nom="Firefox 2";
	}
if (navigator.userAgent.indexOf('Firefox/3') !=-1)
	{
	this.ff20 = true;
	this.nom="Firefox 3";
	}
if (navigator.userAgent.indexOf('Netscape/7.0') !=-1)
	{
	this.netscape = true;
	this.nom="Netscape 7.0";
	}
if (navigator.userAgent.indexOf('MSIE 6') !=-1)
	{
	this.ie6 = true;
	this.nom="Microsoft Explorer 6";
	}
if (navigator.userAgent.indexOf('MSIE 7') !=-1)
	{
	this.ie7 = true;
	this.nom="Microsoft Explorer 7";
	}
if (navigator.userAgent.indexOf('MSIE 8') !=-1)
	{
	this.ie8 = true;
	this.nom="Microsoft Explorer 8";
	}
if (navigator.userAgent.indexOf('MSIE 9') !=-1)
	{
	this.ie9 = true;
	this.nom="Microsoft Explorer 9";
	}

}
var browser = new Browser();
