<!--
sending = 0;

function updateCharCounter(src_ta,txt,maxlen) {
document.getElementById(src_ta + "_cc").innerHTML = txt.length;
if (txt.length >= maxlen) {
document.getElementById(src_ta).value = txt.substring(0,maxlen);
document.getElementById(src_ta + "_cc").innerHTML = '<span class="error">'+maxlen+'</span>';
}
}

function liteon(src) {
document.getElementById(src).style.backgroundColor = lite_on;
}

function liteoff(src) {
document.getElementById(src).style.backgroundColor = lite_off;
}
//-->
