﻿// Apply counter to textarea based on dept
function applyCounter() {
	// Culture
	var notice = 'characters remaining';

	if (typeof(culture) != 'undefined') {
		if (culture == 'fr') {
			notice = 'caractères restants';
		} else if (culture == 'es-es') {
			notice = 'caracteres restantes';
		} else if ((culture == 'de') || (culture == 'de-at')) {
			notice = 'Zeichen übrig';
		}
	}

	// Always unbind
	$("*[id$='tbComments']").unbind();
	$("span.charcounter").remove();
	
	var selected = parseInt($("*[id$='ddlDepartment']").attr('selectedIndex'));
	if ((selected <= 3) && (selected >= 1)) {
		$("*[id$='tbComments']").charCounter(200, {
			format: "(%1 " + notice + ")"
		});
	}
};

$(document).ready(function() {
	applyCounter();
	$("*[id$='ddlDepartment']").change(applyCounter);
});