function limit(oText, iLen)
{
	if (oText.value.length > iLen)
		oText.value = oText.value.substring(0,iLen);
}
