function google_ad_request_done(google_ads) {


  // Proceed only if we have ads to display!
  if (google_ads.length < 1 )
    return;


  var adsense_haut = '';
  var adsense_bas = '';
  var adsense_cont      = '';
          // Display ads in a table
    adsense_haut += '<table cellpadding="6" width="100%" align="left">';
    adsense_bas += '<table cellpadding="6" width="100%" align="left">';
	adsense_cont += '<table cellpadding="6" width="100%" align="left">';
  // Print "Ads By Google" -- include link to Google feedback page if available
  ads_by_google = '<div style="text-align: right; font-size: 10pt">';
  if (google_info.feedback_url) {
    ads_by_google += '<a class=texty href="' + google_info.feedback_url + '" target="_blank">Annonces Google</a>';
  } else {
    ads_by_google += 'Annonces Google';
  }
  ads_by_google += '</div>';


  adsense_haut += ads_by_google;
  adsense_bas += ads_by_google;
 


  // 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(4, google_ads.length); ++i)
    {
      adsense_haut += '<tr><td nowrap style="cursor:pointer;" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="this.style.backgroundColor=\'#FFFFFF\';"  onmouseout="this.style.backgroundColor=\'\';" style="text-align:left;">' +
         '<a style="cursor:pointer;cursor:hand;text-decoration:none" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'Afficher la page' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
         '<span style="color:#000099;text-decoration:underline;font-size:10pt;font-weight:bold;">' + google_ads[i].line1 + '<br></span>' +
         '<span style="color:#000000;font-size:8pt">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<br></span>' +
         '<span style="color:#008000;font-size:7pt">' + google_ads[i].visible_url +
         '</span></a><br></td></tr>';
    }
    for(i = 8; i < 20+Math.min(20, google_ads.length - 20); ++i)
    {
      adsense_bas += '<tr><td style="cursor:pointer;" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="this.style.backgroundColor=\'#FFFFFF\';"  onmouseout="this.style.backgroundColor=\'\';" style="text-align:left;">' +
         '<a style="cursor:pointer;cursor:hand;text-decoration:none" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'Afficher la page' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
         '<span style="color:#000099;text-decoration:underline;font-size:10pt;font-weight:bold;">' + google_ads[i].line1 + '<br></span>' +
         '<span style="color:#000000;font-size:8pt">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<br></span>' +
         '<span style="color:#008000;font-size:7pt">' + google_ads[i].visible_url +
         '</span></a><br></td></tr>';
    }
    for(i = 4; i < 4+Math.min(2, google_ads.length - 2); ++i)
    {
      adsense_cont += '<tr><td style="cursor:pointer;" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="this.style.backgroundColor=\'#FFFFFF\';"  onmouseout="this.style.backgroundColor=\'\';" style="text-align:left;">' +
         '<a style="cursor:pointer;cursor:hand;text-decoration:none" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'Afficher la page' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
         '<span style="color:#000099;text-decoration:underline;font-size:8pt;font-weight:bold;">' + google_ads[i].line1 + '<br></span>' +
         '<span style="color:#000000;font-size:8pt">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<br></span>' +
         '<span style="color:#008000;font-size:7pt">' + google_ads[i].visible_url +
         '</span></a><br></td></tr>';
    }
  }


  // For an image ad, display the image; there will be only one .
  if (google_ads[0].type == 'image') {
    cat_int += '<tr><td align="center">' +
      '<a href="' + google_ads[0].url + '"style="text-decoration: none">' +
      '<img src="' + google_ads[0].image_url + 
      '" height="' + google_ads[0].height + 
      '" width="' + google_ads[0].width +
      '" border="0"></a></td></tr>';
  }


  if (google_ads.length > 8)
    adsense_cont += ads_by_google;


  if ((document.getElementById("adsence_haut_1")))
       document.getElementById("adsence_haut_1").innerHTML = adsense_haut;
  if ((document.getElementById("adsence_bas_1")))
       document.getElementById("adsence_bas_1").innerHTML = adsense_bas;
  if ((document.getElementById("adsense_cont_1")))
       document.getElementById("adsense_cont_1").innerHTML = adsense_cont;
  return;
}

