function FlashPresent()
{
	if(navigator.appVersion.indexOf("MSIE") != -1){
		//alert(1);
		try{
			new ActiveXObject("ShockwaveFlash.ShockwaveFlash.5");
			FlashMode = true;
		}
		catch(erreur){
			FlashMode = false;
		}

	}
	else
	{
		FlashMode = false;
		if (navigator.plugins && navigator.plugins.length > 0)
		{
			if (navigator.plugins["Shockwave Flash"])
			{
				var plugin_version = 0;
				var words = navigator.plugins["Shockwave Flash"].description.split(" ");
		
				for (var i = 0; i < words.length; ++i)
				{
					if (isNaN(parseInt(words[i])))
					continue;
					plugin_version = words[i];
				}
				if (plugin_version >= 6)
				{
					var plugin = navigator.plugins["Shockwave Flash"];
					var numTypes = plugin.length;
					for (j = 0; j < numTypes; j++) 
					{
						mimetype = plugin[j];
						if (mimetype)
						{
							if (mimetype.enabledPlugin && (mimetype.suffixes.indexOf("swf") != -1))
								FlashMode = 1;
							// Mac wierdness
							if (navigator.mimeTypes["application/x-shockwave-flash"] == null)
								FlashMode = 0;
						}
					}
				}
			}
		}
	}
	return FlashMode;
	//return false;
}