function google_ad_request_done(google_ads) 
{
	if (google_ads.length < 1 )
		return;
	var s = '';
	s += '<div style="background:none repeat scroll 0 0 #CBD9E2; border:1px solid #6578A0; padding:5px 10px; margin-left: 180px;"><h3 style=\"text-align:left; margin: 0pt 0pt 8px; font-size:13px; font-weight:normal; font-family: Trebuchet MS;\">';
	if (google_info.feedback_url) 
		s += '<a 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;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=\'\'">' +
			google_ads[i].line1 + '</a></strong></dt>' +
			'<dd>' + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<br/><a style="cursor:pointer;cursor:hand;text-decoration:none;" 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].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></div><br/><br/>';
   document.write(s);
   return;
 }
       
