function checkCount()
{
var strCount = document.form1.description.value;
var strLength = strCount.length;
	if(strLength > 70)
	{
	document.form1.description.value=strCount.substring(0,70);
	alert("Only 70 characters are allowed for Text Ad description");
	}

}

