function getCharCount(desc, limit) {
	var color = "green";
	if (desc.length > limit)
		color = "red";
	var newCount = "<font color='" + color + "'>(" + desc.length + " characters)</font>";
	document.getElementById("charCount").innerHTML = newCount;
}
