function Flash()
{
	document.getElementById('fadebg').firstChild.style.color = '#cc0000'; 
	document.getElementById('fadebg').style.backgroundColor = '#FFBF27'; 
	setTimeout(ChangeBack, 1500);
}

function ChangeBack()
{
	document.getElementById('fadebg').firstChild.style.color = '#ffffff'; 
	document.getElementById('fadebg').style.backgroundColor = '#5B7B89';
}
