function validaCadastro(){
		d = document.cadastro;
		if (d.Nome.value == ""){
			alert("O Nome deve ser preenchido!");
			d.Nome.focus();
			return false;
		}
	if (d.Endereco.value == ""){
			alert("Digite seu endereço");
			d.Endereco.focus();
			return false;
		}
	if (d.numero.value == ""){
			alert("Você deve colocar o numero do imóvel");
			d.numero.focus();
			return false;
		}

	if (d.bairro.value == ""){
			alert("Você deve informar o bairro!");
			d.bairro.focus();
			return false;
		}
	if (d.cidade.value == ""){
			alert("Digite o nome da cidade !");
			d.cidade.focus();
			return false;
		}
	if (d.uf.value == ""){
			alert("Selecione o estado!");
			d.uf.focus();
			return false;
		}
	if (d.ddd.value == ""){
			alert("DDD da sua regição!");
			d.ddd.focus();
			return false;
		}
	if (d.telefone.value == ""){
			alert("Digite o numero do telefone!");
			d.telefone.focus();
			return false;
		}
	if (d.emailField.value == ""){
			alert("Digite um email válido!");
			d.emailField.focus();
			return false;
		}
	if (d.Comercio.value == ""){
			alert("Digite o nome fantasia do comercio!");
			d.Comercio.focus();
			return false;
		}
		return true;
	}
	
function someBarra()
	{
		document.all.aba.style.visibility='hidden';
		document.all.aba.style.position = "absolute";
		document.all.aba.style.left = "0";
		document.all.aba.style.top = "5";
		return false;
	}

	function mostraBarra()
	{
		document.all.aba.style.visibility='visible';
		document.all.aba.style.position = "absolute";
		document.all.aba.style.left = "790";
		document.all.aba.style.top = "5";
		return false;
	}

