function twitterCallback2(C) {
   var A = [];
   for (var D = 0; D < C.length; D++) {
       var E = C[D].user.screen_name;
       var B = C[D].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g,
       function(F) {
           return '<a href="' + F + '">' + F + "</a>"
       }).replace(/\B@([_a-z0-9]+)/ig,
       function(F) {
           return F.charAt(0) + '<a href="http://www.twitter.com/' + F.substring(1) + '">' + F.substring(1) + "</a>"
       });
       B = '<span class="styleblog">'+B+'</span>';
       A.push("<img src='http://www.lineacielo.com/templates/media/img/bullet.jpg' align='absmiddle' /> <span>" + B + '</span> <span class="style3" href="http://twitter.com/' + E + "/statuses/" + C[D].id + '">' + relative_time(C[D].created_at) + "</a><br />")
   }
   document.getElementById("twitter_update_list").innerHTML = A.join("")
}
function relative_time(C) {
   var B = C.split(" ");
   C = B[1] + " " + B[2] + ", " + B[5] + " " + B[3];
   var A = Date.parse(C);
   var D = (arguments.length > 1) ? arguments[1] : new Date();
   var E = parseInt((D.getTime() - A) / 1000);
   E = E + (D.getTimezoneOffset() * 60);
   if (E < 60) {
       return "< de un minuto"
   } else {
       if (E < 120) {
           return "Como un minuto"
       } else {
           if (E < (60 * 60)) {
               return (parseInt(E / 60)).toString() + " Minutos"
           } else {
               if (E < (120 * 60)) {
                   return "Hace una hora"
               } else {
                   if (E < (24 * 60 * 60)) {
                       return "Hace " + (parseInt(E / 3600)).toString() + " horas "
                   } else {
                       if (E < (48 * 60 * 60)) {
                           return "Hace un día"
                       } else {
                           return (parseInt(E / 86400)).toString() + " D&iacute;as"
                       }
                   }
               }
           }
       }
   }
};