var check = false
function chklen(target,maxlength) {
  if ( target.value.length >= maxlength ) {
    check = false ;
    alert("字数オーバーです。半角10文字以内で入力してください。");
    target.value = target.value.substr(0,maxlength)
    target.focus();
  } else {
    check = true 
  }
}
document.write("<form action=\"\" onsubmit=\"return check\">");
document.write("<p><textarea name=\"body\" cols=\"50\" rows=\"8\"");
document.write(" onkeydown=\"chklen(this,10)\"></textarea></p>");
document.write("</form>");
