<!--
//Hide script from older browsers
// Text counter for one textarea in form
function textCounter(field,countfield,maxlimit)
{
 if(field.value.length>maxlimit)
 {
  field.value = field.value.substring(0,maxlimit);
  alert('Number of characters cannot exceed the limit specified by this form.');
  return false;
 }
 else
 {
  countfield.value = maxlimit - field.value.length;
 }
}
// Text counter for another textarea in same form
function textCounter2(field,countfield,maxlimit)
{
 if (field.value.length>maxlimit)
 {
  field.value = field.value.substring(0,maxlimit);
  alert('Number of characters cannot exceed the limit specified by this form.');
  return false;
 }
 else
 {
  countfield.value = maxlimit - field.value.length;
 }
}
// End hide
-->

