// JavaScript Document

function testerconfig()
	{
		var quelSyst = 1;
	
		if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("Mac") != -1 )
		{
			quelSyst = 0; //si le navigateur est explorer sous Mac
		}
		else 
		{
			if (navigator.appName == "Netscape" && navigator.appVersion.indexOf("Safari") == -1)
			{
				quelSyst = 0; //si le navigateur est un netscape ou mozilla ou firefox
			}
		}
	
		if(quelSyst == 1) return true;
		else return false;
	}