function checkdata() {

	with(document.form1) {	

		 if (nome.value == "") {

			alert("Preencha o campo nome!");

			nome.focus();

			return false; }

	     if (email.value == "") {

			alert("Digite seu e-mail!");

			email.focus();

			return false; }

		 if (endereco02.value == "") {

			alert("Digite a Rua/Av/Alameda/etc...");

			endereco02.focus();

			return false; }
		
		if (numero.value == "") {

			alert("Informe o número.");

			numero.focus();

			return false; }
			
		if (cidade.value == "") {

			alert("Informe a cidade.");

			cidade.focus();

			return false; }
			
		if (estado.value == "") {

			alert("Informe o Estado.");

			estado.focus();

			return false; }
			
		if (cep.value == "") {

			alert("Informe o CEP.");

			cep.focus();

			return false; 
			
			}

         submit();

	}

}
