function google_ad_request_done(google_ads) {

  var s = '';
  var i;

  if (google_ads.length == 0) {
    return;
  }

  if (google_ads[0].type == "flash") {

    s += '<a href=\"' + google_info.feedback_url + '\" style="color:000000">Google Anzeigen</a><br>' + 
         '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' +
         ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"' +
         ' WIDTH="' + google_ad.image_width +
         '" HEIGHT="' + google_ad.image_height + '">' +
         '<PARAM NAME="movie" VALUE="' + google_ad.image_url + '">'
         '<PARAM NAME="quality" VALUE="high">'
         '<PARAM NAME="AllowScriptAccess" VALUE="never">'
         '<EMBED src="' + google_ad.image_url +
         '" WIDTH="' + google_ad.image_width +
         '" HEIGHT="' + google_ad.image_height + 
         '" TYPE="application/x-shockwave-flash"' + 
         ' AllowScriptAccess="never" ' + 
         ' PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>';

  } else if (google_ads[0].type == "image") {

    s += '<a href=\"' + google_info.feedback_url + '\" style="color:000000">Google Anzeigen</a><br>' + 
         '<a href="' + google_ads[0].url +
         '" target="_top" title="gehe zu ' + google_ads[0].visible_url +
         '"><img border="0" src="' + google_ads[0].image_url +
         '"width="' + google_ads[0].image_width +
         '"height="' + google_ads[0].image_height + '"></a>';

  } else {

    s += '<table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" width="100%">';

    if (google_ads.length == 1) {

      s += '<tr><td style="font-size: 10pt; font-family: Arial">';
      s += '<a href=\"' + google_info.feedback_url + '\" style="color:#000000;font-size:10pt;font-family:Arial">Google Anzeigen</a><br><br>' + 
           '<a href="' + google_ads[0].url + '" ' +
           'onmouseout="window.status=\'\'" ' +
           'onmouseover="window.status=\'gehe zu ' +
           google_ads[0].visible_url + '\'" ' +
           'style="text-decoration:underline;font-size:20pt;color:#0000CC;font-family:Arial">' +
           '<strong>' + google_ads[0].line1 + '</strong></a>' + 
           '<span style="color:#000000;font-size:16pt;font-family:Arial"> ' +
           google_ads[0].line2 + '&nbsp;' +
           google_ads[0].line3 + ' </span>' +
           '<a href="' + google_ads[0].url + '" ' +
           'onmouseout="window.status=\'\'" ' +
           'onmouseover="window.status=\'gehe zu ' +
           google_ads[0].visible_url + '\'" ' +
           'style="text-decoration:underline;font-size:14pt;color:#009900;font-family:Arial">' +
           '<strong>' + google_ads[0].visible_url + '</strong></a>';
      s += '</td></tr>';

    } else if (google_ads.length > 1) {

      s += '<tr><td style="font-size: 9pt; font-family: Arial; border-bottom: 1px dotted #DFDFDF; padding-bottom: 10px">'+
           '<a href=\"' + google_info.feedback_url + '\" style="color:#000000;font-size:9pt;font-family:Arial">Google Anzeigen</a></td></tr>';

      for(i = 0; i < google_ads.length; ++i) {

        s += '<tr><td style="font-size: 9pt; font-family: Arial; border-bottom: 1px dotted #DFDFDF; padding-top: 7px; padding-bottom: 7px">';
        s += '<a href="' + google_ads[i].url + '" ' + 
             'onmouseout="window.status=\'\'" ' +
             'onmouseover="window.status=\'gehe zu ' +
             google_ads[i].visible_url + '\'" ' +
             'style="text-decoration:underline;font-size:9pt;color:#0000CC;font-family:Arial">' +
             '<strong>' + google_ads[i].line1 + '</strong></a>' + 
             '<span style="color:#000000;font-size:9pt;font-family:Arial"> ' +
             google_ads[i].line2 + ' ' +
             google_ads[i].line3 + ' </span>' +
             '<a href="' + google_ads[i].url + '" ' + 
             'onmouseout="window.status=\'\'" ' +
             'onmouseover="window.status=\'gehe zu ' +
             google_ads[i].visible_url + '\'" ' +
             'style="text-decoration:none;color:#009900;font-size:9pt;font-family:Arial">' +
             google_ads[i].visible_url + '</a>';
        s += '</td></tr>';
      }
    }

    s += '</table>';

  }

  document.write(s);
  return;
}

google_ad_client = 'pub-0285735733871016';
google_ad_channel = '4381525060';
google_ad_output = 'js';
google_max_num_ads = '3';
google_ad_type = 'text';
google_feedback = 'on';

