<!--
function checkMsgLen(formObj, maxlen) {
  var len = formObj.msg.value.length
  formObj.count.value = maxlen-len
  if ( len>=maxlen) {
    return false
  }
}
function numTyped(current, next,maxlen) {
  var len = current.value.length
  if (len==maxlen) {
    next.focus()
  }
}
//-->
