function google_ad_request_done(google_ads) {
  var s = '';
  var i;

  /* Verifico que tenemos anuncios cargados */
  if (google_ads.length == 0) {
    return;
  }

  s += '<div class="adsense">';
  s += '<a href="' + google_info.feedback_url + '" class="feedback">' + sAdsByGoogle + '</a>';
  s += '<ul class="adsense">'

   for(i=0; i < google_ads.length; i++) {
      className = (i % 2 != 1) ? ' class="even"' : ' class="odd"';

        s += '<li' + className + '>' +
           //  '<span class="sponsored">' + sSponsored + '</span><span class="ad">' +
             '<a class="title" href="' + google_ads[i].url + '" onclick="window.open(\'' + google_ads[i].url + '\'); return false;" target="_top" onmouseover="window.status=\'ir para ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' + google_ads[i].line1 + '</a><br />' +
             google_ads[i].line2 + ' ' + google_ads[i].line3 + '<a class="url" href="' + google_ads[i].url + '" onclick="window.open(\'' + google_ads[i].url + '\'); return false;" target="_top" onmouseover="window.status=\'ir para ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' + google_ads[i].visible_url + '</a></li>';
   }
   s += '</ul></div>';

  document.write(s);
  return;
}