function checkForm(objeto)
{
	if ( objeto.nome.value == "" ){
		window.alert("Entre com todos os campos corretamente!");
		return false;
	}
	
	if( objeto.dataNascimento.value == "" ){
		window.alert( "Informe a data de nascimento no formato dd/mm/yyyy!");
		return false;
	}
	if( objeto.mae != null && objeto.mae.value == "" ){
		window.alert("Entre com todos os campos corretamente!");
		return false;
	}  
}