<!--
	function Compter(target, max, nomchamp)   {
		StrLen = target.value.length
		if (StrLen > max ) {
			target.value = target.value.substring(0,max);
				CharsLeft = max;
		}
		else{
			CharsLeft = StrLen;
		}
		nomchamp.value = max-CharsLeft;
	} 
	
		//-->
