/*	Classe Navigateur	*/
function Navigateur()
{
	this.nom = navigator.appName;
	this.codeNom = navigator.appCodeName;
	this.version = navigator.appVersion;
	this.javaActif = navigator.javaEnabled();
	this.lEcran = screen.width;
	this.hEcran = screen.height;
  
	// si IE
	if(this.nom == "Microsoft Internet Explorer")
	{
		this.lEcranClient = document.documentElement.clientWidth;
		this.hEcranClient = document.documentElement.clientHeight;
		this.scrollHaut = document.documentElement.scrollTop;
	}
	else
	{
		this.lEcranClient = window.innerWidth;
		this.hEcranClient = window.innerHeight;
		this.scrollHaut = window.pageYOffset;
	}	
}
