
// SMS Send
// Character Counter for IE4 and Netscape 4

function checkLen(Target) {
	StrLen = Target.value.length;
	if (StrLen > 145 ) {
		Target.value = Target.value.substring(0,145);
		charsLeft = 0;
	}
	else {
		charsLeft = 145 - StrLen;
	}
	document.sendsmsform.charsLeft.value = charsLeft;
}