function validaContato(){
	var nm_cliente = document.getElementById("nome");
	var cd_telefone = document.getElementById("telefone");
	var cd_celular = document.getElementById("celular");
	var nm_email = document.getElementById("email");
	var ds_mensagem = document.getElementById("mensagem");
	var ds_assunto = document.getElementById("assunto");
	
	var ok = true;
	var aviso = "As informações abaixo estão incorretas:\n";
	
	if(nm_cliente.value == ""){
		ok = false;
		aviso += "- Informe o Nome\n";
	}
	if(nm_email.value == ""){
		ok = false;
		aviso += "- Informe o E-mail\n";
	} else {
		if(!ValidaEmail(nm_email.value)){
			ok = false;
			aviso += "- Informe um e-mail válido\n";
		}
	}
	//if(cd_telefone.value == ""){
		//ok = false;
		//aviso += "- Informe o Telefone\n";
	//}
	//if(cd_celular.value == ""){
		//ok = false;
		//aviso += "- Informe o Celular\n";
	//}
	if(ds_assunto.value == ""){
		ok = false;
		aviso += "- Informe o Assunto\n";
	}
	if(ds_mensagem.value == ""){
		ok = false;
		aviso += "- Informe a Mensagem\n";
	}
	
	if(!ok){
		alert(aviso);
		return false;
	}
}

function realizaBusca(){
	var ds_busca = document.getElementById("ds_busca");
	
	if(ds_busca.value != ""){
		
		document.location.href="resultado_busca.asp?ds_busca=" + ds_busca.value;
	}
}
