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

if (google_ads.length > 0) {

miniaturaMargin = (10 * google_ads.length)+20;
totalWidth = google_ad_width - miniaturaMargin;
miniaturaWidth = Math.round(totalWidth / google_ads.length);
s = '<div style="float:left;margin-left:10px;margin: 2px 2px 5px 10px;width:100%;">Anuncios Google</div>'
for(i = 0; i < google_ads.length; ++i) {
	s += '<div style="float:left;margin-left:10px;width:'+miniaturaWidth+'px;"><a target="_blank" style="text-decoration:none"px href="' +
	google_ads[i].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'vaya a ' +
	google_ads[i].visible_url + '\';return true"> <span style="text-decoration:none"> <b style="color:'+google_ad_titlecolor+';">' +
	google_ads[i].line1 + '</b><br></span></a> <span style="color:'+google_ad_textcolor+'">' +
	google_ads[i].line2 + '<br>' +
	google_ads[i].line3 + '<br></span> <span><a  target="_blank" style="color:'+google_ad_urlcolor+';text-decoration:none" href="' +
	google_ads[i].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'vaya a ' +
	google_ads[i].visible_url + '\';return true">' +
	google_ads[i].visible_url + '</span></a></div>';

}
   s = '<div style="padding-left:'+google_ad_paddingleft+';background:'+google_ad_bgcolor+';margin-bottom:10px;float:left;width:'+google_ad_width+'px;border:1px solid '+google_ad_bordercolor+';">'+s+'</div>';
    document.write(s);
    return;
}
}