Здравствуйте, подскажите как исправить данный скрипт... У меня в textarea будет по умолчанию какой-та текст и мне нужно знать сколько там символов (если добавить символ, мне покажет)
<script language="JavaScript">
CheckLen (document.forms('send'))
</script>
<script>
function CheckLen(form)
{
ChooseLen ();
return true;
}
function ChooseLen() {
M = window.document.send.tmpl_text.value.length;";
window.document.send.count.value = M;
}
</script>
<form name="send" onsubmit="return CheckEmpty();">
<textarea onchange='return CheckLen(send);' onkeyup='return CheckLen(send);' name='tmpl_text' style='width:100%'>fcvxcvxcvxcv</textarea>
<input name='count' type='text' onfocus='window.document.send.text.focus();'>
</form>