function ChecaForm() {
		with (document.frmAjax)
		{
			if (!document.frmAjax.nome.value){
			alert ('Por favor, preencha o campo Nome!');
			nome.focus();
			return (false);
			}
			if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test (document.frmAjax.email.value))){
			alert ('Por favor informe seu E-mail corretamente!');
			email.focus();
			return (false);
			}
			if (!document.frmAjax.idata.value){
			alert ('Por favor, preencha data nascimento!');
			idata.focus();
			return (false);
			}
			if (document.frmAjax.estado.value==0){
			alert ('Por favor, selecione o estado!');
			estado.focus();
			return (false);
			}
			if (!document.frmAjax.itelefone.value){
			alert ('Por favor, preencha o campo Telefone!');
			itelefone.focus();
			return (false);
			}
			return (true);
		}
}