function google_ad_request_done(google_ads) 
{
    var s = '';
    var i;
    
    lang_ver = new Array();
    
    lang_ver['fr'] = "Annonces Google";
    lang_ver['de'] = "Google-Anzeigen";
    lang_ver['en'] = "Ads by Google";

	lang = 'en';    
    		    
    if (google_ads.length == 0) 
    {
	return;
    }

    s += '<table width="100%">'+
	 '<tr><td width="100%" align="left"><a href="' + google_info.feedback_url + '" style="color: #4D7B89; font-family: arial;font-weight: bold; font-size: 13px;">'+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: 1px solid #22596A;"><tr>'+
	       '<td align="left" valign="top" width="50%">'+
	 ''+
	 '<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:13px; color:#22596A; font-weight: bold; text-decoration:underline;">' + google_ads[i].line1 + '</span><br />' +		       '<span style="font-size: 13px;">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '</span><br />' +
         '<span style="color:#92ACAF;font-family: arial;font-size: 12px;">' + google_ads[i].visible_url +
         '</span></a></td>'+
         '</tr></table>';
    } 
    else if (google_ads.length > 1) 
    {
	for(i=0; i < google_ads.length; ++i) 
	{
	     s += '<table width="100%"><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:13px; color:#22596A; font-weight: bold; text-decoration:underline; font-size: 14px;">' + google_ads[i].line1 + '</span> - ' +
    		  '<span style="font-size: 15px;">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '</span><br />' +
    		  '<span style="color:#22595A;font-family: arial;font-size: 12px;">' + google_ads[i].visible_url +
    		  '</span></a></td>'+
		  '</tr></table>';
	}
    }
}
    document.write(s);
    return;
}
