function google_ad_request_done(google_ads) 
{
	var innerHTML = '';
	
	var colors = new Array();
	colors[0] = ['#F4FAFF'];
	colors[1] = ['#FFFFD7'];
	colors[2] = ['#F7F1FF'];
	
	if (google_ads.length == 0){ return;}
		
	innerHTML += '<table cellpadding="2" cellspacing="0" style="width:100%;" width="100%">';
	if (google_ads.length > 0) 
	{
		for(i=0; i < google_ads.length; ++i) 
		{
			innerHTML += '<tr><td style="height:3px;"><img width=1 height=1/></td></tr>';
			innerHTML += '<tr>';
			innerHTML += '<td style="padding-left:10px;"><a href="' + google_ads[i].url + '" target="_self" style="font-size:15px; font-weight: bold; ">';
			innerHTML += google_ads[i].line1+"</a> - ";
//			innerHTML += '<a href="' + google_ads[i].url + '" target="_self" style="color: black; text-decoration: none;">' +google_ads[i].line2 + "</a>";
			innerHTML += '<span style="color: black; font-size:12px;">' +google_ads[i].line2 + " " +google_ads[i].line3 + "</span>";
			innerHTML += '</td>';
			innerHTML += '<tr>';
			innerHTML += '</tr>';
			innerHTML += '<td style="padding-left:10px;padding-left:30px; "><a style="" href="' + google_ads[i].url + '" target="_self">';
						innerHTML += google_ads[i].visible_url;
			innerHTML += '</a></td>';
			innerHTML += '</tr>';
		}
	}
	
	innerHTML += '</table>';
	
	
	document.write(innerHTML);
	return;
}