// JavaScript Document
function Nav_Validator(theForm)
{
	if (theForm.f_Email.value.indexOf("@")==-1)
	{
		//alert("E-mail inválido: ["+theForm.f_Email.value+"@?]");
		alert("E-mail inválido: ["+theForm.f_Email.value+"]");
		theForm.f_Email.focus();
		return (false);
	}
	if (theForm.f_Email.value.indexOf(".")==-1)
	{
		//alert("E-mail inválido: ["+theForm.f_Email.value+".?]");
		alert("E-mail inválido ["+theForm.f_Email.value+"]");
		theForm.f_Email.focus();
		return (false);
	} 
	return (true);
}

function limpacomentario()
{
	document.cadastrando.f_Comentario.value=""
}

function limpaemail()
{
	document.cadastrando.f_Email.value=""
}
