up_down = function(img,body)
{
		if(img.src.indexOf("up") > -1)
		{
			img.src="arrow_down.gif";
			document.getElementById(body).style.display = "none";
		}
		else
		{
			img.src="arrow_up.gif";
			document.getElementById(body).style.display = "block";
		}
}
function ContaCaracteres(){
   intCaracteres = 250 - document.form.mensagem.value.length;
   if (intCaracteres > 0) {
      document.form.caracteres.value = intCaracteres;
      return true;
   }
   else {
      document.form.caracteres.value = 0;
      document.form.mensagem.value = document.form.mensagem.value.substr(0,250)
      return false;
   }
}
function Validar(){
   if (ContaCaracteres()){
      alert('Enviado com Sucesso');
   }
   else{
      alert("Número de caracteres do comentário maior que 300.");
   }
}
