function validarReserva(form)
{
	if(form.txtNome.value == '')
	{	alert('O campo NOME está vazio!');
		document.getElementById('txtNome').focus();
		return false;
	}
	
	if(form.txtProfissao.value == '')
	{	alert('O campo PROFISSAO está vazio!');
		document.getElementById('txtProfissao').focus();
		return false;
	}
	
	if(form.txtNacionalidade.value == '')
	{	alert('O campo NACIONALIDADE está vazio!');
		document.getElementById('txtNacionalidade').focus();
		return false;
	}
	
	if(form.txtNascimento.value == '')
	{	alert('O campo NASCIMENTO está vazio!');
		document.getElementById('txtNascimento').focus();
		return false;
	}
	
	if(form.txtIdade.value == '')
	{	alert('O campo IDADE está vazio!');
		document.getElementById('txtIdade').focus();
		return false;
	}
	
	if(form.txtCep.value.lenght < 8)
	{	alert('O campo CEP está vazio ou incompleto!');
		document.getElementById('txtCep').focus();
		return false;
	}	
	
	if(form.txtEndereco.value == '')
	{	alert('O campo ENDEREÇO está vazio!');
		document.getElementById('txtEndereco').focus();
		return false;
	}
	
	if(form.txtCidade.value == '')
	{	alert('O campo CIDADE está vazio!');
		document.getElementById('txtCidade').focus();
		return false;
	}
	
	if(form.txtPais.value == '')
	{	alert('O campo PAIS está vazio!');
		document.getElementById('txtPais').focus();
		return false;
	}
	
	if(form.txtDataEntrada.value == '')
	{	alert('O campo DATA DE ENTRADA está vazio!');
		document.getElementById('txtDataEntrada').focus();
		return false;
	}
	
	if(form.txtDataSaida.value == '')
	{	alert('O campo DATA DE SAÍDA está vazio!');
		document.getElementById('txtDataSaida').focus();
		return false;
	}
	
	if(form.txtFoneResidencial.value == '')
	{	alert('O campo TELEFONE RESIDENCIAL está vazio!');
		document.getElementById('txtFoneResidencial').focus();
		return false;
	}
	
	/*if(form.txtFoneComercial.value == '')
	{	alert('O campo TELEFONE COMERCIAL está vazio!');
		document.getElementById('txtFoneComercial').focus();
		return false;
	}*/

	marcado = -1
	for (i=0; i<form.rdbConhecer.length; i++) {
		if (form.rdbConhecer[i].checked) {
			marcado = i
			resposta = form.rdbConhecer[i].value
		}
	}
	if (marcado == -1) {
		alert("Selecione uma resposta.");
		form.rdbConhecer[0].focus();
		return false;
	}

	return true;
}