function google_ad_request_done(google_ads) {
    var s = '';
    var i;

    if (google_ads.length == 0) {
      return;
    }

// "Google-Anzeigen" drucken -- Link zur Feedback-Seite von Google
s += '<div class="b4">'  +
'<a href="' + google_info.feedback_url + '"><span class="bes" style="text-decoration:none;">Google Anzeigen</span></a>' +
'</div>';

if (google_ads[0].type == "image") {
      s += '<a href="' + google_ads[0].url +
              '" target="_top" title="go to ' + google_ads[0].visible_url +
              '"><img style="border:none;" src="' + google_ads[0].image_url +
              '"width="' + google_ads[0].image_width +
              '"height="' + google_ads[0].image_height + '"/></a>';

    } else {
     if (google_ads.length == 1) {
        /*
         * Die Partner sollten die Textgrößen so anpassen,
         * dass die Anzeigen den größten Teil der Werbefläche belegen.
         */
          s += '<div style="margin-left:5px; margin-right:5px;"><a style="cursor:pointer;cursor:hand;text-decoration:none" onclick="javascript:top.location.href=\'' + google_ads[0].url  +
         '\'" onmouseover="window.status=\'gehe zu ' + google_ads[0].visible_url + '\'" onmouseout="window.status=\'\'">' +
         '<ul class="li_1" style="color:#eaa260; line-height:100%;"><li class="indexleft"><span style="font-weight:bold;font-family:Verdana,Sans-serif;color:#eaa260;text-decoration:none;font-size:12px">' + google_ads[0].line1 + '<br></span>' +
         '<span style="font-weight:normal;font-family:Verdana,Sans-serif;color:#333333;text-decoration:none;font-size:11px">'  + google_ads[0].line2 + '&nbsp;' + google_ads[0].line3 + '<br></span>' +
         '<span style="font-weight:normal;font-family:Verdana,Sans-serif;color:#333333;text-decoration:underline;font-size:11px; line-height:150%;">' + google_ads[0].visible_url +
         '</span></a></li></ul></div>';
      } else if (google_ads.length > 1) {
        /*
         * Hängen Sie bei Textanzeigen jede Anzeige an die Zeichenfolge an.
         */
        for(i=0; i < google_ads.length; ++i) {
          s += '<div style="margin-left:5px; margin-right:5px;"><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=\'\'">' +
         '<ul class="li_1" style="color:#eaa260; line-height:100%;"><li class="indexleft"><span style="font-weight:bold;font-family:Verdana,Sans-serif;color:#eaa260;text-decoration:none;font-size:12px">' + google_ads[i].line1 + '<br></span>' +
         '<span style="font-weight:normal;font-family:Verdana,Sans-serif;color:#333333;text-decoration:none;font-size:11px">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<br></span>' +
         '<span style="font-weight:normal;font-family:Verdana,Sans-serif;color:#333333;text-decoration:underline;font-size:11px; line-height:150%;">' + google_ads[i].visible_url +
         '</span></a></li></ul></div>';
        }
      }
    }

    document.write(s);
    return;
  }
