// JavaScript Document
function flashAffiche(id, flash)
{
	if (document.getElementById) {
		document.getElementById(id).innerHTML = flash;
	}
}
