// JavaScript Document

function validation() {
    if (document.form1.nome.value.length < 2) {
	    window.alert("Por favor, digite o seu nome !");
		return false;
	}
    if (document.form1.email.value.length < 5) {
	    window.alert("Por favor digite o seu e-mail !");
		return false;
	}



    if (document.form1.urlsite.value.length < 5) {
	    window.alert("Por favor digite a URL do seu site!");
		return false;
	}


    if (document.form1.descricao.value.length < 5) {
	    window.alert("Por favor digite a descrição !");
		return false;
	}
    if (document.form1.razao_nome2.value.length < 5) {
	    window.alert("Por favor digite a razão social !");
		return false;
	}



    if (document.form1.cnpj_cpf.value.length < 5) {
	    window.alert("Por favor digite o CNPJ ou CPF !");
		return false;
	}


    if (document.form1.endereco.value.length < 5) {
	    window.alert("Por favor digite o seu endereço !");
		return false;
	}


    if (document.form1.cep.value.length < 5) {
	    window.alert("Por favor digite o seu CEP !");
		return false;
	}


    if (document.form1.bairro.value.length < 5) {
	    window.alert("Por favor digite o seu bairro !");
		return false;
	}


    if (document.form1.cidade.value.length < 5) {
	    window.alert("Por favor digite a cidade!");
		return false;
	}


    if (document.form1.estado.value.length == 0) {
	    window.alert("Por favor digite o estado !");
		return false;
	}




	return true;
}
