function google_ad_request_done(google_ads) 
{
	if (google_ads.length < 1 )
		return;
	var s = '';
	s += '<h2>';
	if (google_info.feedback_url) 
		s += '<a href="' + google_info.feedback_url + '">' + eTxt5 + '</a>';
	else 
		s += eTxt5;	
	s += '</h2>';
	if (google_ads[0].type == 'text') 
	{
		for(i = 0; i < google_ads.length; ++i) 
		{
			s += '<div>' +
			'<h3><a 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></h3>' +
			'<p>'  + 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></p></div>';
		}
	}
	if (google_ads[0].type == 'image') 
	{
		s += '<div>' +
		'<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></div>';
	}
   s += '<br style="clear:both" />';
   document.write(s);
   return;
 }
       