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

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

	s += '<div class="sponsored_links"><h4>Sponsored Links</h4>';
	if (google_ads.length == 1) {
		s += '<a href="' + google_ads[0].url + '" ' +
			'onmouseout="window.status=\'\'" ' +
			'onmouseover="window.status=\'go to ' +
			google_ads[0].visible_url + '\'" ' +
			'style="text-decoration:none">' +
			'<h5>' + google_ads[0].line1 + '</h5>' +
			google_ads[0].line2 + '&nbsp;' +
			google_ads[0].line3 + '<br>' +
			google_ads[0].visible_url + '</a>';
	} 
	else if (google_ads.length > 1) {
		for(i=0; i < google_ads.length; ++i) {
			s += '<a href="' + google_ads[i].url + '" ' +
				'onmouseout="window.status=\'\'" ' +
				'onmouseover="window.status=\'go to ' +
				google_ads[i].visible_url + '\'" ' +
				'style="text-decoration:none">' +
				'<h5>' + google_ads[i].line1 + '</h5>' +
				google_ads[i].line2 + '&nbsp;' +
				google_ads[i].line3 + '<br>' +
				google_ads[i].visible_url + '</a>';
		}
	}
	s += '<h6><a href="/aboutpbs/aboutpbs_whatisthis.html">What\'s This?</a></h6>';
	s += '</div>';
	
	document.write(s);
	return;
}

