function google_ad_request_done( google_ads )
{
	var s = '';
	var i;
	var gAdsHead = 'Google-Annonces';
	var gAdsGoto = this.gAdsGoto ? this.gAdsGoto : 'go to';

	if ( google_ads.length == 0 ) {
		return;
	}

	
	switch( google_ads[0].type )
	{
		

		case 'text':

			s += '<div id=BUR style="background-color: #bbbbbb"><a target="_blank" class="hp_boxtitles" style="background-color: #bbbbbb" href=\"' + google_info.feedback_url + '\">' + gAdsHead + ' »</a></div>'
			s += '<ul style="background-color: #ffffff; list-style-type: none; margin:0px;padding: 2px;height:auto;">';
			for( i = 0; i < google_ads.length; i++ )
			{
				if( google_ads[i].bidtype == 'CPC' )
				{
					afcDeliveredAds++;
				}

				
				s += '<li style="padding-left: 5px;padding-top: 5px; height: auto; width:399px; overflow: hidden;">'+
					
					'<div style="text-align:left ;"><a class="city_teaser_titles" style="text-decoration:none; color: #666699; font-weight: bold; font-size:11px; font-face:Arial" target="_blank" href="'+google_ads[i].url + '">' +
					google_ads[i].line1 + '</span></a><br><span class="teaser_text_sm" style="text-decoration:none; color: #000000; font-weight: normal; font-size:11px; font-face:Arial">' +
					google_ads[i].line2 + ' ' +
					google_ads[i].line3 + '</span> <span><br><a target="_blank" style="text-decoration:none; color: #009900; font-weight: normal; font-size:11px; font-face:Arial" class="top_links" href="' + google_ads[i].url + '">'+ google_ads[i].visible_url + 
					'</a></span></div></li>';
			}
			s += '</ul>';
			break;
	}

	document.write(s);
	return;
}
