// JavaScript Document




<!--

    
function max_count() {
  if (document.getElementById("comments").value.length > 250) {
    alert("Your entry has exceeded the maximum length.");
    document.getElementById("comments").value = document.getElementById("comments").value.substring(0, 250);
  }
  document.sendform.charstyped.value = 250 - document.getElementById("comments").value.length;
}

function resetForm() {
  document.sendform.comments.value = "";
  document.sendform.charstyped.value = 250;
  document.sendform.comments.focus();
}
    
//-->

//  End -->

