
function google_ad_wrap_a(google_ad, text, cls)
{
  return '<a class='+cls+' href="' + google_ad.url + '" onmouseover="window.status=\''
         + google_ad.visible_url + '\'; return true;" onmouseout="window.status=\'\'" >' +
         text + '</a>';
}

function google_ad_request_done(google_ads) 
{
  if (google_ads.length < 1 )
    return;

  document.getElementById('a').style.width='';

  if (google_info.feedback_url) 
    document.write('<td class="google_link_cell"><A href="'+
      google_info.feedback_url+
      '">Ads by Google</A></td>');

  document.write('</tr>');
  
  if (google_ads[0].type == 'text') 
  {
    for(i = 0; i < google_ads.length; ++i) 
    {
      document.write('<tr><td class="ad_links"><ul><li>' +
        google_ad_wrap_a(google_ads[i], google_ads[i].line1, 'main_link') + '</li></ul>' +
        google_ad_wrap_a(google_ads[i],
        google_ads[i].line2 + " " +
        google_ads[i].line3, 'description_link') + "</td></tr>");
    }
  }
  
}
