/************************************************************************
* All College Theatre
* javascripts/actc.js
* Created: 1/19/08
* Usage: General javascipt needs for the ACT site
************************************************************************/

// Script to limit textarea input
function textCounter(field, countfield, maxlimit) {
  if (field.value.length > maxlimit) // if too long...trim it!
    field.value = field.value.substring(0, maxlimit);
  // otherwise, update 'characters left' counter
  else 
    countfield.value = maxlimit - field.value.length;
}
