function google_ad_request_done(google_ads) {

    // Proceed only if we have ads to display!
    if (google_ads.length < 1 )
      return;

    // Display ads in a table

 
	// 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') {
		a = 1 + 1*(Math.random());
		a = Math.round(a);
		if(a == 1){
			color = "color:#CE6300;";
		}
		else {
			color = "";
		}
      for(i = 0; i < google_ads.length; ++i) {
        document.write("<div onMouseOver='this.style.backgroundColor=\"#D4E1E4\";return true;' onMouseOut='this.style.backgroundColor=\"\";return true;' style=\"font-family: verdana; font-size:11px; margin-top: 4px; cursor:pointer; display: block;\"><span><a href=\"#\" style=\""+color+"\" class=\"blau\" 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 + "</span> <br> <span><a href=\"#\" style=\"color:#595959; 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>"); 
      }
    }

    // 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=\"" + google_ads[0].url + "\"style=\"text-decoration: none\">" +
        "<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>");
  }


