<!--
function google_ad_request_done(google_ads) {
    /*
    * This function is required and is used to display
    * the ads that are returned from the JavaScript
    * request. You should modify the document.write
    * commands so that the HTML they write out fits
    * with your desired ad layout.
    */
    var s = '';
    var i;

    /*
    * Verify that there are actually ads to display.
    */
    if (google_ads.length == 0) {
        return;
    }

    s += '<div class="adsbygoogle"><a href="' + google_info.feedback_url + '" onclick="viewImageStat(\''+google_info.feedback_url+'\',0)">Ads by Google</a></div>';
    for(i = 0; i < google_ads.length; ++i)
    {
        s += '<br/><a href="' + google_ads[i].url+ '" class="top" onclick="viewImageStat(\''+google_ads[i].url+'\','+i+')">' +google_ads[i].line1 + '</a><br/>' +
            '<span class="abstract">' + google_ads[i].line2 + ' ' + google_ads[i].line3 + '</span><br/>' +
            '<a href="' + google_ads[i].url + '" class="link" onclick="viewImageStat(\''+google_ads[i].url+'\','+i+')">' + google_ads[i].visible_url + '</a><br/>';
    }

    document.write(s);
    return;
}
// -->
