
  <!--

  // This function displays the ad results.
  // It must be defined above the script that calls show_ads.js
  // to guarantee that it is defined when show_ads.js makes the call-back.

  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 border=0 cellpadding=0 width=100% align=right bgcolor=#ffffff>");
 
    // Print "Ads By Google" -- include link to Google feedback page if available
    
  
    // 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 valign=top><td align=left>" +
          "<b>»&nbsp;<a target=_blank href=\"" +  google_ads[i].url + "\">" +
	  "<font size=2>" +	
          google_ads[i].line1 + "</a></b><br>&nbsp;&nbsp;&nbsp;" +
          google_ads[i].line2 + "&nbsp;" +
          google_ads[i].line3 + "<br>&nbsp;&nbsp;&nbsp;" + 
          "<a target=_blank href=\"" + google_ads[i].url + "\">" + 
          "<font color=#000000 size=1>" +
          google_ads[i].visible_url +
          "</a></font></font><br><br></td></tr>"); 
      }
    }

    // Finish up anything that needs finishing up
    document.write ("<tr><td align=left>&nbsp;&nbsp;&nbsp;<font color=lightgrey size=1>Ads by Google</font></td></tr></table><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>");
  }

  -->
  