function valCampos(){
  xServ_Contri        = document.frmDatos.elements("Serv_Contri").checked; 
  xcomunicacion_deuda = document.frmDatos.elements("comunicacion_deuda").checked;
  ximpI               = document.getElementById(1).checked;
  ximpA               = document.getElementById(2).checked;
  
  xpuntoUnoA          = document.getElementById(3).checked;
  xpuntoUnoB          = document.getElementById(4).checked;
  xpuntoUnoC          = document.getElementById(5).checked;
  
  xpuntoDosS          = document.getElementById(6).checked;
  xpuntoDosN          = document.getElementById(7).checked;
  
  xpuntoTresS         = document.getElementById(8).checked;
  xpuntoTresN         = document.getElementById(9).checked;
  
  xpuntoCuatroS       = document.getElementById(10).checked;
  xpuntoCuatroN       = document.getElementById(11).checked;
  
  xpuntoCincoS        = document.getElementById(12).checked;
  xpuntoCincoN        = document.getElementById(13).checked;
  
 
 //alert(ximp);
 //alert(xcomunicacion_deuda);
 
 //return false;
 
 if (xServ_Contri == false  && xcomunicacion_deuda == false) {
     alert("Debe seleccionar Campaña de Servicios al contribuyente y/o Segunda comunicación de deuda");
     return false; 
 }
 
 
 if (ximpI == false && ximpA == false){
    alert("Debe seleccionar algún Impuesto.");
    return false;
 }

 if (xpuntoUnoA == false && xpuntoUnoB == false && xpuntoUnoC == false) {
    alert("Debe completar el punto 1 (uno) de la encuesta.");
    return false;
 }

 if (xpuntoDosS == false && xpuntoDosN == false){
    alert("Debe completar el punto 2 (dos) de la encuesta.");
    return false;
 }

 if (xpuntoTresS == false && xpuntoTresN == false){
    alert("Debe completar el punto 3 (tres) de la encuesta.");
    return false;
 } 
 
 if (xpuntoCuatroS == false && xpuntoCuatroN == false){
     alert("Debe completar el punto 4 (cuatro) de la encuesta.");
     return false;
 } 
 
  if (xpuntoCincoS == false && xpuntoCincoN == false){
      alert("Debe completar el punto 5 (cinco) de la encuesta.");
      return false;
 }
 
return true;


}
