// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function limitText(textArea, length) {
    if (textArea.value.length > length) {
        textArea.value = textArea.value.substr(0, length);
		alert('Sorry, the maximum length for this field is ' + length + ' characters.');
    }
}