// keep the next line as it is. need it to benefit from InterDev colors, but must comment it out.
// <SCRIPT LANGUAGE="JScript">
<!-- Hide from old browsers

//====================== Message Text Character Counter ========

var cc = 0;
var submittedFlag = false;
function count(strText, strCount, intMaxLen) {
   if(strText.value.length > intMaxLen) {
     strText.value = strText.value.substring(0,intMaxLen);
     cc++;
     if(cc > 0) {
       document.getElementById(strCount).innerHTML = "None!";
       cc = 0;
       return;
       }
     }
     document.getElementById(strCount).innerHTML = intMaxLen - strText.value.length;
	 return (intMaxLen - strText.value.length);     
}


