function valida() {

 if (!f_cadastro.tipo[0].checked && !f_cadastro.tipo[1].checked) {
 alert("Selecione CPF ou CNPJ.");
 return false;
 }

 if (f_cadastro.cpfcnpj.value=="") {
 alert("Você deve digitar o CPF ou CNPJ.\n Digite somente números.");
 f_cadastro.cpfcnpj.focus();
 return false;
 }

 if (f_cadastro.contato.value=="") {
 alert("Informe o nome do responsável pelo anúncio.");
 f_cadastro.contato.focus();
 return false;
 }
	
return true;	
}

function tecla(event) {
if (document.all) { // Internet Explorer
 var tecla = event.keyCode;
 } else if (document.layers) {// Nestcape
  var tecla = e.which;
 }
if ((tecla > 47 && tecla < 58)) {// numeros de 0 a 9
 return true;
 } else {
  if (tecla != 8) {// backspace
   event.keyCode = 0;
  } else {
   return true;
  }
 }
}