// JavaScript Document
function validaContato()
{
	var temp = document.formContato;
	if (temp.nome.value == "")
	{
		alert("É necessário Preencher o Campo Nome.");
		temp.nome.focus();		
		return false;
	}
	if (temp.email.value == "")
	{
		alert("É necessário Preencher o Campo Email.");
		temp.email.focus();
		return false;		
	}
	if (temp.comentario.value == "")
	{
		alert("É necessário Preencher o Campo Comentario.");
		temp.comentario.focus();
		return false;
	}
	
	if (temp.email.value.indexOf("@",0) == -1) 
	{
		alert("Email Inválido");
		temp.email.focus();		
		return false;
	}
	else
	{

		if  (temp.email.value.indexOf("@",0) == (temp.email.value.length-1))
		{
			alert("Email Inválido");
			temp.email.focus();
			return false;
		}		
	}
	
	
}
