function The_Limit() {var taObj=event.srcElement;if (taObj.value.length==taObj.maxLength*1) return false;}
function The_Count(Desc_Name,Total_Name,maxL) { 
	the_Desc = document.getElementById(Desc_Name)
	the_Total = document.getElementById(Total_Name)
	if(the_Desc.value.length > maxL){
		alert("You Tried to paste in more information that is allowed (" + maxL +  " character limit)");
		the_Desc.value = the_Desc.value.substring(0,maxL)
	}
	the_Total.value = the_Desc.value.length
}
