// JavaScript Document
function validarCadastro(d)
			{
				
				var passou = true;
				var msg = 'Por Favor,\n\n';		
				if (d.nome.value.length < 1)
				{
		
					msg += 'Informe o nome.\n';
					
					document.getElementById('nome').style.background = "#ffffe8";
					passou = false;
				}

				
				if (d.email.value.length < 1)
				{
					
					msg += 'Informe o e-mail.\n';
					
					document.getElementById('email').style.background = "#ffffe8";
					passou = false;
				}
				if (d.nascimento.value.length < 1)
				{
					
					msg += 'Informe o Data de Aniversário.\n';
				
					document.getElementById('nascimento').style.background = "#ffffe8";
						passou = false;
				}
				
			
				
				if (d.bairro.value.length < 1)
				{
					
					msg += 'Informe o bairro.\n';
				
					document.getElementById('bairro').style.background = "#ffffe8";
						passou = false;
				}
				if (d.cidade.value.length < 1)
				{
				
					msg += 'Informe a cidade.\n';
		
					document.getElementById('cidade').style.background = "#ffffe8";
								passou = false;
				}
				if (d.estado.value == "NDA")
				{
					
					msg += 'Informe o estado.\n';
					passou = false;
					document.getElementById('estado').style.background = "#ffffe8";
				}
				
				
				if (d.celular.value.length < 1 || d.residencial.value.length < 1)
				{
					
					msg += 'Informe os telefones.\n';
				
					document.getElementById('celular').style.background = "#ffffe8";
					document.getElementById('residencial').style.background = "#ffffe8";
						passou = false;
				}
				
				
				
												
				if (passou == true)
				{
					
					d.acao.value = "gravar";
					d.submit();
				}
				else
				{	
					
					alert(msg);
					return false;
				}
			}
			
	