function google_ad_request_done(google_ads) {
    // Proceed only if we have ads to display!
    if (google_ads.length < 1 ){return;}
	// Print "Ads By Google" -- include link to Google feedback page if available
	var googleAdsPrefix = "";
	googleAdsPrefix += "<div align='left'>";if (google_info.feedback_url) {googleAdsPrefix += "<small><a href=\"" + google_info.feedback_url + "\" target=\"_blank\" class=\"google\">Google-Anzeigen</a></small>";
	} else {googleAdsPrefix += "<small>Google-Anzeigen</small>";}googleAdsPrefix += "</div>"; 
    // For text ads, display each ad in turn.
    // In this example, each ad goes in a new row in the table.
    if (google_ads[0].type == 'text') {
		var googleAdsOben =  "";
		for(i = 0; i < google_ads.length; ++i) {
			googleAdsOben += "<div class=\"box_hellblau\" onmouseover='this.style.backgroundColor=\"#F0CBA9\";return true;' onmouseout='this.style.backgroundColor=\"\";return true;'><div class=\"ro\"> <div class=\"lo\"><div class=\"ru\"> <div class=\"lu\"><div class=\"inhalt\"><span><a style=\"font-size: 14px;text-decoration: underline;\" href=\"#\" onMouseOver='self.status=\"" 
			+ google_ads[i].visible_url + "\";return true;' onMouseOut='self.status=\"\";return true;' onClick=\"javascript:new_window=window.open('" 
			+ google_ads[i].url + "');new_window.focus();\">" 
			+ google_ads[i].line1 + "</a></span> <br> <span>"
			+ google_ads[i].line2 + "&nbsp;" 
			+ google_ads[i].line3 + "&nbsp; <a href=\"#\" style=\"color:#595959; font-size:11px; font-weight:normal;\" onMouseOver='self.status=\"" 
			+ google_ads[i].visible_url + "\";return true;' onMouseOut='self.status=\"\";return true;' onClick=\"javascript:new_window=window.open('" 
			+ google_ads[i].url + "');new_window.focus();\">" 
			+ google_ads[i].visible_url + "</a></span></div></div></div></div></div></div></div><img src='img/d.gif' width=1 height=5><br />";
		}
		// fill container
		if(document.getElementById("ga_ang_det_top") && googleAdsOben){document.getElementById("ga_ang_det_top").innerHTML = googleAdsPrefix + googleAdsOben;document.getElementById("ga_ang_det_top").style.margin = '10px 0 10px 0';}
	}
}