function google_ad_request_done(google_ads) 
{
    var s = '';
    var i;

    lang_ver = new Array();
    
    lang_ver['en'] = "Ads by Google";
    lang_ver['de'] = "Google - Anzeigen";
    lang_ver['fr'] = "Annonces Google";
    
	lang = 'en';

    if (google_ads.length == 0) 
    {
	return;
    }
    s += '<table width="100%" style="padding-top: 3px;">'+
	 '<tr><td width="100%" align="left"><a href="' + google_info.feedback_url + '" style="color: #000000; font-size: 11px; font-weight: bold;">'+lang_ver[lang]+'</a>'+
	 '</td></tr></table>';

    if (google_ads[0].type == "image") 
    {
	s += '<a href="' + google_ads[0].url +
	     '" target="_top" title="go to ' + google_ads[0].visible_url +
	     '"><img style="border:none;" src="' + google_ads[0].image_url +
	     '"width="' + google_ads[0].image_width +
	     '"height="' + google_ads[0].image_height + '"/></a>';
    } 
    else 
    {
    if (google_ads.length == 1) 
    {
	s += '<table width="100%" style="border-bottom: 1px solid #22696A; padding-top: 5px; padding-bottom: 5px;">' +
	     '<tr>' +
	     '<td align="left" valign="top">'+
	     ''+
	     '<a style="cursor:pointer;cursor:hand;text-decoration:none;" onclick="javascript:top.location.href=\'' + google_ads[i].url  +
	     '\'" onmouseover="window.status=\'gehe zu ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
	     '<span style="font-family:tahoma, verdana, arial, helvetica, sans-serif; font-size:11px; color:#000000; font-weight: bold; text-decoration:none;">' + google_ads[i].line1 + '</span><br />' +
	     '<span style="font-size: 12px; font-style: italic;">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '</span><br />' +
	     '<span style="color:#22596A;font-family: arial;font-size: 11px;text-decoration:underline;">' + google_ads[i].visible_url +
	     '</span></a></td>'+
	     '</tr>'+
	     '</table>';
    } 
    else if (google_ads.length > 1) 
    {
	s += '<table width="100%" style="border-bottom: 1px solid #22696A; padding-bottom: 5px;">';

	for(i=0; i < google_ads.length; ++i) 
	{
	    s += '<tr>' +
		 '<td align="left" valign="top">'+
		 ''+
		 '<a style="cursor:pointer;cursor:hand;text-decoration:none;" onclick="javascript:top.location.href=\'' + google_ads[i].url  +
		 '\'" onmouseover="window.status=\'gehe zu ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
		 '<span style="font-family:tahoma, verdana, arial, helvetica, sans-serif; font-size:11px; color:#000000; font-weight: bold; text-decoration:none;">' + google_ads[i].line1 + '</span><br />' +
		 '<span style="font-size: 12px; font-style: italic;">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '</span><br />' +
		 '<span style="color:#22596A;font-family: arial;font-size: 11px;text-decoration:underline;">' + google_ads[i].visible_url +
		 '</span></a></td>'+
		 '</tr>';
	}

	s += '</table>';
    }																																																																										  }

    document.write(s);
    return;

}