function google_ad_request_done(google_ads) 
{
	if (google_ads.length < 1 )
		return;
	var s = '';
	s += '<h3 style=\"text-align:left;margin:2em 0 0.5em 0\">';
	if (google_info.feedback_url) 
		s += '<a target="_blank" href="' + google_info.feedback_url + '">Ads by Goooooogle</a></p>';
	else 
		s += 'Ads by Goooooogle';	
	s += '</h3><dl>';
	if (google_ads[0].type == 'text') 
	{
		for(i = 0; i < google_ads.length; ++i) 
		{
			s += '<dt>' +
			'<strong><a style="cursor:pointer;cursor:hand;" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'gehe zu ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
			google_ads[i].line1 + '</a></strong></dt>' +
			'<dd>' + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<a style="cursor:pointer;cursor:hand;text-decoration:underline" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'gehe zu ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' + '<br/>' +
			'' + google_ads[i].visible_url +
			'</a></dd>';
		}
	}
	if (google_ads[0].type == 'image') 
	{
		s += '<dd>' +
		'<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" alt="" /></a><dd>';
	}
   s += '</dl><br/><br/>';
   document.write(s);
   return;
 }
       