var textValue = "";
function charCount(numberOfChar, maxChar)
{
	if(numberOfChar.value.length <= maxChar)
	{
		textValue = numberOfChar.value;
	}
	if(numberOfChar.value.length > maxChar)
	{
		numberOfChar.value = textValue;
		document.parentWindow.alert("You have entered the Maximum number of characters allowed!");
	}
}

function Entry(description)
{
	textValue = description.value
}

