function butineurCall(){

Navigateur = navigator.appName;
  var agent = navigator.userAgent;
  
if (Navigateur == 'Netscape')
{	if (agent.indexOf("Gecko", 1)!=-1)
	{	
		if( agent.indexOf("Firefox", 1)!=-1)	
		{retour = "firefox";		
		}
		else/* Gecko autre que Firefox*/		
		{retour = "mozilla";
		}
	}
}
else if (Navigateur == 'Microsoft Internet Explorer')
{
/* ? es-ce opera qui feinte */
	if( agent.indexOf("Opera", 1)!=-1)	
	{retour = "opera";
	}
	else/* IE */		
	{retour = "ie";
	}		
}
else
{/*navigateur inconnu*/
retour = "?"
}
return  retour;
}

