  function google_ad_request_done(google_ads) {

    // Proceed only if we have ads to display!
    if (google_ads.length < 1 )
      return;

	var ad_unit = ''
	
    // Display ads in a table
    ad_unit += '<div class="dblock">';
 
    // Print "Ads By Google" -- include link to Google feedback page if available
    ad_unit += '<div><b>';
    ad_unit += '<a class="linkn" href="' + google_info.feedback_url + 
        '"><b style="color: #bbbbbb">GOOGLE-ANZEIGEN</b></a>';
    ad_unit += '</b><br><br></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 == "flash") {

	    ad_unit += '<a href=\"' +
		google_info.feedback_url + '\" style="color:000000">Ads by Google</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") {
	
	    ad_unit += '<a href=\"' +
		google_info.feedback_url + '\" style="color:000000">Ads by Google</a><br> <a href="' + 
		google_ads[0].url + '" target="_top" title="go to ' + 
		google_ads[0].visible_url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
		google_ads[0].visible_url + '\';return true"><img border="0" src="' + 
		google_ads[0].image_url + '"width="' + 
		google_ads[0].image_width + '"height="' + 
		google_ads[0].image_height + '"></a>';
	
	} else if (google_ads[0].type == "html") {
	
		ad_unit += google_ads[0].snippet;
	
	} else {
      for(i = 0; i < google_ads.length; ++i) {
        ad_unit += '<div id="mousegoogle">' +
          '<a href="' +  google_ads[i].url + 
          '" onMouseOver="window.status = \'gehe zu '+ 
          google_ads[i].visible_url + '\'; return true;" ' +
          'onFocus="window.status = \'gehe zu '+ 
          google_ads[i].visible_url + '\'; return true;" ' +
          'onMouseOut="window.status = \'\'' +
          '; return true;" class="linkn"><b>' +
          google_ads[i].line1 + '</b></a><br>' +
		  google_ads[i].line2 + ' ' +
          google_ads[i].line3 + '<br><a href="' +  google_ads[i].url + 
          '" onMouseOver="window.status = \'gehe zu '+ 
          google_ads[i].visible_url + '\'; return true;" ' +
          'onFocus="window.status = \'gehe zu '+ 
          google_ads[i].visible_url + '\'; return true;" ' +
          'onMouseOut="window.status = \'\'' +
          '; return true;" class="linkn">' +
          '<b>&#187;</b> ' + 
          google_ads[i].visible_url +
          '</a><br><br></div>'; 
      }
    }

    // Finish up anything that needs finishing up
    ad_unit += '</div>';
    
   	document.getElementById("ad_unit").innerHTML += ad_unit;

    
  }

    // This script sets the attributes for requesting ads.
    google_ad_client = "pub-3065772146269832";         
    google_ad_output = "js";         
    google_max_num_ads = 4;         
    google_ad_type  = "text"; // text,image,flash,html
    google_color_line = "ff0000";     
	google_feedback = "on";
	google_encoding = "ISO-8859-1";
	google_image_size = "300x250";
	google_skip = 2;