// from http://www.forum.moteurprog.com/php/forum-msg-13298-1.htm
/* utilisation


*/


function limit_textarea_length(txt,len) {
  if (txt.value.length>len) {
    txt.value = txt.value.substring(0,len);
  }
}




/*
version alernative :
<script	type="text/javascript"> 
function ctr(max) 
{	zon=document.getElementById("txt"); 
	if (zon.value.length>max) 
		zon.value=zon.value.substring(0,max);	} 
</script> 
</head> 
<body> 
<textarea	onkeyup="ctr(10);" 
		id="txt"></textarea> 
</body></html> 
*/