function google_ad_request_done(google_ads)
 {
   var s = '';
   var i;

   if( google_ads.length == 0 )
   {
    return;
   }

   if( google_ads[0].type == "flash" )
    {
      s += '<div class="google_ca-news_container" align="center" style="border-style: none;">'+
             '<table align="center" border="0" cellspacing="0" cellpadding="0"><tr><td align="left"><a target="_blank" href=\"' + google_info.feedback_url + '\" class="google_ca-news-GA_image" style="text-align: left;">Google-Anzeige</a></td></tr>'+
             '<tr><td><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></td></tr></table>'+
           '</div>';

    }

     else if( google_ads[0].type == "image" )
     {
       s += '<div class="google_ca-news_container" align="center" style="border-style: none;">'+
             '<table align="center" border="0" cellspacing="0" cellpadding="0"><tr><td align="left"><a target="_blank" href=\"' + google_info.feedback_url + '\" class="google_ca-news-GA_image" style="text-align: left;">Google-Anzeige</a></td></tr>'+
             '<tr><td><a target="_blank" href="' + google_ads[0].url + '" target="_blank" title="go to ' + 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></td></tr></table>'+
            '</div>';
     }

      else
      {
       if( google_ads.length == 1 ) // Eine Anzeige
        {
           s += '<div class="google_ca-news_container" id="nointelliTXT">'+
                 '<div class="google_ca-news_adcontainer" style="text-align:center">'+
                 '<a target="_blank" href=\"' + google_info.feedback_url + '\" style="position: relative; left: -169px;" class="google_ca-news-GA-EA">Google-Anzeige</a><br/>'+
                 '<a target="_blank" class="google_ca-news" href="' + google_ads[0].url + '"><span style="color:#00438E;" class="google_ca-news_1-EA">' + google_ads[0].line1 + '</span></a><br/>' +
                 '<span style="color:#00438E;" class="google_ca-news_2-EA">' + google_ads[0].line2 + '<br/>' + google_ads[0].line3 + '</span><br/>' +
                 '<a target="_blank" class="google_ca-news" href="' + google_ads[0].url + '"><span class="google_ca-news_url-EA">' + google_ads[0].visible_url + '</span></a>'+
                 '<div style="padding: 8px 0 0 0;"></div>'+
                '</div>'+
               '</div>';

        }

       else if( google_ads.length > 1 ) // Mehrere Anzeigen
        {
          s += '<div class="google_ca-news_container">';

          if( typeof onmouseover != "undefined" && onmouseover == 1 )
           {
            onmouseovertag = 'onmouseover="this.style.background=\'#e2efff\';" onmouseout="this.style.background=\'#ffffff\';"';
           }
          else
           {
            onmouseovertag = '';
           }

          for(i = 0; i < google_ads.length; ++i)
           {
             s += '<div class="google_ca-news_adcontainer" '+ onmouseovertag + ' id="nointelliTXT">';

             if( i == 0 ){ s += '<a target="_blank" href=\"' + google_info.feedback_url + '\" class="google_ca-news-GA">Google-Anzeige</a><div style="padding: 2px 0 0 0;"></div>'; }
             if( i  > 0 ){ s += '<div style="padding: 8px 0 0 0;"></div>'; }

             s +=  '<a target="_blank" class="google_ca-news" href="' + google_ads[i].url + '"><span class="google_ca-news_1">' + google_ads[i].line1 + '</span></a><br/>' +
                   '<span class="google_ca-news_2" style="color:#00438E;">' + google_ads[i].line2 + ' ' + google_ads[i].line3 + '</span><br/>' +
                   '<a target="_blank" class="google_ca-news" href="' + google_ads[i].url + '"><span class="google_ca-news_url">' + google_ads[i].visible_url + '</span></a>' +
                   '<div style="padding: 8px 0 0 0;"></div>'+
                  '</div>';
           }

          s += '</div>';
        }

      }

    document.write(s);
    return;
 }
