
function submeteComentario(){
	var txtNome, txtEmail, txaComentario, id_html, area_html;

	txtNome = document.getElementById("txtNome").Value;
	txtEmail = document.getElementById("txtEmail").Value;
	txaComentario = document.getElementById("txaComentario").Value;
	idHtml = document.getElementById("id_html").Value;
	
//	if (document.getElementById("txtNome").Value.length > 3){
		document.getElementById("frmPostComentario").action = "comentarioInsere.asp";
		document.getElementById("frmPostComentario").method = "post";
		document.getElementById("frmPostComentario").submit();
//	}else{
//		alert("Nome/Apelido Obrigatório");
//		document.getElementById("txtNome").focus();
//	}
}

function ValidaEmail()
{
  var obj = eval("document.forms[0].Email");
  var txt = obj.value;
  if ((txt.length != 0) && ((txt.indexOf("@") < 1) || (txt.indexOf('.') < 7)))
  {
	return false;	  
    alert('Email incorreto');
	obj.focus();
  }
}

function submeteRelato(){
	document.getElementById("txtEmail").focus();
	
	document.getElementById("frmRelato").action = "relatoInsere.asp";
	document.getElementById("frmRelato").method = "post";
	document.getElementById("frmRelato").submit();
}