function validarCampos(){
	if (window.PedidoInfo.tfNome.value 					== ""){window.PedidoInfo.tfNome.focus();		alert("Campo 'Nome' por preencher."); 		return false;
	}else if (window.PedidoInfo.tfEmail.value 			== ""){window.PedidoInfo.tfEmail.focus();		alert("Campo 'E-Mail' por preencher.");		return false;
	}else if (window.PedidoInfo.taMensagem.value 		== ""){window.PedidoInfo.taMensagem.focus();	alert("Campo 'Mensagem' por preencher.");	return false;}
}

function redirect(url){ 
	window.location = url;
}

function validarNewsletter(){
	if (window.formNewsletter.tfNewsletter.value == ""){
		window.formNewsletter.tfNewsletter.focus();
		return false;
	}
}

function validarPesquisa(){
	if (window.formPesquisa.tfPesquisa.value == ""){
		window.formPesquisa.tfPesquisa.focus();
		return false;
	}
}