<!-- CharacterCountVerification js -->
<!-- Updated:  10/10/2005 -->

function CharCountVerification(charcount, fieldid) {
  var el = document.getElementById(fieldid);
  if (el.value.length > charcount) {
    alert('Sorry, you are over the limit of '+ charcount +' characters.');
    el.value = el.value.substring(0,charcount);
  }
  document.getElementById(fieldid+'_cnt').value= charcount - parseInt(el.value.length);
}
