function limita2(campo)
{
	if(document.frmCadastro.length >= 1)
	{
		var tamanho = document.frmCadastro[campo].value.length;
		var tex=document.frmCadastro[campo].value;
		if (tamanho>=400)
		{	
		 document.frmCadastro[campo].value=tex.substring(0,400); 
		}
		return true;
	}
	else
	{
		var tamanho = document.frmCadastro[campo].value.length;
		var tex=document.frmCadastro[campo].value;
		if (tamanho>=400)
		{	
		 document.frmCadastro[campo].value=tex.substring(0,400); 
		}
		return true;
	}
}

function contacampo2(campo, tamtxt)
{
	if(document.frmCadastro.length > 1)
		document.frmCadastro[tamtxt].value = 400-document.frmCadastro[campo].value.length;
	else	
		document.frmCadastro[tamtxt].value = 400-document.frmCadastro[campo].value.length;
}

