function winstat(w) {window.status = w; return true;}
function clearstat(){window.status='';}
	  
function google_ad_request_done(google_ads) {  
		var first_ad_unit = '';
		if (google_ads.length > 0) {
			
			first_ad_unit +='<p class="googleads">';
	
			 if (google_info.feedback_url) {
					  first_ad_unit +='<font color=\"#000099\"><b>' + 
						  '<a  href=\"' + google_info.feedback_url + 
						  '\">Ads by Google</a></b></font>';
			} else {
						 first_ad_unit +='<font color=\"#000099\"><b>Ads By Google</b></font>';
			}
			first_ad_unit += '</p>';

			first_ad_unit +='<div class="adsense">';
				for(var i = 0; i < google_ads.length; ++i) {
					if (google_ads[i].type == 'text') {
					 first_ad_unit +='<p class="adsense">' +
					 '<a class="adsense_url" onMouseOver=\"return winstat(\'go to ' + google_ads[i].visible_url +' \')\" onMouseOut=\"clearstat()\" href=\"' +  google_ads[i].url + '\">' +
					  google_ads[i].line1 + "</a> - " +
					  '<font color=\"#000000\">' +
					  google_ads[i].line2 + ' ' + google_ads[i].line3 + 
					  '</font>' +
	  				  '</p>';
					}
					
				}
	
			first_ad_unit +='</div>';
			first_ad_unit +='<hr>';
		}//end if
	
		document.getElementById("first_ad_unit").innerHTML += first_ad_unit;
}
