var max=160;  		
function compter(f) {
	var txt=f.message.value;
	var nb=txt.length;
	f.nbcar.value=nb;
}

function timer() {
	compter(document.forms["infos"]);
	setTimeout("timer()",100);
}
