function google_ad_request_done(google_ads) {

    // Proceed only if we have ads to display!
    if (google_ads.length < 1 )
      return;
    document.write("<div class=\"noprint\"><br></div>");

	// Print "Ads By Google" -- include link to Google feedback page if available
	document.write("<div align='left'>");
	if (google_info.feedback_url) {
		document.write("<small><a href=\"" + google_info.feedback_url + "\" target=\"_blank\" class=\"google\">Google-Anzeigen</a></small>");
	} else {
		document.write("<small>Google-Anzeigen</small>");
	}
		document.write("</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') {
      for(i = 0; i < google_ads.length; ++i) {
        document.write("<div class=\"box_hellorange\" 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 />"); 
      }
    }

    // For an image ad, display the image; there will be only one .
    if (google_ads[0].type == 'image') {
      document.write("<div align=\"center\">" +
        "<a href=\"#\" onMouseOver='self.status=\"" + google_ads[0].visible_url + "\";return true;' onMouseOut='self.status=\"\";return true;' onClick=\"javascript:new_window=window.open('" + google_ads[0].url + "');new_window.focus();\">" +
        "<img src=\"" + google_ads[0].image_url + 
        "\" height=\"" + google_ads[0].height + 
        "\" width=\"" + google_ads[0].width +
        "\" border=\"0\"></a></div>");
    }

    // Finish up anything that needs finishing up
    document.write ("</div>");
  }