function affFlash(sChemin, width, height)
	{
	var bOk = 0;
	
	if ((navigator.userAgent.indexOf('Mac') > -1) && !(navigator.userAgent.indexOf('Safari') > -1))
		{
		bOk = 1;
		}
		
	if ((navigator.userAgent.indexOf('Windows') > -1) && !document.all)
		{
		bOk = 1;
		}
	
	if (bOk == 1) 
			{ 
			document.write('<embed src="'+ sChemin +'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" type="application/x-shockwave-flash" width="'+ width +'" height="'+ height +'"></embed><noembed>Votre Navigateur ne peut lire les animations Flahs.</noembed>');
			} 
	}

