function google_ad_request_done(google_ads)
{
  if (google_ads.length < 1) return;

  var s = '';
  s += '<h3>' + '';

  if (google_info.feedback_url)
  {
    s += '<a href="' + google_info.feedback_url + '">Ads by Goooooogle</a>';
  }
  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 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 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 + '">' + '<img src="' + 
		google_ads[0].image_url + '" height="' + 
		google_ads[0].height + '" width="' + 
		google_ads[0].width + '" border="0" alt="" /></a><dd>';
  }

  s += '</dl>';

  document.write(s);
  return;
}
//TEST
