// JavaScript Document

function Inverte(obj)
{
	status = document.getElementById(obj).style.display;
	if (status == 'none')
		document.getElementById(obj).style.display = '';
	else
		document.getElementById(obj).style.display = 'none';
}

function validaCampos() {
	
		//variaveis
	var $flag;
	var $msg;
	$msg = "Por favor preencha o(s) seguinte(s) campo(s):\n\n";
	$flag = 0;
	
	if ((document.fale_conosco.nome.value.length==0) || (document.fale_conosco.nome.value==null)) {
		$msg += "- Nome\n";
		$flag = 1;
	}
	
	if ((document.fale_conosco.cpf.value.length==0) || (document.fale_conosco.cpf.value==null)) {
		$msg += "- CPF\n";
		$flag = 1;
	}
	
	if ((document.fale_conosco.cidade.value.length==0) || (document.fale_conosco.cidade.value==null)) {
		$msg += "- Cidade\n";
		$flag = 1;
	}

	if ((document.fale_conosco.email.value.length==0) || (document.fale_conosco.email.value==null)) {
		$msg += "- E-mail\n";
		$flag = 1;
	}

	if($flag == 1) {
		alert($msg);		
		return false;		
	}
	else {
		return true;
	}

}