//******************************************************
//   3 ANNUNCI IN RIGA CON BORDO
//******************************************************
function google_ad_request_done(google_ads) {
	if (google_ads.length < 1 )
  		return;

    var firstAdUnit = '';
	var s = '<table width="100%" height="70">';
    firstAdUnit = s;
	
	if (google_ads[0].type == 'text') { 
		firstAdUnit += '<tr>';
		for(i = 0; i < google_ads.length; ++i) {
			s = '<td valign="top" style="border:1px solid #c0c0c0; padding:10px;" width="33%"><a style="cursor:pointer;cursor:hand;text-decoration:none;color:#990000;font-size=15px" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'vai a ' + google_ads[i].visible_url + '\'; this.style.textDecoration=\'underline\';" onmouseout="window.status=\'\'; this.style.textDecoration=\'none\';"><b>' + google_ads[i].line1 + ' »</b></a><br>';
			s += '<a style="cursor:pointer;cursor:hand;text-decoration:none" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'vai a ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'" class=gray>' + google_ads[i].line2 + ' ' + google_ads[i].line3 + '</a></td>';
			if (i < (google_ads.length-1)) {
				s += '<br>';
			}
       		if(i < 3) {
         		firstAdUnit += s;
       		}
		}
		firstAdUnit += '</tr>';
	}

	firstAdUnit += '<tr><td colspan="3" align="right">';
	if (google_info.feedback_url) {
		s = '<a href="' + google_info.feedback_url + '" onmouseover="window.status=\'Google Feedback\'" onmouseout="window.status=\'\'" class="home">Annunci Google</a>';
	} else {
		s = 'Annunci Google';
	}
	s += '</td></tr></table>';

    firstAdUnit += s;

    document.getElementById("firstAdUnit").innerHTML += firstAdUnit;
	  
//	document.write(s);
	return;
}

