	function hideFlash()
	{
		var obj = document.getElementById("corpsFlash");
		if (obj.style.display=='none') { obj.style.display = 'inline';} else	{obj.style.display = 'none';}
		showFlashBandeau();
	}

	function showFlashCorps()
	{
		var obj = document.getElementById("corpsFlash");
		if (obj.style.display=='none') { obj.style.display = 'inline';} else	{obj.style.display = 'none';}
	}

	function showFlashBandeau()
	{
		var obj3 = document.getElementById("bandeauF");
		var obj4 = document.getElementById("bandeauT");
		var obj5 = document.getElementById("flash");
		if (obj3.innerHTML!="")
		{
			obj3.style.display = 'inline';
			obj4.style.display = 'none';
		}
		else
		{
			obj3.style.display = 'none';
			obj4.style.display = 'inline';
		}
		//obj5.style.height = '90px';
	}
