function validacao()
{
	if (document.form2.nome.value == "")
	{
		msg ="Preencha o campo: Nome";
		alert(msg);
		document.form2.nome.focus();
		return false;
	}
	if ((document.form2.email.value == ""))
	{
		msg ="Preencha o campo: E-mail";
		alert(msg);
		document.form2.email.focus();
		return false;
	}
	if (document.form2.email.value != "")
	{
		if((document.form2.email.value.indexOf("@") < 1) || (document.form2.email.value.indexOf('.') < 7))
		{
			msg ="E-mail inválido!";
			alert(msg);
			document.form2.email.focus();
			return false;
		}
	}
	if ((document.form2.telefone.value == ""))
	{
		msg ="Preencha um do campo: Telefone";
		alert(msg);
		document.form2.telefone.focus();
		return false;
	}
	if (document.form2.assunto.value == "")
	{
		msg ="Preencha o campo: Assunto";
		alert(msg);
		document.form2.assunto.focus();
		return false;
	}
	if (document.form2.titulo.value == "")
	{
		msg ="Preencha o campo: Assunto";
		alert(msg);
		document.form2.titulo.focus();
		return false;
	}
	return true;
}