// JavaScript Document

	function clignote(id)
	{
		if (id == 0){
		clearInterval(intc);
		document.getElementById('champ').style.color = '#AD1841';
		document.getElementById('champ').value = '';
		}

	}
	
	function clignote2()
	{
		var color = document.getElementById('champ').style.color;
		var newcolor;
		if (color == 'white') newcolor = '#AD1841'; else newcolor = 'white';
		document.getElementById('champ').style.color = newcolor;
	}
	
	function valide()
	{
		document.forms.cb.submit();
	}

	var intc = setInterval('clignote2()', 500)