function valida(objParam){
	if(document.frmContato.Nome.value=="" || document.frmContato.Nome.value.length < 5){
		alert("Por favor, preencha o campo NOME corretamente!");
		frmContato.Nome.focus();
		frmContato.Nome.select();
		return false;
	}else if(!isNaN(document.frmContato.Nome.value)){
		alert("Por favor, preencha o campo NOME corretamente, não pode conter números!");
		frmContato.Nome.focus();
		frmContato.Nome.select();
		return false;
	}else if(document.frmContato.Email.value=="" || document.frmContato.Email.value.indexOf('@')==-1 || document.frmContato.Email.value.indexOf('.')==-1 ){
		alert("Por favor, preencha o campo E-MAIL corretamente!");
		frmContato.Email.focus();
		frmContato.Email.select();
		return false;
	}else if(document.frmContato.Passeio.value=="00"){
		alert("Por favor, escolha o PASSEIO que deseja participar!");
		frmContato.Passeio.focus();
		frmContato.Passeio.select();
		return false;
	}/*else if(document.frmContato.DDD1.value==""){
		alert("Por favor, preencha o campo DDD corretamente!");
		frmContato.DDD1.focus();
		frmContato.DDD1.select();
		return false;
	}else if(isNaN(document.frmContato.DDD1.value)){
		alert("Por favor, preencha o campo DDD corretamente, não pode conter letras!");
		frmContato.DDD1.focus();
		frmContato.DDD1.select();
		return false;
	}else if(document.frmContato.Fone1.value==""){
		alert("Por favor, preencha o campo Fone corretamente!");
		frmContato.Fone1.focus();
		frmContato.Fone1.select();
		return false;
	}else if(isNaN(document.frmContato.Fone1.value)){
		alert("Por favor, preencha o campo Fone corretamente, não pode conter letras!");
		frmContato.Fone1.focus();
		frmContato.Fone1.select();
		return false;
	}*/else if(document.frmContato.Cidade.value==""){
		alert("Por favor, preencha o campo CIDADE corretamente!");
		frmContato.Cidade.focus();
		frmContato.Cidade.select();
		return false;
	}else if(!isNaN(document.frmContato.Cidade.value)){
		alert("Por favor, preencha o campo CIDADE corretamente, não pode conter números!");
		frmContato.Cidade.focus();
		frmContato.Cidade.select();
	  	return false;
	}else{
	 alert("Agradecemos sua mensagem, obrigado por nos contatar!");
	 return true;
	}
}
function tudoMaiuscula(objParam){
 objParam.value = objParam.value.toUpperCase();
}
function tudominuscula(objParam){
 objParam.value = objParam.value.toLowerCase();
}
