function keyHolder(textAreaId)
{
	if ($F(textAreaId).length >= 1000)
		return false;
}

function cutMsg(textAreaId, charsLeftId)
{
	enteredText = $(textAreaId).value;
	$(charsLeftId).update((1000 - enteredText.length > 0 ? 1000 - enteredText.length : 0));
	if (enteredText.length > 1000)
	{
		$(textAreaId).value = enteredText.substr(0, 1000);
		return false;
	}
}


function disableAnchor(id)
{
	if (!($(id).value.length > 0))
		return false;
}

function submitFormLoader(){
	// update the submit button styles and disable it to prevent any more clicks
	$('submit_animator').style.visibility='visible';
	$('overlay_submit_button').className ='button_send_deactive';
	$('overlay_submit_button').disabled = 'true';
}
