function votar(id_doc,tipo)
  {
  $.get("http://www.portalcalidad.com/envivo/votar.php",{'type':tipo,'id_doc':id_doc},function(res){feedback(res,id_doc);});
  }

function feedback(res,id_doc)
  {
  $('#'+id_doc).html(res);
  }
