<!--
function janela( windowURL, windowName, windowFeatures )
{ 
	return window.open( windowURL, windowName, windowFeatures ) ; 
} 
function Validar(theForm)
{

	if (theForm.O_que_querem_os_homens_hoje.value == "")
	{
		alert("Digite o que você acha que os homens querem hoje.");
		theForm.O_que_querem_os_homens_hoje.select();
		return (false);
	}


	if (!(theForm.Sexo[0].checked || theForm.Sexo[1].checked))
	{
		alert("Selecione um valor para \"Sexo\".");
//		theForm.Sexo.focus();
		return (false);
	}

	if (theForm.Idade.value == "")
	{
		alert("Selecione um valor para \"Idade\".");
		theForm.Idade.select();
		return (false);
	}
	if (isNaN(theForm.Idade.value))
	{
		alert ("Digite apenas números em \"Idade\".");
		theForm.Idade.select();
		return (false);
	}
	if (parseInt(theForm.Idade.value) < 1 || parseInt(theForm.Idade.value) > 99)
	{
		alert ("Digite uma \"Idade\" válida.");
		theForm.Idade.select();
		return (false);
	}
	if (theForm.Profissao.value == "")
	{
		alert("Digite um valor para \"Profissão\".");
		theForm.Profissao.select();
		return (false);
	}
	if (theForm.Escolaridade.selectedIndex == 0)
	{
		alert("Selecione uma opção para \"Escolaridade\".");
		theForm.Escolaridade.focus();
		return (false);
	}
	return (true);
}
//-->