function textareaCounter( Field, MaxChars )
	{
	var TxtArea = document.getElementById( Field );
	var Length = TxtArea.value.length;
	if (MaxChars < Length)
		{
	//	alert( "Whoa doggy!" );
		TxtArea.style.backgroundColor = "#FF8888";
		}
	else	{
		TxtArea.style.backgroundColor = "#FFFFFF";
		}
	Rent = document.getElementById( Field + "_parent" ); 
	Span_old = document.getElementById( Field + "_count" );
	Span_new = document.createElement( "span" );
	Span_new.setAttribute( "id", Field + "_count" );
	Count_new = document.createTextNode( (MaxChars - Length) );
	Span_new.appendChild( Count_new );
	Rent.replaceChild( Span_new, Span_old );
 	}


// Not sure this is used 2007 Aug 12, grep -r on TU and GP doesn't find anything.
//	function fireOnload( args )
//	// Only useful when the Post already has content.
//	// BUG. Needs to be split.
//		{
//		textCounter( 'Summary', 360, 'SummaryCharsRem' );
//		textCounter( 'Body', 800, 'BodyCharsRem' );
//		}
