function CalculaAltura()
{
   document.getElementById('the_iframe').height = 1;
  //find the height of the internal page
  var the_height = document.getElementById('the_iframe').contentWindow.document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('the_iframe').height = the_height;
}

function Enviar()
{
   if (document.frmInfoMsg.nome.value == "")
   {
      alert("Informe seu nome!");
      return;
   }
   if (document.frmInfoMsg.email.value == "")
   {
      alert("Informe seu email!");
      return;
   }
   if (document.frmInfoMsg.mensagem.value == "")
   {
      alert("O email deve possuir algum conteúdo\npara ser enviado!");
      return;
   }
   document.frmInfoMsg.submit();
}

function EntregaEmail(condicao)
{
   if (condicao == true)
   {
      alert ("Mensagem enviada corretamente!","MCQ");
      document.location.href = "./contato.htm";
   }
   else
   {
      alert ("A mensagem não foi enviada corretamente.\nPor favor tente novamente!");
      history.back();
   }
}
