function checkdata() {
	with(document.formulario) {	
	 if ((!candidato[0].checked && !candidato[1].checked)) {
		alert("Por favor, escolha uma opção para o campo: Candidato.");
		candidato[0].focus();
		return false; 
		}

if (nome.value == "") {
		alert("Por favor, informe seu Nome.");
		nome.focus();
		return false; 
		}

	 if (idade.value == "") {
		alert("Por favor, informe sua Idade.");
		idade.focus();
		return false; 
		}
	 if (telefone1.value == "") {
		alert("Por favor, informe seu Telefone.");
		telefone1.focus();
		return false; 
		}

	 if (pretendida.value == "") {
		alert("Por favor, preencha o campo Remuneração Pretendida.");
		pretendida.focus();
		return false; 
		}

		 submit();
	}
}	


