function google_ad_request_done(google_ads) 
{
	if (google_ads.length < 1 )
		return;
	var s = '';
	s += '<div style="background:none repeat scroll 0 0 #DDDDDD; border:1px solid #421209; padding:5px 10px;margin-right:180px"><h3 style=\"font-size: 13px; font-family: Trebuchet MS; margin: 0pt 0pt 8px;\">';
	if (google_info.feedback_url) 
		s += '<a style="font-weight:normal;" 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 target="_blank" style="cursor:pointer;cursor:hand;text-decoration:underline;" 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 + '<br/>' +
			'<a target="_blank" style="cursor:pointer;cursor:hand;text-decoration:none" href="' + google_ads[i].url + '" onmouseover="window.status=\'gehe zu ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' + google_ads[i].visible_url +
			'</a></dd>';
		}
	}
	if (google_ads[0].type == 'image') 
	{
		s += '<dd>' +
		'<a target="_blank" 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></div><br/><br/>';
   document.write(s);
   return;
 }
       
