function google_ad_request_done(google_ads) 
{
	if (google_ads.length < 1 )
		return;
	var s = '';
	s += '<table class="g"><tr><th colspan="2"><h3 style=\"text-align:left;margin:1em 0 0 0\">';
	if (google_info.feedback_url) 
		s += '<a target="_blank" href="' + google_info.feedback_url + '">Anúncios Google</a></p>';
	else 
		s += 'Anúncios Google';	
	s += '</h3>';
	if (google_ads[0].type == 'text') 
	{
		for(i = 0; i < google_ads.length; ++i) 
		{
			s += '</th></tr><tr bgcolor="#dddddd" onmouseover="style.backgroundColor=\'#E1FFF1\'" onmouseout="style.backgroundColor=\'#ddd\'"><td>' +
			'<a target="_blank" style="text-decoration: underline;cursor:pointer;cursor:hand;font-weight: bold;" href="' + google_ads[i].url + '" onmouseover="window.status=\'http://' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
			'' + google_ads[i].line1 + '</a></td>' +
			'<td>'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<br/>' +
			'<a target="_blank" style="text-decoration: underline;cursor:pointer;cursor:hand;" href="' + google_ads[i].url + '" onmouseover="window.status=\'http://' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' + google_ads[i].visible_url +
			'</a></td></tr>';
		}
	}
	
   s += '</table>';
   document.write(s);
   return;
 }
       