
function fcnEstadisticaSocial(destino, idnota) {
   
//   var txtIdCamp  = $("#txtIdCamp").attr("value");

   $.ajax({
           async:true,
           type: "GET",
           dataType: "html",
           contentType: "application/x-www-form-urlencoded",
           url:"estadisticasocial.php",
           data:"idnota="+idnota+"&destino="+destino,
           beforeSend:inicioEnvio,
           success:llegadaDatos,
           timeout:4000,
           error:problemas
         }); 
   return false;
}

function llegadaDatos() {
	return true;
}

function inicioEnvio() {
  return true;
}

function problemas() {
  //alert('Problemas en el servidor.');
  return true;
}

