function validacao(){

	d = document.frmContato;
	var texto = "";
	var erro = 0;

	// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	if(d.nome.value == ""){
		erro = 1;
		texto = texto + "O campo <strong>Nome</strong> &eacute; de preencimento obrigat&oacute;rio.<br />";
		document.getElementById('nome').style.background = '#163361';
	}
	else{
		texto = texto + "";
		document.getElementById('nome').style.background = '#FFFFFF';
	}
	
	// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	
	// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	
	if((d.email.value.length < 5) || ((d.email.value.indexOf("@") < 1) || (d.email.value.indexOf('.') < 3))){
		erro = 1;
		texto = texto + "Preencha o campo <strong>E-mail</strong> com um endere&ccedil;o v&aacute;lido.<br />";
		document.getElementById('email').style.background = '#163361';
	}
	else{
		texto = texto + "";
		document.getElementById('email').style.background = '#FFFFFF';
	}

	// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	
	if(d.assunto.value == ""){
		erro = 1;
		texto = texto + "O campo <strong>Telefone</strong> &eacute; de preencimento obrigat&oacute;rio.<br />";
		document.getElementById('assunto').style.background = '#163361';
	}
	else{
		texto = texto + "";
		document.getElementById('assunto').style.background = '#FFFFFF';
	}
	

	// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	
	if(d.mensagem.value == ""){
		erro = 1;
		texto = texto + "O campo <strong>Mensagem</strong> &eacute; de preencimento obrigat&oacute;rio.<br />";
		document.getElementById('mensagem').style.background = '#163361';
	}
	else{
		texto = texto + "";
		document.getElementById('mensagem').style.background = '#FFFFFF';
	}

	// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	if(erro == 1){
		document.getElementById('mensagemErroContato').style.display= 'block';
		document.getElementById('mensagemErroContato').innerHTML = "<p class='Destaque'><font face='arial' size='2' color='#163361'>" + texto + "</font></p>";
		return false;
	}
	else{
		document.getElementById('mensagemErroContato').style.display= 'none';
	}

}


	// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////



function focusForm(teste){
	document.getElementById(teste).style.background = '#FFFFFF';
}

function blurForm(teste){
	document.getElementById(teste).style.background = '#FFFFFF';
}