//Arquivo JavaScript

function validaForm()
{
	var nome			= document.getElementById("nome").value;
	var email			= document.getElementById("email").value;
	var tel				= document.getElementById("tel").value;
	var assunto			= document.getElementById("assunto").value;
	var msg				= document.getElementById("msg").value;
	var div				= document.getElementById("strError");
	
	
	var erro				= '';
	var contErro			= 0;
	
	document.getElementById("nome").style.background = "";
	document.getElementById("tel").style.background = "";
	document.getElementById("email").style.background = "";
	document.getElementById("assunto").style.background = "";
	document.getElementById("msg").style.background = "";

	//VERIFICANDO CAMPOS EM BRANCO
	if(nome=='')
	{
		nome='Preencha o seu Nome';
		contErro++;
		erro += (contErro + ". " + nome + "<br />");
		document.getElementById("nome").style.background = "#FFCCCC";
		if(contErro==1)
		{
			document.getElementById("nome").focus();
			
		}

	}
	
	if(email=='')
	{
		email='Preencha o seu Email';
		contErro++;
		erro += (contErro + ". " + email + "<br />");
		document.getElementById("email").style.background = "#FFCCCC";
		if(contErro==1)
		{
			document.getElementById("email").focus();
			
		}

	}
	
	if(tel=='')
	{
		tel='Preencha o seu Telefone';
		contErro++;
		erro += (contErro + ". " + tel + "<br />");
		document.getElementById("tel").style.background = "#FFCCCC";
		if(contErro==1)
		{
			document.getElementById("tel").focus();
			
		}

	}
		
	if(assunto=='')
	{
		assunto='Preencha o Assunto';
		contErro++;
		erro += (contErro + ". " + assunto + "<br />");
		document.getElementById("assunto").style.background = "#FFCCCC";
		if(contErro==1)
		{
			document.getElementById("assunto").focus();
			
		}

	}
	
	if(msg=='')
	{
		msg='Preencha a Mensagem';
		contErro++;
		erro += (contErro + ". " + msg + "<br />");
		document.getElementById("msg").style.background = "#FFCCCC";
		if(contErro==1)
		{
			document.getElementById("msg").focus();
			
		}

	}
	

	// VERIFICANDO SE TEVE ERROS

	if(contErro)
	{
		div.innerHTML = ("<div class='style02_01'>"+erro+"<br /></div>");
		return false;
	}
	else
	{
		div.innerHTML = "Perfeito<br />";
		return true;

	}
	
}