function google_ad_request_done(google_ads) {
  var acceptable = 0;
  var s='';
  for(i = 0; i < google_ads.length; ++i) {
    if (!is_competing(google_ads[i])) acceptable++;
  }
  if (acceptable < 1 ) return;
  
  s+="        <div class=\"label\">Ads by Google</div>\n";
  s+="        <div class=\"info\">";
  if (google_ads[0].type == 'text') {
    for(i = 0; i < google_ads.length; ++i) {
      if (!is_competing(google_ads[i])) {
        s+="<div style=\"margin-top:.5em\"><a style=\"letter-spacing:0; font-weight:bold !important\" " +
          "href=\"" +  google_ads[i].url + "\">" +
          google_ads[i].line1 + "</a><br> " +
          "<div style=\"cursor:pointer; letter-spacing:0; font-weight:normal !important; text-decoration:none !important\" onclick=\"document.location.href='" +  google_ads[i].url + "'\";>" +
          google_ads[i].line2 + " " +
          google_ads[i].line3 + "</div> " +
          "<div style=\"cursor:pointer; letter-spacing:0; font-weight:normal !important; text-decoration:none !important\" onclick=\"document.location.href='" +  google_ads[i].url + "'\";>" +
          "</div></div>";
        //if (i < google_ads.length-1)
          //s+="<hr size=1 width=90%>";
      }
    }
  }
  s+="\n      </div>\n";
  var blogads = document.getElementById('blogads');
  blogads.innerHTML=s;
  blogads.style.display='block';
  var ffx = document.getElementById('ffx');
  if (ffx) ffx.style.display='block';

}

function is_competing (ad) {
  return false;
  //var txt = ad.line1+ad.line2+ad.line3+ad.url;
  //return txt.match(/blog|hosting/i);
}

google_ad_client = 'pub-6477563040863705';
google_ad_output = 'js';
google_max_num_ads = '3';
google_feedback = "off";
google_adtest = "off";
google_ad_format = "160x90_0ads_al";
google_ad_channel ="9853609160";