    function google_ad_request_done(google_ads) 
{
	if (google_ads.length < 1 )
		return;
	var ads = '<table><tr><td>&nbsp;</td>';
	var ads2 = '';
	fb = '';
	ads += '<td colspan="2">';
	if (google_info.feedback_url)
	    fb += '<br><a target="_blank" style="color:#999" href="' + google_info.feedback_url + '">Google-Anzeigen</a>';
	else 
		fb+= 'Google-Anzeigen';	
	ads += fb + '</td><td>&nbsp;</td></tr>';
	
	if (google_ads[0].type == 'text') 
	{
		for(i = 0; i < google_ads.length; ++i) 
		{
		    if(i < 3) {
				ads += '<tr onmouseover="style.backgroundColor=\'#eeff97\'" onmouseout="style.backgroundColor=\'#d0d9ea\'" bgcolor="#d0d9ea"><td style="background:#f7f7f7">&nbsp;</td>' +
					'<td ><b><a target="_blank" style="cursor:pointer;cursor:hand;text-decoration:underline;text-align:left;font-size:16px;margin:0 0 5px 0;" href="' + google_ads[i].url + '" onmouseover="window.status=\'gehe zu ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
					'' + google_ads[i].line1 + '</a>:<b> </td><td >' +
					google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + 
					' <a target="_blank" style="cursor:pointer;cursor:hand;text-decoration: underline;" href="' + google_ads[i].url + '" onmouseover="window.status=\'http:\/\/' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' + google_ads[i].visible_url +
					'</a></td><td bgcolor="#f7f7f7">&nbsp;</td></tr>';
			} else {
				ads2 += '<tr onmouseover="style.backgroundColor=\'#eeff97\'" onmouseout="style.backgroundColor=\'#d0d9ea\'" bgcolor="#d0d9ea">' +
					'<td ><b><a target="_blank" style="cursor:pointer;cursor:hand;text-decoration:underline;text-align:left;font-size:16px;margin:0 0 5px 0;" href="' + google_ads[i].url + '" onmouseover="window.status=\'gehe zu ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
					'' + google_ads[i].line1 + '</a>:<b> </td><td >' +
					google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + 
					' <a target="_blank" style="cursor:pointer;cursor:hand;text-decoration: underline;" href="' + google_ads[i].url + '" onmouseover="window.status=\'http:\/\/' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' + google_ads[i].visible_url +
					'</a></td></tr>';
			}
		}
	}
	
	
    document.getElementById("g-mitte").innerHTML = ads + '</tr></table>';
	document.getElementById("g-unten").innerHTML = '<table style="width:428px;margin: auto;text-align: left"><tr><td colspan="2">' + fb + '</td></tr>' + ads2 + '</table>';
	
   return;
 }