function google_ad_request_done(google_ads) {

  // Proceed only if we have ads to display!
  if (google_ads.length < 1 )
    return;

  var adsense_forum = '';
  var nb_ads_per_block = 4;

  // For text ads, display each ad in turn.
  // In this example, each ad goes in a new row in the table.
  if (google_ads[0].type == 'text')
  { 
    for(i = 0; i < Math.min(nb_ads_per_block, google_ads.length); ++i)
    {
      lien = '<a href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'" target="_blank">';
      adsense_forum += '<h4>' + lien + google_ads[i].line1 + '</a></h4>\n';
      adsense_forum += '<p>' + google_ads[i].line2 + ' ' + google_ads[i].line3;
      adsense_forum += '<br /><em>' + lien+ google_ads[i].visible_url + '</em></a>';
      adsense_forum += '</p>\n';
    }
  }

  if (adsense_forum != "")
    adsense_forum = '\n<div style="clear: both; margin: 10px 0 30px 50px;"><p><a href="' + google_info.feedback_url + '" target="_blank">Annonces Google</a></p><p>\n' + adsense_forum + '\n</p>\n';

  if ((document.getElementById("adsense_forum_profile")))
       document.getElementById("adsense_forum_profile").innerHTML = adsense_forum;
  return;
}
