 <!--

  function google_ad_request_done(google_ads) {

    // Proceed only if we have ads to display!
    if (google_ads.length < 1 )
      return;

    // Display ads in a table
    document.write("<table class=\"adsense\"  border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr valign=top>");
 
    // Print "Ads By Google" -- include link to Google feedback page if available
    document.write("<td  class=\"adgoog\"  align=\"center\">");
    if (google_info.feedback_url) {
      document.write("<a href=\"" + google_info.feedback_url + 
        "\">Ads by Google</a>");
    } else {
      document.write("Ads by Google");
    }
    document.write("</td></tr>");  
  
    // For text ads, display each ad in turn.
    // In this example, each ad goes in a new row in the table.
    if (google_ads[0].type == 'text') {
      for(i = 0; i < google_ads.length; ++i) {
        document.write("<tr><td class=\"adsense_text\"><div style=\"width: 108px; overflow: hidden;\">" +
          "<a class=\"adsense\" onmouseover=\"window.status='" +  google_ads[i].visible_url + "'; return true\" onmouseout=\"window.status=''; return true\" href=\"" +  google_ads[i].url + "\">" +
          google_ads[i].line1 + "</a><br><a class=\"adtext\" onmouseover=\"window.status='" +  google_ads[i].visible_url + "'; return true\" onmouseout=\"window.status=''; return true\" href=\"" +  google_ads[i].url + "\">" +
          google_ads[i].line2 + " " +
          google_ads[i].line3 + "</a><br>" + 
          "<a class=\"adurl\" onmouseover=\"window.status='" +  google_ads[i].visible_url + "'; return true\" onmouseout=\"window.status=''; return true\" href=\"" + google_ads[i].url + "\">" + 
          "" +
          google_ads[i].visible_url +
          "</a></div></td></tr>"); 
      }
    }


    // Finish up anything that needs finishing up
    document.write ("</table>");
  }
 // -->
